diff --git a/azure-cli.pyproj b/azure-cli.pyproj
index 56b8b69a8ca..90f30f495f6 100644
--- a/azure-cli.pyproj
+++ b/azure-cli.pyproj
@@ -28,7 +28,6 @@
-
@@ -37,20 +36,18 @@
-
+
-
-
+
-
@@ -64,12 +61,10 @@
-
-
+
-
@@ -78,7 +73,6 @@
-
@@ -104,8 +98,6 @@
-
-
@@ -139,6 +131,7 @@
+
@@ -171,6 +164,16 @@
+
+
+
+
+
+
+
+
+
+
@@ -205,10 +208,8 @@
-
-
@@ -234,11 +235,9 @@
Code
-
-
@@ -247,6 +246,7 @@
+
@@ -313,7 +313,12 @@
-
+
+
+
+
+
+
Code
@@ -343,12 +348,10 @@
+
-
-
-
@@ -357,8 +360,7 @@
-
-
+
@@ -410,12 +412,12 @@
-
+
@@ -424,7 +426,6 @@
-
@@ -433,6 +434,7 @@
+
@@ -455,21 +457,23 @@
+
Code
+
-
-
+
Code
+
@@ -477,6 +481,7 @@
+
@@ -495,18 +500,26 @@
+
+
+
+
+
+
+
+
+
-
+
-
@@ -514,6 +527,7 @@
+
@@ -527,6 +541,7 @@
+
@@ -539,9 +554,6 @@
-
- Code
-
@@ -553,9 +565,6 @@
Code
-
- Code
-
Code
@@ -577,12 +586,6 @@
-
- Code
-
-
- Code
-
@@ -593,9 +596,6 @@
-
-
-
@@ -609,6 +609,8 @@
Code
+
+
@@ -650,7 +652,6 @@
-
@@ -677,6 +678,13 @@
+
+
+
+
+
+
+
@@ -718,6 +726,7 @@
+
@@ -754,6 +763,12 @@
+
+
+
+
+
+
@@ -819,7 +834,15 @@
-
+
+
+
+
+
+
+
+
+
@@ -858,11 +881,6 @@
-
-
-
-
-
@@ -899,6 +917,14 @@
+
+
+
+
+
+
+
+
@@ -953,6 +979,8 @@
+
+
@@ -999,13 +1027,19 @@
+
+
+
+
+
+
+
-
diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj
index f18f8bf1c0a..545a280c112 100644
--- a/azure-cli2017.pyproj
+++ b/azure-cli2017.pyproj
@@ -26,7 +26,6 @@
-
@@ -35,20 +34,16 @@
-
-
-
-
@@ -59,24 +54,18 @@
-
-
-
-
-
-
@@ -100,13 +89,13 @@
-
+
@@ -146,9 +135,6 @@
-
-
-
@@ -161,6 +147,16 @@
+
+
+
+
+
+
+
+
+
+
@@ -195,10 +191,8 @@
-
-
@@ -213,11 +207,9 @@
Code
-
-
@@ -281,16 +273,15 @@
-
-
+
+
-
Code
@@ -323,9 +314,6 @@
-
-
-
@@ -334,8 +322,6 @@
-
-
@@ -389,25 +375,25 @@
-
+
-
+
@@ -429,39 +415,42 @@
+
Code
-
+
-
Code
+
+
Code
+
@@ -481,20 +470,18 @@
-
-
-
-
+
+
@@ -520,9 +507,6 @@
Code
-
- Code
-
@@ -534,15 +518,11 @@
Code
-
- Code
-
Code
-
Code
@@ -558,12 +538,6 @@
-
- Code
-
-
- Code
-
@@ -574,8 +548,6 @@
-
-
@@ -589,6 +561,12 @@
Code
+
+ Code
+
+
+ Code
+
@@ -655,6 +633,13 @@
+
+
+
+
+
+
+
@@ -845,11 +830,6 @@
-
-
-
-
-
@@ -887,6 +867,15 @@
+
+
+
+
+
+
+
+
+
@@ -998,6 +987,7 @@
+
@@ -1014,7 +1004,6 @@
-
diff --git a/doc/authoring_command_modules/authoring_commands.md b/doc/authoring_command_modules/authoring_commands.md
index 146fe15f39e..55d88400713 100644
--- a/doc/authoring_command_modules/authoring_commands.md
+++ b/doc/authoring_command_modules/authoring_commands.md
@@ -7,32 +7,98 @@ The document provides instructions and guidelines on how to author individual co
The basic process of adding commands is presented below, and elaborated upon later in this document.
-1. Create an \_\_init__.py file for your command module.
+1. Create an \_\_init__.py file for your command module and create your CommandLoader class.
2. Write your command as a standard Python function.
-3. Register your command using the `cli_command` (or similar) function.
+3. Register your command.
4. Write up your command's help entry.
-5. Use the `register_cli_argument` function to add the following enhancements to your arguments, as needed:
- - option names, including short names
+5. Register argument metadata to add enhancements to your arguments, as needed:
+ - option names, aliases, or short names
- validators, actions or types
- choice lists
- completers
+**Writing the Command Loader**
+
+Azure CLI 2.0 is based on the Knack framework (https://github.com/Microsoft/knack), which uses the `CLICommandsLoader` class as the mechanism for loading a module. In Azure CLI 2.0, you will create your own loader which will inherit from the `AzCommandsLoader` class. The basic structure is:
+
+```Python
+class MyCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ from azure.cli.core.sdk.util import CliCommandType
+ mymod_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.mymod.custom#{}')
+ super(MyCommandsLoader, self).__init__(cli_ctx=cli_ctx,
+ min_profile='2017-03-10-profile',
+ custom_command_type=mymod_custom)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(MyCommandsLoader, self).load_command_table(args)
+ # TODO: Register command groups and commands here
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(MyCommandsLoader, self).load_arguments(command)
+ # TODO: Register argument contexts and arguments here
+```
+
**Writing a Command**
Write your command as a simple function, specifying your arguments as the parameter names.
When choosing names, it is recommended that you look at similiar commands and follow those naming conventions to take advantage of any aliasing that may already be in place. For example, you should choose `resource_group_name` over `rg`, `resource_group` or some other shorthand, because this parameter is globally aliased and you will inherit the `-g` short option and the completer.
-If you specify a default value in your function signature, this will flag the argument as optional and will automatically display the default value in the help text for the command. Any parameters that do not have a default value are required and will automatically appear in help with the [Required] label. The required and default behaviors for arguments can be overridden if needed with the `register_cli_argument` function (see Argument Customization below) but this is not generally needed.
+If you specify a default value in your function signature, this will flag the argument as optional and will automatically display the default value in the help text for the command. Any parameters that do not have a default value are required and will automatically appear in help with the [Required] label. The required and default behaviors for arguments can be overridden (see Argument Customization below) but this is not generally needed.
+
+***Special Arguments***
+
+There are two arguments you may include in your custom command that are reserved by the infrastructure and have special meaning.
+
+`cmd`: If used, this should be the first argument in your custom command, and allows you to access the command instance within your custom command. This will allow you to access the CLI context and numerous helper methods to make writing your command simpler, particularly when working with a multi-API style module.
+
+`client`: If your command has registered the `client_factory` keyword argument, that factory will be passed into this variable. It can appear anywhere in your command signature.
**Registering Commands**
-Before your command can be used in the CLI, it must be registered. Insert the following statement in your file:
+Before your command can be used in the CLI, it must be registered. Within the `load_command_table` method of your command loader, you will have something like:
+
+```Python
+# (1) Registering a command type for reuse among groups
+mymod_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.mymod.operations.myoperations#MyOperations.{}',
+ client_factory=cf_mymod
+)
+
+# (2) Registering a command group
+with self.command_group('mymod', mymod_sdk) as g:
+ # (3) Registering different types of commands
+ g.command('command1', 'do_something_1')
+ g.custom_command('command2', 'do_something_2')
+ g.generic_update('update', custom_function_name='my_custom_update')
+ g.generic_wait('wait')
+```
+
+***(1) CliCommandType***
+
+CliCommandType is a way to group and reuse and keyword arguments supported by commands. Earlier, in the `__init__` method of the `MyCommandsLoader` class, we created a `mymod_custom` variable and assigned it to the `custom_command_type` keyword argument. This will be used any time you use the `custom_command` method within a command group. It is registered with the loader since most modules typically put all of their custom methods in a single file.
+
+***(2) Command Group Helper***
+
+
+***(3) Command Registration Helpers***
+
+****command****
```Python
-from azure.cli.core.commands import cli_command
+def command(self, name, method_name=None, command_type=None, **kwargs):
```
+- `name`: The name of the command within the command group
+- `method_name`: The name of the SDK or custom method, relative to the path specified in `operations_tmpl`.
+- `command_type`: An `AzCommandType` object to apply to this command. If not specified, then the group command type is
+
+==================================
+
The signature of this method is
```Python
def cli_command(module_name, name, operation, client_factory=None, transform=None, table_transformer=None, confirmation=None):
diff --git a/doc/authoring_command_modules/example_module_template/azure/cli/command_modules/example/_help.py b/doc/authoring_command_modules/example_module_template/azure/cli/command_modules/example/_help.py
index 3fc088c69fa..79aea2be0ff 100644
--- a/doc/authoring_command_modules/example_module_template/azure/cli/command_modules/example/_help.py
+++ b/doc/authoring_command_modules/example_module_template/azure/cli/command_modules/example/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
# pylint: disable=line-too-long
diff --git a/src/azure-cli-core/azure/cli/core/__init__.py b/src/azure-cli-core/azure/cli/core/__init__.py
index 984aff93580..dc2b8ac4545 100644
--- a/src/azure-cli-core/azure/cli/core/__init__.py
+++ b/src/azure-cli-core/azure/cli/core/__init__.py
@@ -2,10 +2,349 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from __future__ import print_function
__version__ = "2.0.21"
-# pylint: disable=unused-import
-# The names are imported here to shorten the name references to core utilities in azure.cli.core package.
+import os
+import sys
+import timeit
-from .azlogging import get_az_logger, configure_logging
+from knack.arguments import ArgumentsContext
+from knack.cli import CLI
+from knack.commands import CLICommandsLoader
+from knack.completion import ARGCOMPLETE_ENV_NAME
+from knack.introspection import extract_args_from_signature, extract_full_summary_from_signature
+from knack.log import get_logger
+from knack.util import CLIError
+
+import six
+
+logger = get_logger(__name__)
+
+
+class AzCli(CLI):
+
+ def __init__(self, **kwargs):
+ super(AzCli, self).__init__(**kwargs)
+
+ from azure.cli.core.commands.arm import add_id_parameters
+ from azure.cli.core.cloud import get_active_cloud
+ import azure.cli.core.commands.progress as progress
+ from azure.cli.core.extensions import register_extensions
+ from azure.cli.core._session import ACCOUNT, CONFIG, SESSION
+
+ import knack.events as events
+
+ self.data['headers'] = {}
+ self.data['command'] = 'unknown'
+ self.data['command_extension_name'] = None
+ self.data['completer_active'] = ARGCOMPLETE_ENV_NAME in os.environ
+ self.data['query_active'] = False
+
+ azure_folder = self.config.config_dir
+ ACCOUNT.load(os.path.join(azure_folder, 'azureProfile.json'))
+ CONFIG.load(os.path.join(azure_folder, 'az.json'))
+ SESSION.load(os.path.join(azure_folder, 'az.sess'), max_age=3600)
+ self.cloud = get_active_cloud(self)
+ logger.debug('Current cloud config:\n%s', str(self.cloud.name))
+
+ self.progress_controller = progress.ProgressHook()
+
+ register_extensions(self)
+ self.register_event(events.EVENT_INVOKER_POST_CMD_TBL_CREATE, add_id_parameters)
+ # TODO: Doesn't work because args get copied
+ # self.register_event(events.EVENT_INVOKER_PRE_CMD_TBL_CREATE, _pre_command_table_create)
+
+ def refresh_request_id(self):
+ """Assign a new random GUID as x-ms-client-request-id
+
+ The method must be invoked before each command execution in order to ensure
+ unique client-side request ID is generated.
+ """
+ import uuid
+ self.data['headers']['x-ms-client-request-id'] = str(uuid.uuid1())
+
+ def get_progress_controller(self, det=False):
+ import azure.cli.core.commands.progress as progress
+ self.progress_controller.init_progress(progress.get_progress_view(det))
+ return self.progress_controller
+
+ def show_version(self):
+ from azure.cli.core.util import get_az_version_string
+ print(get_az_version_string())
+
+
+class MainCommandsLoader(CLICommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ super(MainCommandsLoader, self).__init__(cli_ctx)
+ self.cmd_to_loader_map = {}
+ self.loaders = []
+
+ def _update_command_definitions(self):
+ pass
+
+ def load_command_table(self, args):
+ from importlib import import_module
+ import pkgutil
+ import traceback
+ from azure.cli.core.commands import (
+ _load_module_command_loader, _load_extension_command_loader, BLACKLISTED_MODS, ExtensionCommandSource)
+ from azure.cli.core.extension import (
+ get_extension_names, get_extension_path, get_extension_modname)
+
+ cmd_to_mod_map = {}
+
+ def _update_command_table_from_modules(args):
+ '''Loads command table(s)
+ When `module_name` is specified, only commands from that module will be loaded.
+ If the module is not found, all commands are loaded.
+ '''
+ installed_command_modules = []
+ try:
+ mods_ns_pkg = import_module('azure.cli.command_modules')
+ installed_command_modules = [modname for _, modname, _ in
+ pkgutil.iter_modules(mods_ns_pkg.__path__)
+ if modname not in BLACKLISTED_MODS]
+ except ImportError:
+ pass
+ logger.debug('Installed command modules %s', installed_command_modules)
+ cumulative_elapsed_time = 0
+ for mod in [m for m in installed_command_modules if m not in BLACKLISTED_MODS]:
+ try:
+ start_time = timeit.default_timer()
+ module_command_table = _load_module_command_loader(self, args, mod)
+ self.command_table.update(module_command_table)
+ cmd_to_mod_map.update({cmd: mod for cmd in list(module_command_table.keys())})
+ elapsed_time = timeit.default_timer() - start_time
+ logger.debug("Loaded module '%s' in %.3f seconds.", mod, elapsed_time)
+ cumulative_elapsed_time += elapsed_time
+ except Exception as ex: # pylint: disable=broad-except
+ # Changing this error message requires updating CI script that checks for failed
+ # module loading.
+ import azure.cli.core.telemetry as telemetry
+ logger.error("Error loading command module '%s'", mod)
+ telemetry.set_exception(exception=ex, fault_type='module-load-error-' + mod,
+ summary='Error loading module: {}'.format(mod))
+ logger.debug(traceback.format_exc())
+ logger.debug("Loaded all modules in %.3f seconds. "
+ "(note: there's always an overhead with the first module loaded)",
+ cumulative_elapsed_time)
+
+ def _update_command_table_from_extensions():
+
+ extensions = get_extension_names()
+ if extensions:
+ logger.debug("Found %s extensions: %s", len(extensions), extensions)
+ for ext_name in extensions:
+ ext_dir = get_extension_path(ext_name)
+ sys.path.append(ext_dir)
+ try:
+ ext_mod = get_extension_modname(ext_name, ext_dir=ext_dir)
+ # Add to the map. This needs to happen before we load commands as registering a command
+ # from an extension requires this map to be up-to-date.
+ # self._mod_to_ext_map[ext_mod] = ext_name
+ start_time = timeit.default_timer()
+ extension_command_table = _load_extension_command_loader(self, args, ext_mod)
+
+ for cmd_name, cmd in extension_command_table.items():
+ cmd.command_source = ExtensionCommandSource(
+ extension_name=ext_mod,
+ overrides_command=cmd_name in cmd_to_mod_map)
+
+ self.command_table.update(extension_command_table)
+ elapsed_time = timeit.default_timer() - start_time
+ logger.debug("Loaded extension '%s' in %.3f seconds.", ext_name, elapsed_time)
+ except Exception: # pylint: disable=broad-except
+ logger.warning("Unable to load extension '%s'. Use --debug for more information.", ext_name)
+ logger.debug(traceback.format_exc())
+
+ _update_command_table_from_modules(args)
+ try:
+ # We always load extensions even if the appropriate module has been loaded
+ # as an extension could override the commands already loaded.
+ _update_command_table_from_extensions()
+ except Exception: # pylint: disable=broad-except
+ logger.warning("Unable to load extensions. Use --debug for more information.")
+ logger.debug(traceback.format_exc())
+
+ return self.command_table
+
+ def load_arguments(self, command):
+ from azure.cli.core.commands.parameters import resource_group_name_type, get_location_type, deployment_name_type
+ from knack.arguments import ignore_type
+
+ command_loaders = self.cmd_to_loader_map.get(command, None)
+
+ if command_loaders:
+ for loader in command_loaders:
+ loader.load_arguments(command)
+ self.argument_registry.arguments.update(loader.argument_registry.arguments)
+ self.extra_argument_registry.update(loader.extra_argument_registry)
+
+ with ArgumentsContext(self, '') as c:
+ c.argument('resource_group_name', resource_group_name_type)
+ c.argument('location', get_location_type(self.cli_ctx))
+ c.argument('deployment_name', deployment_name_type)
+ c.argument('cmd', ignore_type)
+
+ super(MainCommandsLoader, self).load_arguments(command)
+
+
+class AzCommandsLoader(CLICommandsLoader):
+
+ def __init__(self, cli_ctx=None, min_profile=None, max_profile='latest', **kwargs):
+ from azure.cli.core.commands import AzCliCommand
+ super(AzCommandsLoader, self).__init__(cli_ctx=cli_ctx, command_cls=AzCliCommand)
+ self.module_name = __name__
+ self.min_profile = min_profile
+ self.max_profile = max_profile
+ self.module_kwargs = kwargs
+
+ def _update_command_definitions(self):
+ for command_name, command in self.command_table.items():
+ for argument_name in command.arguments:
+ overrides = self.argument_registry.get_cli_argument(command_name, argument_name)
+ command.update_argument(argument_name, overrides)
+
+ # Add any arguments explicitly registered for this command
+ for argument_name, argument_definition in self.extra_argument_registry[command_name].items():
+ command.arguments[argument_name] = argument_definition
+ command.update_argument(argument_name,
+ self.argument_registry.get_cli_argument(command_name, argument_name))
+
+ def _apply_doc_string(self, dest, command_kwargs):
+ doc_string_source = command_kwargs.get('doc_string_source', None)
+ if not doc_string_source:
+ return
+ elif not isinstance(doc_string_source, str):
+ raise CLIError("command authoring error: applying doc_string_source '{}' directly will cause slowdown. "
+ 'Import by string name instead.'.format(doc_string_source.__name__))
+
+ model = doc_string_source
+ try:
+ model = self.get_models(doc_string_source)
+ except AttributeError:
+ model = None
+ if not model:
+ from importlib import import_module
+ (path, model_name) = doc_string_source.split('#', 1)
+ method_name = None
+ if '.' in model_name:
+ (model_name, method_name) = model_name.split('.', 1)
+ module = import_module(path)
+ model = getattr(module, model_name)
+ if method_name:
+ model = getattr(model, method_name, None)
+ if not model:
+ raise CLIError("command authoring error: source '{}' not found.".format(doc_string_source))
+ dest.__doc__ = model.__doc__
+
+
+ def get_api_version(self, resource_type=None):
+ from azure.cli.core.profiles import get_api_version
+ resource_type = resource_type or self.module_kwargs.get('resource_type', None)
+ return get_api_version(self.cli_ctx, resource_type)
+
+ def supported_api_version(self, resource_type=None, min_api=None, max_api=None):
+ from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
+ return supported_api_version(
+ cli_ctx=self.cli_ctx,
+ resource_type=resource_type or PROFILE_TYPE,
+ min_api=min_api or self.min_profile,
+ max_api=max_api or self.max_profile)
+
+ def get_sdk(self, *attr_args, **kwargs):
+ from azure.cli.core.profiles import get_sdk
+ return get_sdk(self.cli_ctx, kwargs.pop('resource_type', self.module_kwargs['resource_type']),
+ *attr_args, **kwargs)
+
+ def get_models(self, *attr_args, **kwargs):
+ resource_type = kwargs.get('resource_type', self.module_kwargs.get('resource_type', None))
+ from azure.cli.core.profiles import get_sdk
+ return get_sdk(self.cli_ctx, resource_type, *attr_args, mod='models')
+
+ def command_group(self, group_name, command_type=None, **kwargs):
+ from azure.cli.core.sdk.util import _CommandGroup
+ merged_kwargs = self.module_kwargs.copy()
+ if command_type:
+ merged_kwargs['command_type'] = command_type
+ merged_kwargs.update(kwargs)
+ return _CommandGroup(self.module_name, self, group_name, **merged_kwargs)
+
+ def argument_context(self, scope, **kwargs):
+ from azure.cli.core.sdk.util import _ParametersContext
+ merged_kwargs = self.module_kwargs.copy()
+ merged_kwargs.update(kwargs)
+ return _ParametersContext(self, scope, **merged_kwargs)
+
+ def _cli_command(self, name, operation=None, handler=None, argument_loader=None, description_loader=None, **kwargs):
+
+ if operation and not isinstance(operation, six.string_types):
+ raise TypeError("Operation must be a string. Got '{}'".format(operation))
+ if handler and not callable(handler):
+ raise TypeError("Handler must be a callable. Got '{}'".format(operation))
+ if bool(operation) == bool(handler):
+ raise TypeError("Must specify exactly one of either 'operation' or 'handler'")
+
+ name = ' '.join(name.split())
+
+ client_factory = kwargs.get('client_factory', None)
+
+ def default_command_handler(command_args):
+ op = handler or self.get_op_handler(operation)
+
+ client = client_factory(self.cli_ctx, command_args) if client_factory else None
+ if client:
+ client_arg_name = 'client' if operation.startswith('azure.cli') else 'self'
+ command_args[client_arg_name] = client
+ result = op(**command_args)
+ return result
+
+ def default_arguments_loader():
+ op = handler or self.get_op_handler(operation)
+ self._apply_doc_string(op, kwargs)
+ cmd_args = list(extract_args_from_signature(op))
+ return cmd_args
+
+ def default_description_loader():
+ op = handler or self.get_op_handler(operation)
+ self._apply_doc_string(op, kwargs)
+ return extract_full_summary_from_signature(op)
+
+ kwargs['arguments_loader'] = argument_loader or default_arguments_loader
+ kwargs['description_loader'] = description_loader or default_description_loader
+
+ if self.supported_api_version(resource_type=kwargs.get('resource_type'),
+ min_api=kwargs.get('min_api'),
+ max_api=kwargs.get('max_api')):
+ self.command_table[name] = self.command_cls(self, name,
+ handler or default_command_handler,
+ **kwargs)
+
+ def get_op_handler(self, operation):
+ """ Import and load the operation handler """
+ # Patch the unversioned sdk path to include the appropriate API version for the
+ # resource type in question.
+ from importlib import import_module
+ import types
+
+ from azure.cli.core.profiles import ResourceType
+ from azure.cli.core.profiles._shared import get_versioned_sdk_path
+
+ for rt in ResourceType:
+ if operation.startswith(rt.import_prefix):
+ operation = operation.replace(rt.import_prefix,
+ get_versioned_sdk_path(self.cli_ctx.cloud.profile, rt))
+
+ try:
+ mod_to_import, attr_path = operation.split('#')
+ op = import_module(mod_to_import)
+ for part in attr_path.split('.'):
+ op = getattr(op, part)
+ if isinstance(op, types.FunctionType):
+ return op
+ return six.get_method_function(op)
+ except (ValueError, AttributeError):
+ raise ValueError("The operation '{}' is invalid.".format(operation))
diff --git a/src/azure-cli-core/azure/cli/core/_config.py b/src/azure-cli-core/azure/cli/core/_config.py
index eb59df7d1da..83f7905bdff 100644
--- a/src/azure-cli-core/azure/cli/core/_config.py
+++ b/src/azure-cli-core/azure/cli/core/_config.py
@@ -2,9 +2,8 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+
import os
-import stat
-from six.moves import configparser
from azure.cli.core._environment import get_config_dir
@@ -13,78 +12,3 @@
GLOBAL_CONFIG_PATH = os.path.join(GLOBAL_CONFIG_DIR, CONFIG_FILE_NAME)
ENV_VAR_PREFIX = 'AZURE_'
DEFAULTS_SECTION = 'defaults'
-
-_UNSET = object()
-_ENV_VAR_FORMAT = ENV_VAR_PREFIX + '{section}_{option}'
-
-
-def get_config_parser():
- import sys
-
- python_version = sys.version_info.major
- return configparser.ConfigParser() if python_version == 3 else configparser.SafeConfigParser()
-
-
-class AzConfig(object):
- _BOOLEAN_STATES = {'1': True, 'yes': True, 'true': True, 'on': True,
- '0': False, 'no': False, 'false': False, 'off': False}
-
- def __init__(self):
- self.config_parser = get_config_parser()
-
- @staticmethod
- def env_var_name(section, option):
- return _ENV_VAR_FORMAT.format(section=section.upper(),
- option=option.upper())
-
- def has_option(self, section, option):
- if AzConfig.env_var_name(section, option) in os.environ:
- return True
- return self.config_parser.has_option(section, option)
-
- def get(self, section, option, fallback=_UNSET):
- try:
- env = AzConfig.env_var_name(section, option)
- return os.environ[env] if env in os.environ else self.config_parser.get(section, option)
- except (configparser.NoSectionError, configparser.NoOptionError):
- if fallback is _UNSET:
- raise
- else:
- return fallback
-
- def getint(self, section, option, fallback=_UNSET):
- return int(self.get(section, option, fallback))
-
- def getfloat(self, section, option, fallback=_UNSET):
- return float(self.get(section, option, fallback))
-
- def getboolean(self, section, option, fallback=_UNSET):
- val = str(self.get(section, option, fallback))
- if val.lower() not in AzConfig._BOOLEAN_STATES:
- raise ValueError('Not a boolean: {}'.format(val))
- return AzConfig._BOOLEAN_STATES[val.lower()]
-
-
-az_config = AzConfig()
-az_config.config_parser.read(GLOBAL_CONFIG_PATH)
-
-
-def set_global_config(config):
- if not os.path.isdir(GLOBAL_CONFIG_DIR):
- os.makedirs(GLOBAL_CONFIG_DIR)
- with open(GLOBAL_CONFIG_PATH, 'w') as configfile:
- config.write(configfile)
- os.chmod(GLOBAL_CONFIG_PATH, stat.S_IRUSR | stat.S_IWUSR)
- # reload az_config
- az_config.config_parser.read(GLOBAL_CONFIG_PATH)
-
-
-def set_global_config_value(section, option, value):
- config = get_config_parser()
- config.read(GLOBAL_CONFIG_PATH)
- try:
- config.add_section(section)
- except configparser.DuplicateSectionError:
- pass
- config.set(section, option, value)
- set_global_config(config)
diff --git a/src/azure-cli-core/azure/cli/core/_debug.py b/src/azure-cli-core/azure/cli/core/_debug.py
index 33f9be4f959..0f5052c5e0d 100644
--- a/src/azure-cli-core/azure/cli/core/_debug.py
+++ b/src/azure-cli-core/azure/cli/core/_debug.py
@@ -5,10 +5,10 @@
import os
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
+from knack.log import get_logger
+from knack.util import CLIError
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
DISABLE_VERIFY_VARIABLE_NAME = "AZURE_CLI_DISABLE_CONNECTION_VERIFICATION"
ADAL_PYTHON_SSL_NO_VERIFY = "ADAL_PYTHON_SSL_NO_VERIFY"
diff --git a/src/azure-cli-core/azure/cli/core/_help.py b/src/azure-cli-core/azure/cli/core/_help.py
index 54c6e840b17..781c78a8916 100644
--- a/src/azure-cli-core/azure/cli/core/_help.py
+++ b/src/azure-cli-core/azure/cli/core/_help.py
@@ -4,17 +4,14 @@
# --------------------------------------------------------------------------------------------
from __future__ import print_function
-import argparse
-import sys
-import textwrap
-from azure.cli.core.help_files import _load_help_file
from azure.cli.core.commands import ExtensionCommandSource
-import azure.cli.core.azlogging as azlogging
-__all__ = ['print_detailed_help', 'print_welcome_message', 'GroupHelpFile', 'CommandHelpFile']
+from knack.help import (
+ HelpExample, HelpFile as KnackHelpFile, CLIHelp, HelpParameter, ArgumentGroupRegistry as KnackArgumentGroupRegistry)
+from knack.log import get_logger
-FIRST_LINE_PREFIX = ': '
+logger = get_logger(__name__)
PRIVACY_STATEMENT = """
Welcome to Azure CLI!
@@ -30,156 +27,34 @@
You can change your telemetry settings with `az configure`.
"""
-logger = azlogging.get_az_logger(__name__)
+WELCOME_MESSAGE = r"""
+ /\\
+ / \\ _____ _ _ __ ___
+ / /\ \\ |_ / | | | \'__/ _ \\
+ / ____ \\ / /| |_| | | | __/
+/_/ \_\\/___|\__,_|_| \___|
-def show_privacy_statement():
- from azure.cli.core._config import az_config, set_global_config_value
- first_ran = az_config.getboolean('core', 'first_run', fallback=False)
- if not first_ran:
- print(PRIVACY_STATEMENT, file=sys.stdout)
- set_global_config_value('core', 'first_run', 'yes')
+Welcome to the cool new Azure CLI!
-
-def show_help(nouns, parser, is_group):
- delimiters = ' '.join(nouns)
- help_file = CommandHelpFile(delimiters, parser) \
- if not is_group \
- else GroupHelpFile(delimiters, parser)
-
- help_file.load(parser)
-
- if not nouns:
- print("\nFor version info, use 'az --version'")
- help_file.command = ''
-
- print_detailed_help(help_file)
-
-
-def show_welcome(parser):
- show_privacy_statement()
- print_welcome_message()
-
- help_file = GroupHelpFile('', parser)
- print_description_list(help_file.children)
-
-
-def print_welcome_message():
- _print_indent(r"""
- /\
- / \ _____ _ _ __ ___
- / /\ \ |_ / | | | \'__/ _ \
- / ____ \ / /| |_| | | | __/
- /_/ \_\/___|\__,_|_| \___|
-""")
- _print_indent('\nWelcome to the cool new Azure CLI!\n\nHere are the base commands:\n')
+Here are the base commands:
+"""
-def print_detailed_help(help_file):
+def print_detailed_help(cli_name, help_file):
+ from knack.help import _print_header, _print_indent, print_arguments, _print_groups, _print_examples
_print_extensions_msg(help_file)
- _print_header(help_file)
+ _print_header(cli_name, help_file)
if help_file.type == 'command':
_print_indent('Arguments')
print_arguments(help_file)
elif help_file.type == 'group':
_print_groups(help_file)
-
if help_file.examples:
_print_examples(help_file)
-def print_description_list(help_files):
- indent = 1
- max_name_length = max(len(f.name) for f in help_files) if help_files else 0
- for help_file in sorted(help_files, key=lambda h: h.name):
- _print_indent('{0}{1}{2}'.format(help_file.name,
- _get_column_indent(help_file.name, max_name_length),
- FIRST_LINE_PREFIX + help_file.short_summary
- if help_file.short_summary
- else ''),
- indent,
- _get_hanging_indent(max_name_length, indent))
-
-
-def print_arguments(help_file):
- indent = 1
- if not help_file.parameters:
- _print_indent('None', indent)
- _print_indent('')
- return
-
- if not help_file.parameters:
- _print_indent('none', indent)
- required_tag = ' [Required]'
- max_name_length = max(len(p.name) + (len(required_tag) if p.required else 0)
- for p in help_file.parameters)
- last_group_name = None
-
- group_registry = ArgumentGroupRegistry(
- [p.group_name for p in help_file.parameters if p.group_name])
-
- def _get_parameter_key(parameter):
- return '{}{}{}'.format(group_registry.get_group_priority(parameter.group_name),
- str(not parameter.required),
- parameter.name)
-
- for p in sorted(help_file.parameters, key=_get_parameter_key):
- indent = 1
- required_text = required_tag if p.required else ''
-
- short_summary = p.short_summary if p.short_summary else ''
- possible_values_index = short_summary.find(' Possible values include')
- short_summary = short_summary[0:possible_values_index
- if possible_values_index >= 0 else len(short_summary)]
- short_summary += _get_choices_defaults_sources_str(p)
- short_summary = short_summary.strip()
-
- if p.group_name != last_group_name:
- if p.group_name:
- print('')
- print(p.group_name)
- last_group_name = p.group_name
- _print_indent(
- '{0}{1}{2}{3}'.format(
- p.name,
- _get_column_indent(p.name + required_text, max_name_length),
- required_text,
- FIRST_LINE_PREFIX + short_summary if short_summary else ''
- ),
- indent,
- _get_hanging_indent(max_name_length, indent)
- )
-
- indent = 2
- if p.long_summary:
- _print_indent('{0}'.format(p.long_summary.rstrip()), indent)
-
- return indent
-
-
-class ArgumentGroupRegistry(object): # pylint: disable=too-few-public-methods
-
- def __init__(self, group_list):
-
- self.priorities = {
- None: 0,
- 'Resource Id Arguments': 1,
- 'Generic Update Arguments': 998,
- 'Global Arguments': 1000,
- }
- priority = 2
- # any groups not already in the static dictionary should be prioritized alphabetically
- other_groups = [g for g in sorted(list(set(group_list))) if g not in self.priorities]
- for group in other_groups:
- self.priorities[group] = priority
- priority += 1
-
- def get_group_priority(self, group_name):
- key = self.priorities.get(group_name, 0)
- return "%06d" % key
-
-
def _print_extensions_msg(help_file):
if help_file.type != 'command':
return
@@ -187,136 +62,31 @@ def _print_extensions_msg(help_file):
logger.warning(help_file.command_source.get_command_warn_msg())
-def _print_header(help_file):
- indent = 0
- _print_indent('')
- _print_indent('Command' if help_file.type == 'command' else 'Group', indent)
+def show_help(cli_name, nouns, parser, is_group):
+ from knack.help import GroupHelpFile
+
+ delimiters = ' '.join(nouns)
+ help_file = CliCommandHelpFile(delimiters, parser) if not is_group else GroupHelpFile(delimiters, parser)
+ help_file.load(parser)
+ if not nouns:
+ help_file.command = ''
+ print_detailed_help(cli_name, help_file)
+
- indent += 1
- _print_indent('{0}{1}'.format('az ' + help_file.command,
- FIRST_LINE_PREFIX + help_file.short_summary
- if help_file.short_summary
- else ''),
- indent)
+class AzCliHelp(CLIHelp):
- indent += 1
- if help_file.long_summary:
- _print_indent('{0}'.format(help_file.long_summary.rstrip()), indent)
- _print_indent('')
+ def __init__(self, cli_ctx):
+ self.cli_ctx = cli_ctx
+ super(AzCliHelp, self).__init__(cli_ctx, PRIVACY_STATEMENT, WELCOME_MESSAGE)
-def _print_groups(help_file):
+class CliHelpFile(KnackHelpFile):
- def _print_items(items):
- for c in sorted(items, key=lambda h: h.name):
- column_indent = _get_column_indent(c.name, max_name_length)
- summary = FIRST_LINE_PREFIX + c.short_summary if c.short_summary else ''
- summary = summary.replace('\n', ' ')
- hanging_indent = max_name_length + indent * 4 + 2
- _print_indent(
- '{0}{1}{2}'.format(c.name, column_indent, summary), indent, hanging_indent)
- _print_indent('')
-
- indent = 1
- max_name_length = max(len(c.name) for c in help_file.children) if help_file.children else 0
- subgroups = [c for c in help_file.children if isinstance(c, GroupHelpFile)]
- subcommands = [c for c in help_file.children if c not in subgroups]
-
- if subgroups:
- _print_indent('Subgroups:')
- _print_items(subgroups)
-
- if subcommands:
- _print_indent('Commands:')
- _print_items(subcommands)
-
-
-def _get_choices_defaults_sources_str(p):
- choice_str = ' Allowed values: {0}.'.format(', '.join(sorted([str(x) for x in p.choices]))) \
- if p.choices else ''
- default_str = ' Default: {0}.'.format(p.default) \
- if p.default and p.default != argparse.SUPPRESS else ''
- value_sources_str = ' Values from: {0}.'.format(', '.join(p.value_sources)) \
- if p.value_sources else ''
- return '{0}{1}{2}'.format(choice_str, default_str, value_sources_str)
-
-
-def _print_examples(help_file):
- indent = 0
- print('')
- _print_indent('Examples', indent)
-
- for e in help_file.examples:
- indent = 1
- _print_indent('{0}'.format(e.name), indent)
-
- indent = 2
- _print_indent('{0}'.format(e.text), indent)
-
- print('')
-
-
-class HelpObject(object): # pylint: disable=too-few-public-methods
-
- def __init__(self, **kwargs):
- self._short_summary = ''
- self._long_summary = ''
- super(HelpObject, self).__init__(**kwargs)
-
- @property
- def short_summary(self):
- return self._short_summary
-
- @short_summary.setter
- def short_summary(self, value):
- self._short_summary = _normalize_text(value)
-
- @property
- def long_summary(self):
- return self._long_summary
-
- @long_summary.setter
- def long_summary(self, value):
- self._long_summary = _normalize_text(value)
-
-
-class HelpFile(HelpObject): # pylint: disable=too-few-public-methods,too-many-instance-attributes
-
- def __init__(self, delimiters):
- super(HelpFile, self).__init__()
- self.delimiters = delimiters
- self.name = delimiters.split()[-1] if delimiters else delimiters
- self.command = delimiters
- self.type = ''
- self.short_summary = ''
- self.long_summary = ''
- self.examples = []
-
- def load(self, options):
- description = getattr(options, 'description', None)
- try:
- self.short_summary = description[:description.index('.')]
- long_summary = description[description.index('.') + 1:].lstrip()
- self.long_summary = ' '.join(long_summary.splitlines())
- except (ValueError, AttributeError):
- self.short_summary = description
-
- file_data = (_load_help_file_from_string(options.help_file)
- if hasattr(options, '_defaults')
- else None)
-
- if file_data:
- self._load_from_data(file_data)
- else:
- self._load_from_file()
-
- def _load_from_file(self):
- file_data = _load_help_file(self.delimiters)
- if file_data:
- self._load_from_data(file_data)
+ def __init__(self, cli_ctx, delimiters):
+ super(CliHelpFile, self).__init__(delimiters)
+ self.cli_ctx = cli_ctx
- @staticmethod
- def _should_include_example(ex):
+ def _should_include_example(self, ex):
min_profile = ex.get('min_profile')
max_profile = ex.get('max_profile')
if min_profile or max_profile:
@@ -324,11 +94,11 @@ def _should_include_example(ex):
# yaml will load this as a datetime if it's a date, we need a string.
min_profile = str(min_profile) if min_profile else None
max_profile = str(max_profile) if max_profile else None
- return supported_api_version(PROFILE_TYPE,
- min_api=min_profile,
- max_api=max_profile)
+ return supported_api_version(self.cli_ctx, resource_type=PROFILE_TYPE,
+ min_api=min_profile, max_api=max_profile)
return True
+ # Needs to override base implementation
def _load_from_data(self, data):
if not data:
return
@@ -348,30 +118,15 @@ def _load_from_data(self, data):
if 'examples' in data:
self.examples = []
for d in data['examples']:
- if HelpFile._should_include_example(d):
+ if self._should_include_example(d):
self.examples.append(HelpExample(d))
-class GroupHelpFile(HelpFile): # pylint: disable=too-few-public-methods
-
- def __init__(self, delimiters, parser):
- super(GroupHelpFile, self).__init__(delimiters)
- self.type = 'group'
-
- self.children = []
- if getattr(parser, 'choices', None):
- for options in parser.choices.values():
- delimiters = ' '.join(options.prog.split()[1:])
- child = (GroupHelpFile(delimiters, options) if options.is_group()
- else HelpFile(delimiters))
- child.load(options)
- self.children.append(child)
-
-
-class CommandHelpFile(HelpFile): # pylint: disable=too-few-public-methods
+class CliCommandHelpFile(CliHelpFile):
def __init__(self, delimiters, parser):
- super(CommandHelpFile, self).__init__(delimiters)
+ super(CliCommandHelpFile, self).__init__(parser.cli_ctx, delimiters)
+ import argparse
self.type = 'command'
self.command_source = getattr(parser, 'command_source', None)
@@ -389,7 +144,7 @@ def __init__(self, delimiters, parser):
help_param.group_name = 'Global Arguments'
def _load_from_data(self, data):
- super(CommandHelpFile, self)._load_from_data(data)
+ super(CliCommandHelpFile, self)._load_from_data(data)
if isinstance(data, str) or not self.parameters or not data.get('parameters'):
return
@@ -405,91 +160,20 @@ def _load_from_data(self, data):
self.parameters = loaded_params
-class HelpParameter(HelpObject): # pylint: disable=too-few-public-methods, too-many-instance-attributes
-
- def __init__(self, param_name, description, required, choices=None,
- default=None, group_name=None):
- super(HelpParameter, self).__init__()
- self.name = param_name
- self.required = required
- self.type = 'string'
- self.short_summary = description
- self.long_summary = ''
- self.value_sources = []
- self.choices = choices
- self.default = default
- self.group_name = group_name
-
- def update_from_data(self, data):
- if self.name != data.get('name'):
- raise HelpAuthoringException("mismatched name {0} vs. {1}"
- .format(self.name,
- data.get('name')))
-
- if data.get('type'):
- self.type = data.get('type')
-
- if data.get('short-summary'):
- self.short_summary = data.get('short-summary')
-
- if data.get('long-summary'):
- self.long_summary = data.get('long-summary')
-
- if data.get('populator-commands'):
- self.value_sources = data.get('populator-commands')
-
-
-class HelpExample(object): # pylint: disable=too-few-public-methods
-
- def __init__(self, _data):
- self.name = _data['name']
- self.text = _data['text']
-
-
-def _print_indent(s, indent=0, subsequent_spaces=-1):
- tw = textwrap.TextWrapper(initial_indent=' ' * indent,
- subsequent_indent=(' ' * indent
- if subsequent_spaces == -1
- else ' ' * subsequent_spaces),
- replace_whitespace=False,
- width=100)
- paragraphs = s.split('\n')
- for p in paragraphs:
- try:
- print(tw.fill(p), file=sys.stdout)
- except UnicodeEncodeError:
- print(tw.fill(p).encode('ascii', 'ignore').decode('utf-8', 'ignore'), file=sys.stdout)
-
-
-def _get_column_indent(text, max_name_length):
- return ' ' * (max_name_length - len(text))
-
-
-def _get_hanging_indent(max_length, indent):
- return max_length + (indent * 4) + len(FIRST_LINE_PREFIX)
-
-
-def _normalize_text(s):
- if not s or len(s) < 2:
- return s or ''
- s = s.strip()
- initial_upper = s[0].upper() + s[1:]
- trailing_period = '' if s[-1] in '.!?' else '.'
- return initial_upper + trailing_period
-
-
-def _load_help_file_from_string(text):
- import yaml
- try:
- return yaml.load(text) if text else None
- except Exception: # pylint: disable=broad-except
- return text
-
-
-def _get_single_metadata(cmd_table):
- assert len(cmd_table) == 1
- return next(metadata for _, metadata in cmd_table.items())
+class ArgumentGroupRegistry(KnackArgumentGroupRegistry): # pylint: disable=too-few-public-methods
+ def __init__(self, group_list):
-class HelpAuthoringException(Exception):
- pass
+ super(ArgumentGroupRegistry, self).__init__(group_list)
+ self.priorities = {
+ None: 0,
+ 'Resource Id Arguments': 1,
+ 'Generic Update Arguments': 998,
+ 'Global Arguments': 1000,
+ }
+ priority = 2
+ # any groups not already in the static dictionary should be prioritized alphabetically
+ other_groups = [g for g in sorted(list(set(group_list))) if g not in self.priorities]
+ for group in other_groups:
+ self.priorities[group] = priority
+ priority += 1
diff --git a/src/azure-cli-core/azure/cli/core/_output.py b/src/azure-cli-core/azure/cli/core/_output.py
index 0a168704da6..9e618c7563d 100644
--- a/src/azure-cli-core/azure/cli/core/_output.py
+++ b/src/azure-cli-core/azure/cli/core/_output.py
@@ -8,43 +8,10 @@
import errno
import sys
import platform
-import json
-import traceback
-from collections import OrderedDict
-from six import StringIO, text_type, u, string_types
+from six import StringIO
import colorama
-from tabulate import tabulate
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
-
-logger = azlogging.get_az_logger(__name__)
-
-
-def _decode_str(output):
- if not isinstance(output, text_type):
- output = u(str(output))
- return output
-
-
-class ComplexEncoder(json.JSONEncoder):
- def default(self, o): # pylint: disable=method-hidden
- if isinstance(o, bytes) and not isinstance(o, str):
- return o.decode()
- return json.JSONEncoder.default(self, o)
-
-
-def format_json(obj):
- result = obj.result
- # OrderedDict.__dict__ is always '{}', to persist the data, convert to dict first.
- input_dict = dict(result) if hasattr(result, '__dict__') else result
- return json.dumps(input_dict, indent=2, sort_keys=True, cls=ComplexEncoder,
- separators=(',', ': ')) + '\n'
-
-
-def format_json_color(obj):
- from pygments import highlight, lexers, formatters
- return highlight(format_json(obj), lexers.JsonLexer(), formatters.TerminalFormatter()) # pylint: disable=no-member
+from knack.output import format_json, format_json_color, format_table, format_tsv
def format_text(obj):
@@ -60,40 +27,6 @@ def format_text(obj):
return ''
-def format_table(obj):
- result = obj.result
- try:
- if obj.table_transformer and not obj.is_query_active:
- if isinstance(obj.table_transformer, str):
- from jmespath import compile as compile_jmes, Options
- result = compile_jmes(obj.table_transformer).search(result, Options(OrderedDict))
- else:
- result = obj.table_transformer(result)
- result_list = result if isinstance(result, list) else [result]
- should_sort_keys = not obj.is_query_active and not obj.table_transformer
- to = TableOutput(should_sort_keys)
- return to.dump(result_list)
- except:
- logger.debug(traceback.format_exc())
- raise CLIError("Table output unavailable. "
- "Use the --query option to specify an appropriate query. "
- "Use --debug for more info.")
-
-
-def format_tsv(obj):
- result = obj.result
- result_list = result if isinstance(result, list) else [result]
- return TsvOutput.dump(result_list)
-
-
-class CommandResultItem(object): # pylint: disable=too-few-public-methods
-
- def __init__(self, result, table_transformer=None, is_query_active=False):
- self.result = result
- self.table_transformer = table_transformer
- self.is_query_active = is_query_active
-
-
class OutputProducer(object): # pylint: disable=too-few-public-methods
format_dict = {
@@ -128,51 +61,6 @@ def get_formatter(format_type):
return OutputProducer.format_dict.get(format_type)
-class TableOutput(object): # pylint: disable=too-few-public-methods
-
- SKIP_KEYS = ['id', 'type', 'etag']
-
- def __init__(self, should_sort_keys=False):
- self.should_sort_keys = should_sort_keys
-
- @staticmethod
- def _capitalize_first_char(x):
- return x[0].upper() + x[1:] if x else x
-
- def _auto_table_item(self, item):
- new_entry = OrderedDict()
- try:
- keys = sorted(item) if self.should_sort_keys and isinstance(item, dict) else item.keys()
- for k in keys:
- if k in TableOutput.SKIP_KEYS:
- continue
- if item[k] and not isinstance(item[k], (list, dict, set)):
- new_entry[TableOutput._capitalize_first_char(k)] = item[k]
- except AttributeError:
- # handles odd cases where a string/bool/etc. is returned
- if isinstance(item, list):
- for col, val in enumerate(item):
- new_entry['Column{}'.format(col + 1)] = val
- else:
- new_entry['Result'] = item
- return new_entry
-
- def _auto_table(self, result):
- if isinstance(result, list):
- new_result = []
- for item in result:
- new_result.append(self._auto_table_item(item))
- return new_result
- return self._auto_table_item(result)
-
- def dump(self, data):
- table_data = self._auto_table(data)
- table_str = tabulate(table_data, headers="keys", tablefmt="simple") if table_data else ''
- if table_str == '\n':
- raise ValueError('Unable to extract fields for table.')
- return table_str + '\n'
-
-
class TextOutput(object):
def __init__(self):
@@ -200,58 +88,3 @@ def dump(self):
result = io.getvalue()
io.close()
return result
-
-
-class TsvOutput(object): # pylint: disable=too-few-public-methods
-
- @staticmethod
- def _dump_obj(data, stream):
- if isinstance(data, list):
- stream.write(str(len(data)))
- elif isinstance(data, dict):
- # We need to print something to avoid mismatching
- # number of columns if the value is None for some instances
- # and a dictionary value in other...
- stream.write('')
- else:
- to_write = data if isinstance(data, string_types) else str(data)
- stream.write(to_write)
-
- @staticmethod
- def _dump_row(data, stream):
- separator = ''
- if isinstance(data, (dict, list)):
- if isinstance(data, OrderedDict):
- values = data.values()
- elif isinstance(data, dict):
- values = [value for _, value in sorted(data.items())]
- else:
- values = data
-
- # Iterate through the items either sorted by key value (if dict) or in the order
- # they were added (in the cases of an ordered dict) in order to make the output
- # stable
- for value in values:
- stream.write(separator)
- TsvOutput._dump_obj(value, stream)
- separator = '\t'
- elif isinstance(data, list):
- for value in data:
- stream.write(separator)
- TsvOutput._dump_obj(value, stream)
- separator = '\t'
- elif isinstance(data, bool):
- TsvOutput._dump_obj(str(data).lower(), stream)
- else:
- TsvOutput._dump_obj(data, stream)
- stream.write('\n')
-
- @staticmethod
- def dump(data):
- io = StringIO()
- for item in data:
- TsvOutput._dump_row(item, io)
-
- result = io.getvalue()
- io.close()
- return result
diff --git a/src/azure-cli-core/azure/cli/core/_profile.py b/src/azure-cli-core/azure/cli/core/_profile.py
index 1e15d9cfea3..b52ea29e074 100644
--- a/src/azure-cli-core/azure/cli/core/_profile.py
+++ b/src/azure-cli-core/azure/cli/core/_profile.py
@@ -12,13 +12,15 @@
from copy import deepcopy
from enum import Enum
-import azure.cli.core.azlogging as azlogging
from azure.cli.core._environment import get_config_dir
from azure.cli.core._session import ACCOUNT
-from azure.cli.core.util import CLIError, get_file_json, in_cloud_console
-from azure.cli.core.cloud import get_active_cloud, set_cloud_subscription
+from azure.cli.core.util import get_file_json, in_cloud_console
+from azure.cli.core.cloud import get_active_cloud, set_cloud_subscription, init_known_clouds
-logger = azlogging.get_az_logger(__name__)
+from knack.log import get_logger
+from knack.util import CLIError
+
+logger = get_logger(__name__)
# Names below are used by azure-xplat-cli to persist account information into
# ~/.azure/azureProfile.json or osx/keychainer or windows secure storage,
@@ -60,22 +62,19 @@
_TENANT_LEVEL_ACCOUNT_NAME = 'N/A(tenant level account)'
-def _authentication_context_factory(tenant, cache):
+def _authentication_context_factory(cli_ctx, tenant, cache):
import re
import adal
- authority_url = CLOUD.endpoints.active_directory
+ authority_url = cli_ctx.cloud.endpoints.active_directory
is_adfs = bool(re.match('.+(/adfs|/adfs/)$', authority_url, re.I))
if not is_adfs:
authority_url = authority_url + '/' + (tenant or _COMMON_TENANT)
- return adal.AuthenticationContext(authority_url, cache=cache, api_version=None,
- validate_authority=(not is_adfs))
+ return adal.AuthenticationContext(authority_url, cache=cache, api_version=None, validate_authority=(not is_adfs))
_AUTH_CTX_FACTORY = _authentication_context_factory
-CLOUD = get_active_cloud()
-
-logger.debug('Current cloud config:\n%s', str(CLOUD))
+init_known_clouds(force=True)
def _load_tokens_from_file(file_path):
@@ -97,21 +96,27 @@ def _delete_file(file_path):
raise
-class CredentialType(Enum): # pylint: disable=too-few-public-methods
- management = CLOUD.endpoints.management
- rbac = CLOUD.endpoints.active_directory_graph_resource_id
+def get_credential_types(cli_ctx):
+
+ class CredentialType(Enum): # pylint: disable=too-few-public-methods
+ cloud = get_active_cloud(cli_ctx)
+ management = cli_ctx.cloud.endpoints.management
+ rbac = cli_ctx.cloud.endpoints.active_directory_graph_resource_id
+
+ return CredentialType
class Profile(object):
- def __init__(self, storage=None, auth_ctx_factory=None, use_global_creds_cache=True):
+ def __init__(self, cli_ctx, storage=None, auth_ctx_factory=None, use_global_creds_cache=True):
+ self.cli_ctx = cli_ctx
self._storage = storage or ACCOUNT
self.auth_ctx_factory = auth_ctx_factory or _AUTH_CTX_FACTORY
if use_global_creds_cache:
- self._creds_cache = _GLOBAL_CREDS_CACHE
+ self._creds_cache = CredsCache(cli_ctx, _AUTH_CTX_FACTORY, async_persist=True)
else:
self._creds_cache = CredsCache(self.auth_ctx_factory, async_persist=False)
- self._management_resource_uri = CLOUD.endpoints.management
- self._ad_resource_uri = CLOUD.endpoints.active_directory_resource_id
+ self._management_resource_uri = cli_ctx.cloud.endpoints.management
+ self._ad_resource_uri = cli_ctx.cloud.endpoints.active_directory_resource_id
self._msi_creds = None
def find_subscriptions_on_login(self,
@@ -127,7 +132,8 @@ def find_subscriptions_on_login(self,
subscriptions = []
if not subscription_finder:
- subscription_finder = SubscriptionFinder(self.auth_ctx_factory,
+ subscription_finder = SubscriptionFinder(self.cli_ctx,
+ self.auth_ctx_factory,
self._creds_cache.adal_token_cache)
if interactive:
subscriptions = subscription_finder.find_through_interactive_flow(
@@ -157,13 +163,12 @@ def find_subscriptions_on_login(self,
if allow_no_subscriptions:
t_list = [s.tenant_id for s in subscriptions]
bare_tenants = [t for t in subscription_finder.tenants if t not in t_list]
- subscriptions = Profile._build_tenant_level_accounts(bare_tenants)
+ profile = Profile(self.cli_ctx)
+ subscriptions = profile._build_tenant_level_accounts(bare_tenants) # pylint: disable=protected-access
if not subscriptions:
return []
- consolidated = Profile._normalize_properties(subscription_finder.user_id,
- subscriptions,
- is_service_principal)
+ consolidated = self._normalize_properties(subscription_finder.user_id, subscriptions, is_service_principal)
self._set_subscriptions(consolidated)
# use deepcopy as we don't want to persist these changes to file.
@@ -176,9 +181,9 @@ def find_subscriptions_in_cloud_console(self, tokens):
arm_token_decoded = jwt.decode(arm_token, verify=False, algorithms=['RS256'])
tenant = arm_token_decoded['tid']
user_id = arm_token_decoded['unique_name'].split('#')[-1]
- subscription_finder = SubscriptionFinder(self.auth_ctx_factory, None)
+ subscription_finder = SubscriptionFinder(self.cli_ctx, self.auth_ctx_factory, None)
subscriptions = subscription_finder.find_from_raw_token(tenant, arm_token)
- consolidated = Profile._normalize_properties(user_id, subscriptions, is_service_principal=False)
+ consolidated = self._normalize_properties(user_id, subscriptions, is_service_principal=False)
self._set_subscriptions(consolidated)
# construct token entries to cache
@@ -194,7 +199,7 @@ def find_subscriptions_in_cloud_console(self, tokens):
'expiresIn': '2700',
'expiresOn': str(datetime.now() + timedelta(seconds=2700)),
'userId': t['unique_name'].split('#')[-1],
- '_authority': CLOUD.endpoints.active_directory.rstrip('/') + '/' + t['tid'],
+ '_authority': self.cli_ctx.cloud.endpoints.active_directory.rstrip('/') + '/' + t['tid'],
'resource': t['aud'],
'isMRRT': True,
'accessToken': tokens[decoded_tokens.index(t)],
@@ -215,8 +220,7 @@ def find_subscriptions_in_cloud_console(self, tokens):
return deepcopy(consolidated)
- @staticmethod
- def _normalize_properties(user, subscriptions, is_service_principal):
+ def _normalize_properties(self, user, subscriptions, is_service_principal):
consolidated = []
for s in subscriptions:
consolidated.append({
@@ -229,15 +233,14 @@ def _normalize_properties(user, subscriptions, is_service_principal):
},
_IS_DEFAULT_SUBSCRIPTION: False,
_TENANT_ID: s.tenant_id,
- _ENVIRONMENT_NAME: CLOUD.name
+ _ENVIRONMENT_NAME: self.cli_ctx.cloud.name
})
return consolidated
- @staticmethod
- def _build_tenant_level_accounts(tenants):
+ def _build_tenant_level_accounts(self, tenants):
result = []
for t in tenants:
- s = Profile._new_account()
+ s = self._new_account()
s.id = '/subscriptions/' + t
s.subscription = t
s.tenant_id = t
@@ -245,27 +248,26 @@ def _build_tenant_level_accounts(tenants):
result.append(s)
return result
- @staticmethod
- def _new_account():
- from azure.cli.core.profiles import get_sdk, ResourceType
- SubscriptionType, StateType = get_sdk(ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS,
- 'Subscription', 'SubscriptionState', mod='models')
+ def _new_account(self):
+ from azure.cli.core.profiles import ResourceType, get_sdk
+ SubscriptionType, StateType = get_sdk(self.cli_ctx, ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS, 'Subscription',
+ 'SubscriptionState', mod='models')
s = SubscriptionType()
s.state = StateType.enabled
return s
def find_subscriptions_in_vm_with_msi(self, msi_port):
import jwt
- _, token, _ = Profile.get_msi_token(CLOUD.endpoints.active_directory_resource_id, msi_port)
+ _, token, _ = Profile.get_msi_token(self.cli_ctx.cloud.endpoints.active_directory_resource_id, msi_port)
logger.info('MSI: token was retrieved. Now trying to initialize local accounts...')
decode = jwt.decode(token, verify=False, algorithms=['RS256'])
tenant = decode['tid']
- subscription_finder = SubscriptionFinder(self.auth_ctx_factory, None)
+ subscription_finder = SubscriptionFinder(self.cli_ctx, self.auth_ctx_factory, None)
subscriptions = subscription_finder.find_from_raw_token(tenant, token)
if not subscriptions:
raise CLIError('No access was configured for the VM, hence no subscriptions were found')
- consolidated = Profile._normalize_properties('VM', subscriptions, is_service_principal=True)
+ consolidated = self._normalize_properties('VM', subscriptions, is_service_principal=True)
for s in consolidated:
# use a special name to trigger a special token acquisition
s[_SUBSCRIPTION_NAME] = "{}{}".format(_MSI_ACCOUNT_NAME, msi_port)
@@ -276,7 +278,7 @@ def _set_subscriptions(self, new_subscriptions, merge=True):
existing_ones = self.load_cached_subscriptions(all_clouds=True)
active_one = next((x for x in existing_ones if x.get(_IS_DEFAULT_SUBSCRIPTION)), None)
active_subscription_id = active_one[_SUBSCRIPTION_ID] if active_one else None
- active_cloud = get_active_cloud()
+ active_cloud = self.cli_ctx.cloud
default_sub_id = None
# merge with existing ones
@@ -304,7 +306,7 @@ def _set_subscriptions(self, new_subscriptions, merge=True):
new_active_one[_IS_DEFAULT_SUBSCRIPTION] = True
default_sub_id = new_active_one[_SUBSCRIPTION_ID]
- set_cloud_subscription(active_cloud.name, default_sub_id)
+ set_cloud_subscription(self.cli_ctx, active_cloud.name, default_sub_id)
self._storage[_SUBSCRIPTIONS] = subscriptions
@staticmethod
@@ -315,7 +317,7 @@ def _pick_working_subscription(subscriptions):
def set_active_subscription(self, subscription): # take id or name
subscriptions = self.load_cached_subscriptions(all_clouds=True)
- active_cloud = get_active_cloud()
+ active_cloud = self.cli_ctx.cloud
subscription = subscription.lower()
result = [x for x in subscriptions
if subscription in [x[_SUBSCRIPTION_ID].lower(),
@@ -330,7 +332,7 @@ def set_active_subscription(self, subscription): # take id or name
s[_IS_DEFAULT_SUBSCRIPTION] = False
result[0][_IS_DEFAULT_SUBSCRIPTION] = True
- set_cloud_subscription(active_cloud.name, result[0][_SUBSCRIPTION_ID])
+ set_cloud_subscription(self.cli_ctx, active_cloud.name, result[0][_SUBSCRIPTION_ID])
self._storage[_SUBSCRIPTIONS] = subscriptions
def logout(self, user_or_sp):
@@ -348,7 +350,7 @@ def logout_all(self):
def load_cached_subscriptions(self, all_clouds=False):
subscriptions = self._storage.get(_SUBSCRIPTIONS) or []
- active_cloud = get_active_cloud()
+ active_cloud = self.cli_ctx.cloud
cached_subscriptions = [sub for sub in subscriptions
if all_clouds or sub[_ENVIRONMENT_NAME] == active_cloud.name]
# use deepcopy as we don't want to persist these changes to file.
@@ -384,11 +386,12 @@ def get_access_token_for_resource(self, username, tenant, resource):
username, tenant, resource)
return access_token
- def get_login_credentials(self, resource=CLOUD.endpoints.active_directory_resource_id,
+ def get_login_credentials(self, resource=None,
subscription_id=None):
account = self.get_subscription(subscription_id)
user_type = account[_USER_ENTITY][_USER_TYPE]
username_or_sp_id = account[_USER_ENTITY][_USER_NAME]
+ resource = resource or self.cli_ctx.cloud.endpoints.active_directory_resource_id
def _retrieve_token():
if account[_SUBSCRIPTION_NAME].startswith(_MSI_ACCOUNT_NAME):
@@ -405,11 +408,12 @@ def _retrieve_token():
str(account[_SUBSCRIPTION_ID]),
str(account[_TENANT_ID]))
- def get_refresh_token(self, resource=CLOUD.endpoints.active_directory_resource_id,
+ def get_refresh_token(self, resource=None,
subscription=None):
account = self.get_subscription(subscription)
user_type = account[_USER_ENTITY][_USER_TYPE]
username_or_sp_id = account[_USER_ENTITY][_USER_NAME]
+ resource = resource or self.cli_ctx.cloud.endpoints.active_directory_resource_id
if user_type == _USER:
_, _, token_entry = self._creds_cache.retrieve_token_for_user(
@@ -419,10 +423,11 @@ def get_refresh_token(self, resource=CLOUD.endpoints.active_directory_resource_i
sp_secret = self._creds_cache.retrieve_secret_of_service_principal(username_or_sp_id)
return username_or_sp_id, sp_secret, None, str(account[_TENANT_ID])
- def get_raw_token(self, resource, subscription=None):
+ def get_raw_token(self, resource=None, subscription=None):
account = self.get_subscription(subscription)
user_type = account[_USER_ENTITY][_USER_TYPE]
username_or_sp_id = account[_USER_ENTITY][_USER_NAME]
+ resource = resource or self.cli_ctx.cloud.endpoints.active_directory_resource_id
if user_type == _USER:
creds = self._creds_cache.retrieve_token_for_user(username_or_sp_id,
@@ -441,7 +446,8 @@ def refresh_accounts(self, subscription_finder=None):
from azure.cli.core._debug import allow_debug_adal_connection
allow_debug_adal_connection()
- subscription_finder = subscription_finder or SubscriptionFinder(self.auth_ctx_factory,
+ subscription_finder = subscription_finder or SubscriptionFinder(self.cli_ctx,
+ self.auth_ctx_factory,
self._creds_cache.adal_token_cache)
refreshed_list = set()
result = []
@@ -469,14 +475,14 @@ def refresh_accounts(self, subscription_finder=None):
if not subscriptions:
if s[_SUBSCRIPTION_NAME] == _TENANT_LEVEL_ACCOUNT_NAME:
- subscriptions = Profile._build_tenant_level_accounts([s[_TENANT_ID]])
+ subscriptions = self._build_tenant_level_accounts([s[_TENANT_ID]])
if not subscriptions:
continue
- consolidated = Profile._normalize_properties(subscription_finder.user_id,
- subscriptions,
- is_service_principal)
+ consolidated = self._normalize_properties(subscription_finder.user_id,
+ subscriptions,
+ is_service_principal)
result += consolidated
if self._creds_cache.adal_token_cache.has_state_changed:
@@ -524,7 +530,7 @@ def get_sp_auth_info(self, subscription_id=None, name=None, password=None, cert_
endpoint_mappings['management'] = 'managementEndpointUrl'
for e in endpoint_mappings:
- result[endpoint_mappings[e]] = getattr(CLOUD.endpoints, e)
+ result[endpoint_mappings[e]] = getattr(get_active_cloud(self.cli_ctx).endpoints, e)
return result
def get_installation_id(self):
@@ -573,22 +579,23 @@ def get_msi_token(resource, port):
class SubscriptionFinder(object):
'''finds all subscriptions for a user or service principal'''
- def __init__(self, auth_context_factory, adal_token_cache, arm_client_factory=None):
+ def __init__(self, cli_ctx, auth_context_factory, adal_token_cache, arm_client_factory=None):
self._adal_token_cache = adal_token_cache
self._auth_context_factory = auth_context_factory
self.user_id = None # will figure out after log user in
+ self.cli_ctx = cli_ctx
def create_arm_client_factory(credentials):
if arm_client_factory:
return arm_client_factory(credentials)
from azure.cli.core.profiles._shared import get_client_class
- from azure.cli.core.profiles import get_api_version, ResourceType
+ from azure.cli.core.profiles import ResourceType, get_api_version
from azure.cli.core._debug import change_ssl_cert_verification
client_type = get_client_class(ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS)
- api_version = get_api_version(ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS)
+ api_version = get_api_version(cli_ctx, ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS)
return change_ssl_cert_verification(client_type(credentials, api_version=api_version,
- base_url=CLOUD.endpoints.resource_manager))
+ base_url=self.cli_ctx.cloud.endpoints.resource_manager))
self._arm_client_factory = create_arm_client_factory
self.tenants = []
@@ -637,7 +644,7 @@ def find_from_raw_token(self, tenant, token):
def _create_auth_context(self, tenant, use_token_cache=True):
token_cache = self._adal_token_cache if use_token_cache else None
- return self._auth_context_factory(tenant, token_cache)
+ return self._auth_context_factory(self.cli_ctx, tenant, token_cache)
def _find_using_common_tenant(self, access_token, resource):
import adal
@@ -684,7 +691,7 @@ class CredsCache(object):
also be handled
'''
- def __init__(self, auth_ctx_factory=None, async_persist=True):
+ def __init__(self, cli_ctx, auth_ctx_factory=None, async_persist=True):
# AZURE_ACCESS_TOKEN_FILE is used by Cloud Console and not meant to be user configured
self._token_file = (os.environ.get('AZURE_ACCESS_TOKEN_FILE', None) or
os.path.join(get_config_dir(), 'accessTokens.json'))
@@ -693,6 +700,7 @@ def __init__(self, auth_ctx_factory=None, async_persist=True):
self._adal_token_cache_attr = None
self._should_flush_to_disk = False
self._async_persist = async_persist
+ self._ctx = cli_ctx
if async_persist:
import atexit
atexit.register(self.flush_to_disk)
@@ -719,7 +727,7 @@ def flush_to_disk(self):
cred_file.write(json.dumps(all_creds))
def retrieve_token_for_user(self, username, tenant, resource):
- context = self._auth_ctx_factory(tenant, cache=self.adal_token_cache)
+ context = self._auth_ctx_factory(self._ctx, tenant, cache=self.adal_token_cache)
token_entry = context.acquire_token(resource, username, _CLIENT_ID)
if not token_entry:
raise CLIError("Could not retrieve token from local cache.{}".format(
@@ -735,7 +743,7 @@ def retrieve_token_for_service_principal(self, sp_id, resource):
if not matched:
raise CLIError("Please run 'az account set' to select active account.")
cred = matched[0]
- context = self._auth_ctx_factory(cred[_SERVICE_PRINCIPAL_TENANT], None)
+ context = self._auth_ctx_factory(self._ctx, cred[_SERVICE_PRINCIPAL_TENANT], None)
sp_auth = ServicePrincipalAuth(cred.get(_ACCESS_TOKEN, None) or
cred.get(_SERVICE_PRINCIPAL_CERT_FILE, None))
token_entry = sp_auth.acquire_token(context, resource, sp_id)
@@ -812,9 +820,6 @@ def remove_all_cached_creds(self):
_delete_file(self._token_file)
-_GLOBAL_CREDS_CACHE = CredsCache(_AUTH_CTX_FACTORY, async_persist=True)
-
-
class ServicePrincipalAuth(object):
def __init__(self, password_arg_value):
diff --git a/src/azure-cli-core/azure/cli/core/adal_authentication.py b/src/azure-cli-core/azure/cli/core/adal_authentication.py
index 16ea110e8ee..70aec0f025b 100644
--- a/src/azure-cli-core/azure/cli/core/adal_authentication.py
+++ b/src/azure-cli-core/azure/cli/core/adal_authentication.py
@@ -8,7 +8,8 @@
from msrest.authentication import Authentication
-from azure.cli.core.util import CLIError, in_cloud_console
+from knack.util import CLIError
+from azure.cli.core.util import in_cloud_console
class AdalAuthentication(Authentication): # pylint: disable=too-few-public-methods
@@ -44,7 +45,7 @@ def signed_session(self):
@staticmethod
def _log_hostname():
import socket
- import azure.cli.core.azlogging as azlogging
- logger = azlogging.get_az_logger(__name__)
+ from knack.log import get_logger
+ logger = get_logger(__name__)
logger.warning("A Cloud Shell credential problem occurred. When you report the issue with the error "
"below, please mention the hostname '%s'", socket.gethostname())
diff --git a/src/azure-cli-core/azure/cli/core/application.py b/src/azure-cli-core/azure/cli/core/application.py
deleted file mode 100644
index e0645962363..00000000000
--- a/src/azure-cli-core/azure/cli/core/application.py
+++ /dev/null
@@ -1,382 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from collections import defaultdict
-import sys
-import os
-import uuid
-import argparse
-from azure.cli.core.parser import AzCliCommandParser, enable_autocomplete
-from azure.cli.core._output import CommandResultItem
-import azure.cli.core.extensions
-import azure.cli.core._help as _help
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import todict, truncate_text, CLIError, read_file_content
-from azure.cli.core._config import az_config
-import azure.cli.core.commands.progress as progress
-
-import azure.cli.core.telemetry as telemetry
-
-logger = azlogging.get_az_logger(__name__)
-
-ARGCOMPLETE_ENV_NAME = '_ARGCOMPLETE'
-
-
-class Configuration(object): # pylint: disable=too-few-public-methods
- """The configuration object tracks session specific data such
- as output formats, available commands etc.
- """
-
- def __init__(self):
- self.output_format = None
-
- def get_command_table(self, argv=None): # pylint: disable=no-self-use
- import azure.cli.core.commands as commands
- # Find the first noun on the command line and only load commands from that
- # module to improve startup time.
- result = commands.get_command_table(argv[0].lower() if argv else None)
-
- if argv is None:
- return result
-
- command_tree = Configuration.build_command_tree(result)
- matches = Configuration.find_matches(argv, command_tree)
- return dict(matches)
-
- def load_params(self, command): # pylint: disable=no-self-use
- import azure.cli.core.commands as commands
- commands.load_params(command)
-
- @staticmethod
- def build_command_tree(command_table):
- '''From the list of commands names, find the exact match or
- set of potential matches that we are looking for
- '''
- result = {}
- for command in command_table:
- index = result
- parts = command.split()
- for part in parts[:-1]:
- if part not in index:
- index[part] = {}
- index = index[part]
- index[parts[-1]] = command_table[command]
-
- return result
-
- @staticmethod
- def find_matches(parts, commandtable):
- from .commands import CliCommand
-
- best_match = commandtable
- command_so_far = ""
- try:
- for part in parts:
- best_match = best_match[part.lower()]
- command_so_far = ' '.join((command_so_far, part))
- if isinstance(best_match, CliCommand):
- break
- except KeyError:
- pass
-
- if isinstance(best_match, CliCommand):
- yield (best_match.name, best_match)
- else:
- for part in best_match:
- cmd = best_match[part]
- if isinstance(cmd, CliCommand):
- yield (cmd.name, cmd)
- else:
- dummy_cmdname = ' '.join((command_so_far, part))
- yield (dummy_cmdname, CliCommand(dummy_cmdname, None))
-
-
-class Application(object):
-
- TRANSFORM_RESULT = 'Application.TransformResults'
- FILTER_RESULT = 'Application.FilterResults'
- GLOBAL_PARSER_CREATED = 'GlobalParser.Created'
- COMMAND_PARSER_LOADED = 'CommandParser.Loaded'
- COMMAND_PARSER_PARSING = 'CommandParser.Parsing'
- COMMAND_PARSER_PARSED = 'CommandParser.Parsed'
- COMMAND_TABLE_LOADED = 'CommandTable.Loaded'
- COMMAND_TABLE_PARAMS_LOADED = 'CommandTableParams.Loaded'
-
- def __init__(self, configuration=None):
- self._event_handlers = defaultdict(lambda: [])
- self.session = {
- 'headers': {}, # the x-ms-client-request-id is generated before a command is to execute
- 'command': 'unknown',
- 'command_extension_name': None,
- 'completer_active': ARGCOMPLETE_ENV_NAME in os.environ,
- 'query_active': False,
- 'az_interactive_active': False
- }
-
- # Register presence of and handlers for global parameters
- self.register(self.GLOBAL_PARSER_CREATED, Application._register_builtin_arguments)
- self.register(self.COMMAND_PARSER_PARSED, self._handle_builtin_arguments)
-
- # Let other extensions make their presence known
- azure.cli.core.extensions.register_extensions(self)
-
- self.global_parser = AzCliCommandParser(prog='az', add_help=False)
- global_group = self.global_parser.add_argument_group('global', 'Global Arguments')
- self.raise_event(self.GLOBAL_PARSER_CREATED, global_group=global_group)
-
- self.parser = AzCliCommandParser(prog='az', parents=[self.global_parser])
- self.configuration = configuration
- self.progress_controller = progress.ProgressHook()
-
- def get_progress_controller(self, det=False):
- self.progress_controller.init_progress(progress.get_progress_view(det))
- return self.progress_controller
-
- def initialize(self, configuration):
- self.configuration = configuration
-
- def execute(self, unexpanded_argv): # pylint: disable=too-many-statements
- self.refresh_request_id()
-
- argv = Application._expand_file_prefixed_files(unexpanded_argv)
- command_table = self.configuration.get_command_table(argv)
- self.raise_event(self.COMMAND_TABLE_LOADED, command_table=command_table)
- self.parser.load_command_table(command_table)
- self.raise_event(self.COMMAND_PARSER_LOADED, parser=self.parser)
-
- if not argv:
- enable_autocomplete(self.parser)
- az_subparser = self.parser.subparsers[tuple()]
- _help.show_welcome(az_subparser)
-
- # TODO: Question, is this needed?
- telemetry.set_command_details('az')
- telemetry.set_success(summary='welcome')
-
- return None
-
- if argv[0].lower() == 'help':
- argv[0] = '--help'
-
- # Rudimentary parsing to get the command
- nouns = []
- for i, current in enumerate(argv):
- try:
- if current[0] == '-':
- break
- except IndexError:
- pass
- argv[i] = current.lower()
- nouns.append(argv[i])
-
- command = ' '.join(nouns)
-
- if argv[-1] in ('--help', '-h') or command in command_table:
- self.configuration.load_params(command)
- self.raise_event(self.COMMAND_TABLE_PARAMS_LOADED, command_table=command_table)
- self.parser.load_command_table(command_table)
-
- if self.session['completer_active']:
- enable_autocomplete(self.parser)
-
- self.raise_event(self.COMMAND_PARSER_PARSING, argv=argv)
- args = self.parser.parse_args(argv)
-
- self.raise_event(self.COMMAND_PARSER_PARSED, command=args.command, args=args)
- results = []
- for expanded_arg in _explode_list_args(args):
- self.session['command'] = expanded_arg.command
- try:
- _validate_arguments(expanded_arg)
- except CLIError:
- raise
- except: # pylint: disable=bare-except
- err = sys.exc_info()[1]
- getattr(expanded_arg, '_parser', self.parser).validation_error(str(err))
-
- # Consider - we are using any args that start with an underscore (_) as 'private'
- # arguments and remove them from the arguments that we pass to the actual function.
- # This does not feel quite right.
- params = dict([(key, value)
- for key, value in expanded_arg.__dict__.items()
- if not key.startswith('_')])
- params.pop('subcommand', None)
- params.pop('func', None)
- params.pop('command', None)
-
- command_source = command_table[command].command_source
- telemetry.set_command_details(expanded_arg.command, self.configuration.output_format,
- [p for p in unexpanded_argv if p.startswith('-')],
- extension_name=command_source.extension_name if command_source else None)
- if command_source:
- self.session['command_extension_name'] = command_source.extension_name
-
- result = expanded_arg.func(params)
- result = todict(result)
- results.append(result)
-
- if len(results) == 1:
- results = results[0]
-
- event_data = {'result': results}
- self.raise_event(self.TRANSFORM_RESULT, event_data=event_data)
- self.raise_event(self.FILTER_RESULT, event_data=event_data)
-
- return CommandResultItem(event_data['result'],
- table_transformer=command_table[args.command].table_transformer,
- is_query_active=self.session['query_active'])
-
- def raise_event(self, name, **kwargs):
- '''Raise the event `name`.
- '''
- data = truncate_text(str(kwargs), width=500)
- logger.debug("Application event '%s' with event data %s", name, data)
- for func in list(self._event_handlers[name]): # Make copy in case handler modifies the list
- func(**kwargs)
-
- def register(self, name, handler):
- '''Register a callable that will be called when the
- event `name` is raised.
-
- param: name: The name of the event
- param: handler: Function that takes two parameters;
- name: name of the event raised
- event_data: `dict` with event specific data.
- '''
- self._event_handlers[name].append(handler)
- logger.debug("Registered application event handler '%s' at %s", name, handler)
-
- def remove(self, name, handler):
- '''Remove a callable that is registered to be called when the
- event `name` is raised.
-
- param: name: The name of the event
- param: handler: Function that takes two parameters;
- name: name of the event raised
- event_data: `dict` with event specific data.
- '''
- self._event_handlers[name].remove(handler)
- logger.debug("Removed application event handler '%s' at %s", name, handler)
-
- def refresh_request_id(self):
- """Assign a new randome GUID as x-ms-client-request-id
-
- The method must be invoked before each command execution in order to ensure unique client side request ID is
- generated.
- """
- self.session['headers']['x-ms-client-request-id'] = str(uuid.uuid1())
-
- @staticmethod
- def _register_builtin_arguments(**kwargs):
- global_group = kwargs['global_group']
- global_group.add_argument('--output', '-o', dest='_output_format',
- choices=['json', 'tsv', 'table', 'jsonc'],
- default=az_config.get('core', 'output', fallback='json'),
- help='Output format',
- type=str.lower)
- # The arguments for verbosity don't get parsed by argparse but we add it here for help.
- global_group.add_argument('--verbose', dest='_log_verbosity_verbose', action='store_true',
- help='Increase logging verbosity. Use --debug for full debug logs.')
- global_group.add_argument('--debug', dest='_log_verbosity_debug', action='store_true',
- help='Increase logging verbosity to show all debug logs.')
-
- @staticmethod
- def _maybe_load_file(arg):
- ix = arg.find('@')
- if ix == -1: # no @ found
- return arg
-
- poss_file = arg[ix + 1:]
- if not poss_file: # if nothing after @ then it can't be a file
- return arg
- elif ix == 0:
- return Application._load_file(poss_file)
-
- # if @ not at the start it can't be a file
- return arg
-
- @staticmethod
- def _expand_file_prefix(arg):
- arg_split = arg.split('=', 1)
- try:
- return '='.join([arg_split[0], Application._maybe_load_file(arg_split[1])])
- except IndexError:
- return Application._maybe_load_file(arg_split[0])
-
- @staticmethod
- def _expand_file_prefixed_files(argv):
- return list([Application._expand_file_prefix(arg) for arg in argv])
-
- @staticmethod
- def _load_file(path):
- if path == '-':
- content = sys.stdin.read()
- else:
- content = read_file_content(os.path.expanduser(path),
- allow_binary=True)
-
- return content[0:-1] if content and content[-1] == '\n' else content
-
- def _handle_builtin_arguments(self, **kwargs):
- args = kwargs['args']
- self.configuration.output_format = args._output_format # pylint: disable=protected-access
- del args._output_format
-
-
-def _validate_arguments(args, **_):
- for validator in getattr(args, '_validators', []):
- validator(args)
- try:
- delattr(args, '_validators')
- except AttributeError:
- pass
-
-
-def _explode_list_args(args):
- '''Iterate through each attribute member of args and create a copy with
- the IterateValues 'flattened' to only contain a single value
-
- Ex.
- { a1:'x', a2:IterateValue(['y', 'z']) } => [{ a1:'x', a2:'y'),{ a1:'x', a2:'z'}]
- '''
- list_args = {argname: argvalue for argname, argvalue in vars(args).items()
- if isinstance(argvalue, IterateValue)}
- if not list_args:
- yield args
- else:
- values = list(zip(*list_args.values()))
- for key in list_args:
- delattr(args, key)
-
- for value in values:
- new_ns = argparse.Namespace(**vars(args))
- for key_index, key in enumerate(list_args.keys()):
- setattr(new_ns, key, value[key_index])
- yield new_ns
-
-
-class IterateAction(argparse.Action): # pylint: disable=too-few-public-methods
- '''Action used to collect argument values in an IterateValue list
- The application will loop through each value in the IterateValue
- and execeute the associated handler for each
- '''
-
- def __call__(self, parser, namespace, values, option_string=None):
- setattr(namespace, self.dest, IterateValue(values))
-
-
-class IterateValue(list):
- '''Marker class to indicate that, when found as a value in the parsed namespace
- from argparse, the handler should be invoked once per value in the list with all
- other values in the parsed namespace frozen.
-
- Typical use is to allow multiple ID parameter to a show command etc.
- '''
- pass
-
-
-APPLICATION = Application()
-
-telemetry.set_application(APPLICATION, ARGCOMPLETE_ENV_NAME)
diff --git a/src/azure-cli-core/azure/cli/core/azlogging.py b/src/azure-cli-core/azure/cli/core/azlogging.py
index 3db79362ae2..38263248fd8 100644
--- a/src/azure-cli-core/azure/cli/core/azlogging.py
+++ b/src/azure-cli-core/azure/cli/core/azlogging.py
@@ -6,7 +6,7 @@
"""
Logging for Azure CLI
-- Loggers: The name of the parent logger is defined in AZ_ROOT_LOGGER_NAME variable. All the loggers used in the CLI
+- Loggers: The name of the parent logger is defined in CLI_LOGGER_NAME variable. All the loggers used in the CLI
must descends from it, otherwise it won't benefit from the logger handlers, filters and level configuration.
- Handlers: There are two default handlers will be added to both CLI parent logger and root logger. One is a colorized
@@ -23,166 +23,11 @@
"""
-import os
-import platform
-import logging
-import logging.handlers
-import colorama
+from knack.log import CLILogging
+CLI_LOGGER_NAME = 'az'
-AZ_ROOT_LOGGER_NAME = 'az'
+class AzCliLogging(CLILogging):
-class AzLoggingLevelManager(object): # pylint: disable=too-few-public-methods
- CONSOLE_LOG_CONFIGS = [
- # (default)
- {
- AZ_ROOT_LOGGER_NAME: logging.WARNING,
- 'root': logging.CRITICAL,
- },
- # --verbose
- {
- AZ_ROOT_LOGGER_NAME: logging.INFO,
- 'root': logging.CRITICAL,
- },
- # --debug
- {
- AZ_ROOT_LOGGER_NAME: logging.DEBUG,
- 'root': logging.DEBUG,
- }]
-
- def __init__(self, argv):
- self.user_setting_level = self.determine_verbose_level(argv)
-
- def get_user_setting_level(self, logger):
- logger_name = logger.name if logger.name in (AZ_ROOT_LOGGER_NAME, 'root') else 'root'
- return self.CONSOLE_LOG_CONFIGS[self.user_setting_level][logger_name]
-
- @classmethod
- def determine_verbose_level(cls, argv):
- # Get verbose level by reading the arguments.
- # Remove any consumed args.
- verbose_level = 0
- i = 0
- while i < len(argv):
- arg = argv[i]
- if arg in ['--verbose']:
- verbose_level += 1
- argv.pop(i)
- elif arg in ['--debug']:
- verbose_level += 2
- argv.pop(i)
- else:
- i += 1
-
- # Use max verbose level if too much verbosity specified.
- return min(verbose_level, len(cls.CONSOLE_LOG_CONFIGS) - 1)
-
-
-class ColorizedStreamHandler(logging.StreamHandler):
- COLOR_MAP = {
- logging.CRITICAL: colorama.Fore.RED,
- logging.ERROR: colorama.Fore.RED,
- logging.WARNING: colorama.Fore.YELLOW,
- logging.INFO: colorama.Fore.GREEN,
- logging.DEBUG: colorama.Fore.CYAN,
- }
-
- # Formats for console logging if coloring is enabled or not.
- # Show the level name if coloring is disabled (e.g. INFO).
- # Also, Root logger should show the logger name.
- CONSOLE_LOG_FORMAT = {
- 'az': {
- True: '%(message)s',
- False: '%(levelname)s: %(message)s',
- },
- 'root': {
- True: '%(name)s : %(message)s',
- False: '%(levelname)s: %(name)s : %(message)s',
- }
- }
-
- def __init__(self, stream, logger, level_manager):
- super(ColorizedStreamHandler, self).__init__(stream)
-
- if platform.system() == 'Windows':
- self.stream = colorama.AnsiToWin32(self.stream).stream
-
- fmt = self.CONSOLE_LOG_FORMAT[logger.name][self.enable_color]
- super(ColorizedStreamHandler, self).setFormatter(logging.Formatter(fmt))
- super(ColorizedStreamHandler, self).setLevel(level_manager.get_user_setting_level(logger))
-
- def format(self, record):
- msg = logging.StreamHandler.format(self, record)
- if self.enable_color:
- try:
- msg = '{}{}{}'.format(self.COLOR_MAP[record.levelno], msg, colorama.Style.RESET_ALL)
- except KeyError:
- pass
- return msg
-
- @property
- def enable_color(self):
- try:
- # Color if tty stream available
- if self.stream.isatty():
- return True
- except (AttributeError, ValueError):
- pass
-
- return False
-
-
-class AzRotatingFileHandler(logging.handlers.RotatingFileHandler):
- from azure.cli.core._environment import get_config_dir
- from azure.cli.core._config import az_config
-
- ENABLED = az_config.getboolean('logging', 'enable_log_file', fallback=False)
- LOGFILE_DIR = os.path.expanduser(az_config.get('logging', 'log_dir',
- fallback=os.path.join(get_config_dir(), 'logs')))
-
- def __init__(self):
- logging_file_path = self.get_log_file_path()
- super(AzRotatingFileHandler, self).__init__(logging_file_path, maxBytes=10 * 1024 * 1024, backupCount=5)
- self.setFormatter(logging.Formatter('%(process)d : %(asctime)s : %(levelname)s : %(name)s : %(message)s'))
- self.setLevel(logging.DEBUG)
-
- def get_log_file_path(self):
- if not os.path.isdir(self.LOGFILE_DIR):
- os.makedirs(self.LOGFILE_DIR)
- return os.path.join(self.LOGFILE_DIR, 'az.log')
-
-
-def configure_logging(argv, stream=None):
- """
- Configuring the loggers and their handlers. In the production setting, the method is a single entry.
- However, when running in automation, the method could be entered multiple times. Therefore all the handlers will be
- cleared first.
- """
- level_manager = AzLoggingLevelManager(argv)
- loggers = [logging.getLogger(), logging.getLogger(AZ_ROOT_LOGGER_NAME)]
-
- logging.getLogger(AZ_ROOT_LOGGER_NAME).propagate = False
-
- for logger in loggers:
- # Set the levels of the loggers to lowest level.Handlers can override by choosing a higher level.
- logger.setLevel(logging.DEBUG)
-
- # clear the handlers. the handlers are not closed as this only effect the automation scenarios.
- kept = [h for h in logger.handlers if not isinstance(h, (ColorizedStreamHandler, AzRotatingFileHandler))]
- logger.handlers = kept
-
- # add colorized console handler
- logger.addHandler(ColorizedStreamHandler(stream, logger, level_manager))
-
- # add file handler
- if AzRotatingFileHandler.ENABLED:
- logger.addHandler(AzRotatingFileHandler())
-
- if AzRotatingFileHandler.ENABLED:
- get_az_logger(__name__).debug("File logging enabled - Writing logs to '%s'.", AzRotatingFileHandler.LOGFILE_DIR)
-
-
-def get_az_logger(module_name=None):
- return logging.getLogger(AZ_ROOT_LOGGER_NAME).getChild(module_name) if module_name else logging.getLogger(
- AZ_ROOT_LOGGER_NAME)
+ pass
diff --git a/src/azure-cli-core/azure/cli/core/cloud.py b/src/azure-cli-core/azure/cli/core/cloud.py
index 8913b52bc5a..395ebe63e15 100644
--- a/src/azure-cli-core/azure/cli/core/cloud.py
+++ b/src/azure-cli-core/azure/cli/core/cloud.py
@@ -7,15 +7,16 @@
from pprint import pformat
from six.moves import configparser
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core._config import \
- (GLOBAL_CONFIG_DIR, GLOBAL_CONFIG_PATH, set_global_config_value, get_config_parser)
-from azure.cli.core.util import CLIError
from azure.cli.core.profiles import API_PROFILES
+from azure.cli.core._config import GLOBAL_CONFIG_DIR
-CLOUD_CONFIG_FILE = os.path.join(GLOBAL_CONFIG_DIR, 'clouds.config')
+from knack.log import get_logger
+from knack.util import CLIError
+from knack.config import get_config_parser
+
+logger = get_logger(__name__)
-logger = azlogging.get_az_logger(__name__)
+CLOUD_CONFIG_FILE = os.path.join(GLOBAL_CONFIG_DIR, 'clouds.config')
class CloudNotRegisteredException(Exception):
@@ -219,30 +220,41 @@ def __str__(self):
KNOWN_CLOUDS = [AZURE_PUBLIC_CLOUD, AZURE_CHINA_CLOUD, AZURE_US_GOV_CLOUD, AZURE_GERMAN_CLOUD]
-def _set_active_cloud(cloud_name):
- set_global_config_value('cloud', 'name', cloud_name)
+def _set_active_cloud(cli_ctx, cloud_name):
+ cli_ctx.config.set_value('cloud', 'name', cloud_name)
-def get_active_cloud_name():
- global_config = get_config_parser()
- global_config.read(GLOBAL_CONFIG_PATH)
+def get_active_cloud_name(cli_ctx):
try:
- return global_config.get('cloud', 'name')
+ return cli_ctx.config.config_parser.get('cloud', 'name')
except (configparser.NoOptionError, configparser.NoSectionError):
- _set_active_cloud(AZURE_PUBLIC_CLOUD.name)
+ _set_active_cloud(cli_ctx, AZURE_PUBLIC_CLOUD.name)
return AZURE_PUBLIC_CLOUD.name
-def _get_cloud(cloud_name):
- return next((x for x in get_clouds() if x.name == cloud_name), None)
+def _get_cloud(cli_ctx, cloud_name):
+ return next((x for x in get_clouds(cli_ctx) if x.name == cloud_name), None)
-def get_custom_clouds():
+def get_custom_clouds(cli_ctx):
known_cloud_names = [c.name for c in KNOWN_CLOUDS]
- return [c for c in get_clouds() if c.name not in known_cloud_names]
+ return [c for c in get_clouds(cli_ctx) if c.name not in known_cloud_names]
+
+
+def init_known_clouds(force=False):
+ config = get_config_parser()
+ config.read(CLOUD_CONFIG_FILE)
+ stored_cloud_names = config.sections()
+ for c in KNOWN_CLOUDS:
+ if force or c.name not in stored_cloud_names:
+ _config_add_cloud(config, c, overwrite=force)
+ if not os.path.isdir(GLOBAL_CONFIG_DIR):
+ os.makedirs(GLOBAL_CONFIG_DIR)
+ with open(CLOUD_CONFIG_FILE, 'w') as configfile:
+ config.write(configfile)
-def get_clouds():
+def get_clouds(cli_ctx):
clouds = []
config = get_config_parser()
# Start off with known clouds and apply config file on top of current config
@@ -268,7 +280,7 @@ def get_clouds():
# If management endpoint not set, use resource manager endpoint
c.endpoints.management = c.endpoints.resource_manager
clouds.append(c)
- active_cloud_name = get_active_cloud_name()
+ active_cloud_name = get_active_cloud_name(cli_ctx)
for c in clouds:
if c.name == active_cloud_name:
c.is_active = True
@@ -276,21 +288,21 @@ def get_clouds():
return clouds
-def get_cloud(cloud_name):
- cloud = _get_cloud(cloud_name)
+def get_cloud(cli_ctx, cloud_name):
+ cloud = _get_cloud(cli_ctx, cloud_name)
if not cloud:
raise CloudNotRegisteredException(cloud_name)
return cloud
-def get_active_cloud():
+def get_active_cloud(cli_ctx):
try:
- return get_cloud(get_active_cloud_name())
+ return get_cloud(cli_ctx, get_active_cloud_name(cli_ctx))
except CloudNotRegisteredException as err:
logger.warning(err)
logger.warning("Resetting active cloud to'%s'.", AZURE_PUBLIC_CLOUD.name)
- _set_active_cloud(AZURE_PUBLIC_CLOUD.name)
- return get_cloud(AZURE_PUBLIC_CLOUD.name)
+ _set_active_cloud(cli_ctx, AZURE_PUBLIC_CLOUD.name)
+ return get_cloud(cli_ctx, AZURE_PUBLIC_CLOUD.name)
def get_cloud_subscription(cloud_name):
@@ -302,8 +314,8 @@ def get_cloud_subscription(cloud_name):
return None
-def set_cloud_subscription(cloud_name, subscription):
- if not _get_cloud(cloud_name):
+def set_cloud_subscription(cli_ctx, cloud_name, subscription):
+ if not _get_cloud(cli_ctx, cloud_name):
raise CloudNotRegisteredException(cloud_name)
config = get_config_parser()
config.read(CLOUD_CONFIG_FILE)
@@ -324,10 +336,10 @@ def set_cloud_subscription(cloud_name, subscription):
config.write(configfile)
-def _set_active_subscription(cloud_name):
+def _set_active_subscription(cli_ctx, cloud_name):
from azure.cli.core._profile import (Profile, _ENVIRONMENT_NAME, _SUBSCRIPTION_ID,
_STATE, _SUBSCRIPTION_NAME)
- profile = Profile()
+ profile = Profile(cli_ctx)
subscription_to_use = get_cloud_subscription(cloud_name) or \
next((s[_SUBSCRIPTION_ID] for s in profile.load_cached_subscriptions() # noqa
if s[_STATE] == 'Enabled'),
@@ -347,14 +359,14 @@ def _set_active_subscription(cloud_name):
logger.warning("Use 'az account set' to set the active subscription.")
-def switch_active_cloud(cloud_name):
- if get_active_cloud_name() == cloud_name:
+def switch_active_cloud(cli_ctx, cloud_name):
+ if cli_ctx.cloud.name == cloud_name:
return
- if not _get_cloud(cloud_name):
+ if not _get_cloud(cli_ctx, cloud_name):
raise CloudNotRegisteredException(cloud_name)
- _set_active_cloud(cloud_name)
+ _set_active_cloud(cli_ctx, cloud_name)
logger.warning("Switched active cloud to '%s'.", cloud_name)
- _set_active_subscription(cloud_name)
+ _set_active_subscription(cli_ctx, cloud_name)
def _config_add_cloud(config, cloud, overwrite=False):
@@ -384,22 +396,22 @@ def _save_cloud(cloud, overwrite=False):
config.write(configfile)
-def add_cloud(cloud):
- if _get_cloud(cloud.name):
+def add_cloud(cli_ctx, cloud):
+ if _get_cloud(cli_ctx, cloud.name):
raise CloudAlreadyRegisteredException(cloud.name)
_save_cloud(cloud)
-def update_cloud(cloud):
- if not _get_cloud(cloud.name):
+def update_cloud(cli_ctx, cloud):
+ if not _get_cloud(cli_ctx, cloud.name):
raise CloudNotRegisteredException(cloud.name)
_save_cloud(cloud, overwrite=True)
-def remove_cloud(cloud_name):
- if not _get_cloud(cloud_name):
+def remove_cloud(cli_ctx, cloud_name):
+ if not _get_cloud(cli_ctx, cloud_name):
raise CloudNotRegisteredException(cloud_name)
- if cloud_name == get_active_cloud_name():
+ if cloud_name == cli_ctx.cloud.name:
raise CannotUnregisterCloudException("The cloud '{}' cannot be unregistered "
"as it's currently active.".format(cloud_name))
is_known_cloud = next((x for x in KNOWN_CLOUDS if x.name == cloud_name), None)
diff --git a/src/azure-cli-core/azure/cli/core/commands/__init__.py b/src/azure-cli-core/azure/cli/core/commands/__init__.py
index 5e959686998..c5512e066d9 100644
--- a/src/azure-cli-core/azure/cli/core/commands/__init__.py
+++ b/src/azure-cli-core/azure/cli/core/commands/__init__.py
@@ -8,137 +8,304 @@
import datetime
import json
import logging as logs
-import pkgutil
-import re
import sys
import time
-import timeit
-import traceback
-from collections import OrderedDict, defaultdict
from importlib import import_module
+from knack.arguments import CLICommandArgument
+from knack.commands import CLICommand
+from knack.invocation import CommandInvoker
+from knack.log import get_logger
+
import six
-from six import string_types, reraise
-import azure.cli.core.azlogging as azlogging
+from azure.cli.core import AzCommandsLoader
import azure.cli.core.telemetry as telemetry
-from azure.cli.core.util import CLIError
-from azure.cli.core.prompting import prompt_y_n, NoTTYException
-from azure.cli.core._config import az_config, DEFAULTS_SECTION
-from azure.cli.core.profiles import ResourceType, supported_api_version
-from azure.cli.core.profiles._shared import get_versioned_sdk_path
-from azure.cli.core.extension import (get_extension_names, get_extension_path,
- get_extension_modname, EXTENSIONS_MOD_PREFIX)
-from ._introspection import (extract_args_from_signature,
- extract_full_summary_from_signature)
+logger = get_logger(__name__)
-logger = azlogging.get_az_logger(__name__)
+CONFIRM_PARAM_NAME = 'yes'
# 1 hour in milliseconds
DEFAULT_QUERY_TIME_RANGE = 3600000
+BLACKLISTED_MODS = ['context', 'shell', 'documentdb']
+
-CONFIRM_PARAM_NAME = 'yes'
+def _explode_list_args(args):
+ '''Iterate through each attribute member of args and create a copy with
+ the IterateValues 'flattened' to only contain a single value
-BLACKLISTED_MODS = ['context', 'shell', 'documentdb']
+ Ex.
+ { a1:'x', a2:IterateValue(['y', 'z']) } => [{ a1:'x', a2:'y'),{ a1:'x', a2:'z'}]
+ '''
+ from azure.cli.core.commands.validators import IterateValue
+ import argparse
+ list_args = {argname: argvalue for argname, argvalue in vars(args).items()
+ if isinstance(argvalue, IterateValue)}
+ if not list_args:
+ yield args
+ else:
+ values = list(zip(*list_args.values()))
+ for key in list_args:
+ delattr(args, key)
+
+ for value in values:
+ new_ns = argparse.Namespace(**vars(args))
+ for key_index, key in enumerate(list_args.keys()):
+ setattr(new_ns, key, value[key_index])
+ yield new_ns
+
+
+def _expand_file_prefixed_files(args):
+ def _load_file(path):
+ from azure.cli.core.util import read_file_content
+ if path == '-':
+ content = sys.stdin.read()
+ else:
+ import os
+ content = read_file_content(os.path.expanduser(path), allow_binary=True)
+ return content[0:-1] if content and content[-1] == '\n' else content
-class VersionConstraint(object):
- def __init__(self, resource_type, min_api=None, max_api=None):
- self._type = resource_type
- self._min_api = min_api
- self._max_api = max_api
+ def _maybe_load_file(arg):
+ ix = arg.find('@')
+ if ix == -1: # no @ found
+ return arg
- def __enter__(self):
- return self
+ poss_file = arg[ix + 1:]
+ if not poss_file: # if nothing after @ then it can't be a file
+ return arg
+ elif ix == 0:
+ return _load_file(poss_file)
- def __exit__(self, exc_type, exc_val, exc_tb):
- pass
+ # if @ not at the start it can't be a file
+ return arg
- def register_cli_argument(self, *args, **kwargs):
- if supported_api_version(self._type, min_api=self._min_api, max_api=self._max_api):
- register_cli_argument(*args, **kwargs)
- else:
- from azure.cli.core.commands.parameters import ignore_type
- kwargs = {}
- args = tuple([args[0], args[1], ignore_type])
- register_cli_argument(*args, **kwargs)
-
- def register_extra_cli_argument(self, *args, **kwargs):
- if supported_api_version(self._type, min_api=self._min_api, max_api=self._max_api):
- register_extra_cli_argument(*args, **kwargs)
-
- def cli_command(self, *args, **kwargs):
- if supported_api_version(self._type, min_api=self._min_api, max_api=self._max_api):
- cli_command(*args, **kwargs)
-
-
-class CliArgumentType(object): # pylint: disable=too-few-public-methods
- REMOVE = '---REMOVE---'
-
- def __init__(self, overrides=None, **kwargs):
- if isinstance(overrides, str):
- raise ValueError("Overrides has to be a CliArgumentType (cannot be a string)")
- options_list = kwargs.get('options_list', None)
- if options_list and isinstance(options_list, str):
- kwargs['options_list'] = [options_list]
- self.settings = {}
- self.update(overrides, **kwargs)
-
- def update(self, other=None, **kwargs):
- if other:
- self.settings.update(**other.settings)
- self.settings.update(**kwargs)
-
-
-class CliCommandArgument(object): # pylint: disable=too-few-public-methods
- _NAMED_ARGUMENTS = ('options_list', 'validator', 'completer', 'id_part', 'arg_group')
-
- def __init__(self, dest=None, argtype=None, **kwargs):
- self.type = CliArgumentType(overrides=argtype, **kwargs)
- if dest:
- self.type.update(dest=dest)
-
- # We'll do an early fault detection to find any instances where we have inconsistent
- # set of parameters for argparse
- if not self.options_list and 'required' in self.options: # pylint: disable=access-member-before-definition
- raise ValueError(message="You can't specify both required and an options_list")
- if not self.options.get('dest', False):
- raise ValueError('Missing dest')
- if not self.options_list: # pylint: disable=access-member-before-definition
- self.options_list = ('--{}'.format(self.options['dest'].replace('_', '-')),)
-
- def __getattr__(self, name):
- if name in self._NAMED_ARGUMENTS:
- return self.type.settings.get(name, None)
- elif name == 'name':
- return self.type.settings.get('dest', None)
- elif name == 'options':
- return {key: value for key, value in self.type.settings.items()
- if key != 'options' and key not in self._NAMED_ARGUMENTS and
- not value == CliArgumentType.REMOVE}
- elif name == 'choices':
- return self.type.settings.get(name, None)
- else:
- raise AttributeError(message=name)
+ def _expand_file_prefix(arg):
+ arg_split = arg.split('=', 1)
+ try:
+ return '='.join([arg_split[0], _maybe_load_file(arg_split[1])])
+ except IndexError:
+ return _maybe_load_file(arg_split[0])
+
+ return list([_expand_file_prefix(arg) for arg in args])
+
+
+def _pre_command_table_create(cli_ctx, args):
+
+ cli_ctx.refresh_request_id()
+ return _expand_file_prefixed_files(args)
+
+
+class AzCliCommand(CLICommand):
+
+ def __init__(self, loader, name, handler, description=None, table_transformer=None,
+ arguments_loader=None, description_loader=None,
+ formatter_class=None, deprecate_info=None, validator=None, **kwargs):
+ super(AzCliCommand, self).__init__(loader.cli_ctx, name, handler, description=description,
+ table_transformer=table_transformer, arguments_loader=arguments_loader,
+ description_loader=description_loader, formatter_class=formatter_class,
+ deprecate_info=deprecate_info, validator=validator, **kwargs)
+ self.loader = loader
+ self.command_source = None
+ self.no_wait_param = kwargs.get('no_wait_param', None)
+ self.exception_handler = kwargs.get('exception_handler', None)
+ self.confirmation = kwargs.get('confirmation', False)
+ self.command_kwargs = kwargs
+
+ def _resolve_default_value_from_cfg_file(self, arg, overrides):
+ from azure.cli.core._config import DEFAULTS_SECTION
+
+ if not hasattr(arg.type, 'required_tooling'):
+ required = arg.type.settings.get('required', False)
+ setattr(arg.type, 'required_tooling', required)
+ if 'configured_default' in overrides.settings:
+ def_config = overrides.settings.pop('configured_default', None)
+ setattr(arg.type, 'default_name_tooling', def_config)
+ # same blunt mechanism like we handled id-parts, for create command, no name default
+ if self.name.split()[-1] == 'create' and overrides.settings.get('metavar', None) == 'NAME':
+ return
+ setattr(arg.type, 'configured_default_applied', True)
+ config_value = self.cli_ctx.config.get(DEFAULTS_SECTION, def_config, None)
+ if config_value:
+ logger.warning("Using default '%s' for arg %s", config_value, arg.name)
+ overrides.settings['default'] = config_value
+ overrides.settings['required'] = False
+
+ def load_arguments(self):
+ if self.arguments_loader:
+ cmd_args = self.arguments_loader()
+ if self.no_wait_param:
+ cmd_args.append(
+ (self.no_wait_param,
+ CLICommandArgument(self.no_wait_param, options_list=['--no-wait'], action='store_true',
+ help='Do not wait for the long running operation to finish.')))
+ if self.confirmation:
+ cmd_args.append(
+ (CONFIRM_PARAM_NAME,
+ CLICommandArgument(CONFIRM_PARAM_NAME, options_list=['--yes', '-y'], action='store_true',
+ help='Do not prompt for confirmation.')))
+ self.arguments.update(cmd_args)
+
+ def update_argument(self, param_name, argtype):
+ arg = self.arguments[param_name]
+ self._resolve_default_value_from_cfg_file(arg, argtype)
+ arg.type.update(other=argtype)
+
+ def __call__(self, *args, **kwargs):
+
+ cmd_args = args[0]
+
+ if self.command_source and isinstance(self.command_source, ExtensionCommandSource) and\
+ self.command_source.overrides_command:
+ logger.warning(self.command_source.get_command_warn_msg())
+ if self.deprecate_info is not None:
+ text = 'This command is deprecating and will be removed in future releases.'
+ if self.deprecate_info:
+ text += " Use '{}' instead.".format(self.deprecate_info)
+ logger.warning(text)
+
+ confirm = CONFIRM_PARAM_NAME in cmd_args and not cmd_args.get(CONFIRM_PARAM_NAME) and \
+ not self.cli_ctx.config.getboolean('core', 'disable_confirm_prompt', fallback=False)
+
+ if confirm and not AzCommandsLoader.user_confirmed(confirm, cmd_args):
+ from knack.events import EVENT_COMMAND_CANCELLED
+ from knack.util import CLIError
+
+ self.cli_ctx.raise_event(EVENT_COMMAND_CANCELLED, command=self.name, command_args=cmd_args)
+ raise CLIError('Operation cancelled.')
+
+ return self.handler(*args, **kwargs)
+
+ def get_api_version(self, resource_type=None):
+ resource_type = resource_type or self.command_kwargs.get('resource_type', None)
+ return self.loader.get_api_version(resource_type=resource_type)
+
+ def supported_api_version(self, resource_type=None, min_api=None, max_api=None):
+ resource_type = resource_type or self.command_kwargs.get('resource_type', None)
+ return self.loader.supported_api_version(resource_type=resource_type, min_api=min_api, max_api=max_api)
+
+ def get_models(self, *attr_args, **kwargs):
+ resource_type = kwargs.get('resource_type', self.command_kwargs.get('resource_type', None))
+ return self.loader.get_sdk(*attr_args, resource_type=resource_type, mod='models')
+
+
+# pylint: disable=too-few-public-methods
+class AzCliCommandInvoker(CommandInvoker):
- def __setattr__(self, name, value):
- if name == 'type':
- return super(CliCommandArgument, self).__setattr__(name, value)
- self.type.settings[name] = value
+ # pylint: disable=too-many-statements
+ def execute(self, args):
+ import knack.events as events
+ from knack.util import CommandResultItem, todict
+
+ # TODO: Can't simply be invoked as an event because args are transformed
+ args = _pre_command_table_create(self.cli_ctx, args)
+
+ self.cli_ctx.raise_event(events.EVENT_INVOKER_PRE_CMD_TBL_CREATE, args=args)
+ cmd_tbl = self.commands_loader.load_command_table(args)
+ command = self._rudimentary_get_command(args)
+ try:
+ cmd_tbl = {command: self.commands_loader.command_table[command]} if command else cmd_tbl
+ except KeyError:
+ pass
+ self.commands_loader.load_arguments(command)
+ self.commands_loader._update_command_definitions() # pylint: disable=protected-access
+ self.cli_ctx.raise_event(events.EVENT_INVOKER_POST_CMD_TBL_CREATE, cmd_tbl=cmd_tbl)
+ self.parser.cli_ctx = self.cli_ctx
+ self.parser.load_command_table(cmd_tbl)
+ self.cli_ctx.raise_event(events.EVENT_INVOKER_CMD_TBL_LOADED, cmd_tbl=cmd_tbl, parser=self.parser)
+
+ if not args:
+ self.cli_ctx.completion.enable_autocomplete(self.parser)
+ subparser = self.parser.subparsers[tuple()]
+ self.help.show_welcome(subparser)
+
+ # TODO: No event in base with which to target
+ telemetry.set_command_details('az')
+ telemetry.set_success(summary='welcome')
+ return None
+
+ if args[0].lower() == 'help':
+ args[0] = '--help'
+
+ self.cli_ctx.completion.enable_autocomplete(self.parser)
+
+ self.cli_ctx.raise_event(events.EVENT_INVOKER_PRE_PARSE_ARGS, args=args)
+ parsed_args = self.parser.parse_args(args)
+ self.cli_ctx.raise_event(events.EVENT_INVOKER_POST_PARSE_ARGS, command=parsed_args.command, args=parsed_args)
+
+ # TODO: This fundamentally alters the way Knack.invocation works here. Cannot be customized
+ # with an event. Would need to be customized via inheritance.
+ results = []
+ for expanded_arg in _explode_list_args(parsed_args):
+
+ cmd = expanded_arg.func
+ if hasattr(expanded_arg, 'cmd'):
+ expanded_arg.cmd = cmd
+
+ self._validation(expanded_arg)
+
+ self.data['command'] = expanded_arg.command
+
+ params = self._filter_params(expanded_arg)
+
+ command_source = cmd_tbl[command].command_source
+ telemetry.set_command_details(self.data['command'],
+ self.data['output'],
+ [p for p in args if p.startswith('-')],
+ extension_name=command_source.extension_name if command_source else None)
+
+ try:
+ result = cmd(params)
+ no_wait_param = cmd.no_wait_param
+ if no_wait_param and getattr(expanded_arg, no_wait_param, False):
+ result = None
+
+ # TODO: Not sure how to make this actually work with the TRANSFORM event...
+ transform_op = cmd.command_kwargs.get('transform', None)
+ if transform_op:
+ result = transform_op(result)
+
+ if _is_poller(result):
+ result = LongRunningOperation(self.cli_ctx, 'Starting {}'.format(cmd.name))(result)
+ elif _is_paged(result):
+ result = list(result)
+
+ result = todict(result)
+ event_data = {'result': result}
+ self.cli_ctx.raise_event(events.EVENT_INVOKER_TRANSFORM_RESULT, event_data=event_data)
+ self.cli_ctx.raise_event(events.EVENT_INVOKER_FILTER_RESULT, event_data=event_data)
+ result = event_data['result']
+
+ if result:
+ results.append(result)
+
+ except Exception as ex: # pylint: disable=broad-except
+ if cmd.exception_handler:
+ cmd.exception_handler(ex)
+ return
+ else:
+ six.reraise(*sys.exc_info())
+
+ if results and len(results) == 1:
+ results = results[0]
+
+ return CommandResultItem(results,
+ table_transformer=cmd_tbl[parsed_args.command].table_transformer,
+ is_query_active=self.data['query_active'])
class LongRunningOperation(object): # pylint: disable=too-few-public-methods
- def __init__(self, start_msg='', finish_msg='',
+ def __init__(self, cli_ctx, start_msg='', finish_msg='',
poller_done_interval_ms=1000.0, progress_controller=None):
+ self.cli_ctx = cli_ctx
self.start_msg = start_msg
self.finish_msg = finish_msg
self.poller_done_interval_ms = poller_done_interval_ms
- from azure.cli.core.application import APPLICATION
- self.progress_controller = progress_controller or APPLICATION.get_progress_controller()
+ self.progress_controller = progress_controller or cli_ctx.get_progress_controller()
self.deploy_dict = {}
self.last_progress_report = datetime.datetime.now()
@@ -159,7 +326,7 @@ def _generate_template_progress(self, correlation_id): # pylint: disable=no-sel
odata_filters = "{} and {} eq '{}'".format(odata_filters, 'correlationId', correlation_id)
- activity_log = get_mgmt_service_client(MonitorClient).activity_logs.list(filter=odata_filters)
+ activity_log = get_mgmt_service_client(self.cli_ctx, MonitorClient).activity_logs.list(filter=odata_filters)
results = []
max_events = 50 # default max value for events in list_activity_log
@@ -209,12 +376,12 @@ def _generate_template_progress(self, correlation_id): # pylint: disable=no-sel
def __call__(self, poller):
from msrest.exceptions import ClientException
+
correlation_message = ''
self.progress_controller.begin()
correlation_id = None
- az_logger = azlogging.get_az_logger()
- is_verbose = any(handler.level <= logs.INFO for handler in az_logger.handlers)
+ is_verbose = any(handler.level <= logs.INFO for handler in logger.handlers)
while not poller.done():
self.progress_controller.add(message='Running')
@@ -271,19 +438,33 @@ def __call__(self, result):
return result
-class CommandTable(dict):
- """A command table is a dictionary of name -> CliCommand
- instances.
+def _load_command_loader(loader, args, name, prefix):
+ module = import_module(prefix + name)
+ loader_cls = getattr(module, 'COMMAND_LOADER_CLS', None)
+ command_table = {}
+
+ if loader_cls:
+ command_loader = loader_cls(cli_ctx=loader.cli_ctx)
+ if command_loader.supported_api_version():
+ command_table = command_loader.load_command_table(args)
+ if command_table:
+ for cmd in list(command_table.keys()):
+ # TODO: If desired to for extension to patch module, this can be uncommented
+ # if loader.cmd_to_loader_map.get(cmd):
+ # loader.cmd_to_loader_map[cmd].append(command_loader)
+ # else:
+ loader.cmd_to_loader_map[cmd] = [command_loader]
+ else:
+ logger.debug("Command module '%s' is missing `COMMAND_LOADER_CLS` entry.", name)
+ return command_table
+
- The `name` is the space separated name - i.e. 'vm list'
- """
+def _load_extension_command_loader(loader, args, ext):
+ return _load_command_loader(loader, args, ext, '')
- def register(self, name):
- def wrapped(func):
- cli_command(self, name, func)
- return func
- return wrapped
+def _load_module_command_loader(loader, args, mod):
+ return _load_command_loader(loader, args, mod, 'azure.cli.command_modules.')
class ExtensionCommandSource(object):
@@ -307,243 +488,6 @@ def get_command_warn_msg(self):
return "This command is from an extension."
-class CliCommand(object): # pylint:disable=too-many-instance-attributes
-
- def __init__(self, name, handler, description=None, table_transformer=None,
- arguments_loader=None, description_loader=None,
- formatter_class=None, deprecate_info=None):
- self.name = name
- self.handler = handler
- self.help = None
- self.description = description_loader \
- if description_loader and CliCommand._should_load_description() \
- else description
- self.arguments = {}
- self.arguments_loader = arguments_loader
- self.table_transformer = table_transformer
- self.formatter_class = formatter_class
- self.deprecate_info = deprecate_info
- self.command_source = None
-
- @staticmethod
- def _should_load_description():
- from azure.cli.core.application import APPLICATION
- return not APPLICATION.session['completer_active']
-
- def load_arguments(self):
- if self.arguments_loader:
- self.arguments.update(self.arguments_loader())
-
- def add_argument(self, param_name, *option_strings, **kwargs):
- dest = kwargs.pop('dest', None)
- argument = CliCommandArgument(
- dest or param_name, options_list=option_strings, **kwargs)
- self.arguments[param_name] = argument
-
- def update_argument(self, param_name, argtype):
- arg = self.arguments[param_name]
- self._resolve_default_value_from_cfg_file(arg, argtype)
- arg.type.update(other=argtype)
-
- def _resolve_default_value_from_cfg_file(self, arg, overrides):
- if not hasattr(arg.type, 'required_tooling'):
- required = arg.type.settings.get('required', False)
- setattr(arg.type, 'required_tooling', required)
- if 'configured_default' in overrides.settings:
- def_config = overrides.settings.pop('configured_default', None)
- setattr(arg.type, 'default_name_tooling', def_config)
- # same blunt mechanism like we handled id-parts, for create command, no name default
- if (self.name.split()[-1] == 'create' and
- overrides.settings.get('metavar', None) == 'NAME'):
- return
- setattr(arg.type, 'configured_default_applied', True)
- config_value = az_config.get(DEFAULTS_SECTION, def_config, None)
- if config_value:
- overrides.settings['default'] = config_value
- overrides.settings['required'] = False
-
- def execute(self, **kwargs):
- return self(**kwargs)
-
- def __call__(self, *args, **kwargs):
- if self.command_source and isinstance(self.command_source, ExtensionCommandSource) and\
- self.command_source.overrides_command:
- logger.warning(self.command_source.get_command_warn_msg())
- if self.deprecate_info is not None:
- text = 'This command is deprecating and will be removed in future releases.'
- if self.deprecate_info:
- text += " Use '{}' instead.".format(self.deprecate_info)
- logger.warning(text)
- return self.handler(*args, **kwargs)
-
-
-command_table = CommandTable()
-
-# Map to determine what module a command was registered in
-command_module_map = {}
-
-# Map to determine which extension a module belongs to
-mod_to_ext_map = {}
-
-
-def load_params(command):
- try:
- command_table[command].load_arguments()
- except KeyError:
- return
- command_module = command_module_map.get(command, None)
- if not command_module:
- logger.debug("Unable to load commands for '%s'. No module in command module map found.",
- command)
- return
- last_dot_index = command_module.rfind('.')
- if last_dot_index == -1:
- module_to_load = command_module
- else:
- module_to_load = command_module[:last_dot_index]
- import_module(module_to_load).load_params(command)
- _apply_parameter_info(command, command_table[command])
-
-
-def _get_command_table_from_extensions():
- extensions = get_extension_names()
- if extensions:
- logger.debug("Found {} extension(s): {}".format(len(extensions), extensions))
- for ext_name in extensions:
- ext_dir = get_extension_path(ext_name)
- sys.path.append(ext_dir)
- try:
- ext_mod = get_extension_modname(ext_dir=ext_dir)
- # Add to the map. This needs to happen before we load commands as registering a command
- # from an extension requires this map to be up-to-date.
- mod_to_ext_map[ext_mod] = ext_name
- start_time = timeit.default_timer()
- import_module(ext_mod).load_commands()
- elapsed_time = timeit.default_timer() - start_time
- logger.debug("Loaded extension '%s' in %.3f seconds.", ext_name, elapsed_time)
- except Exception: # pylint: disable=broad-except
- logger.warning("Unable to load extension '%s'. Use --debug for more information.", ext_name)
- logger.debug(traceback.format_exc())
-
-
-def get_command_table(module_name=None):
- '''Loads command table(s)
- When `module_name` is specified, only commands from that module will be loaded.
- If the module is not found, all commands are loaded.
- '''
- loaded = False
- # TODO remove module_name != 'sf' once old sf module is deprecated from the repo
- if module_name and module_name not in BLACKLISTED_MODS and module_name != 'sf':
- try:
- import_module('azure.cli.command_modules.' + module_name).load_commands()
- logger.debug("Successfully loaded command table from module '%s'.", module_name)
- loaded = True
- except ImportError:
- logger.debug("Loading all installed modules as module with name '%s' not found.", module_name)
- except Exception: # pylint: disable=broad-except
- pass
- if not loaded:
- installed_command_modules = []
- try:
- mods_ns_pkg = import_module('azure.cli.command_modules')
- installed_command_modules = [modname for _, modname, _ in
- pkgutil.iter_modules(mods_ns_pkg.__path__)
- if modname not in BLACKLISTED_MODS]
- except ImportError:
- pass
- logger.debug('Installed command modules %s', installed_command_modules)
- cumulative_elapsed_time = 0
- for mod in installed_command_modules:
- try:
- start_time = timeit.default_timer()
- import_module('azure.cli.command_modules.' + mod).load_commands()
- elapsed_time = timeit.default_timer() - start_time
- logger.debug("Loaded module '%s' in %.3f seconds.", mod, elapsed_time)
- cumulative_elapsed_time += elapsed_time
- except Exception as ex: # pylint: disable=broad-except
- # Changing this error message requires updating CI script that checks for failed
- # module loading.
- logger.error("Error loading command module '%s'", mod)
- telemetry.set_exception(exception=ex, fault_type='module-load-error-' + mod,
- summary='Error loading module: {}'.format(mod))
- logger.debug(traceback.format_exc())
- logger.debug("Loaded all modules in %.3f seconds. "
- "(note: there's always an overhead with the first module loaded)",
- cumulative_elapsed_time)
- try:
- # We always load extensions even if the appropriate module has been loaded
- # as an extension could override the commands already loaded.
- _get_command_table_from_extensions()
- except Exception: # pylint: disable=broad-except
- logger.warning("Unable to load extensions. Use --debug for more information.")
- logger.debug(traceback.format_exc())
- _update_command_definitions(command_table)
- ordered_commands = OrderedDict(command_table)
- return ordered_commands
-
-
-def register_cli_argument(scope, dest, arg_type=None, **kwargs):
- '''Specify CLI specific metadata for a given argument for a given scope.
- '''
- _cli_argument_registry.register_cli_argument(scope, dest, arg_type, **kwargs)
-
-
-def register_extra_cli_argument(command, dest, **kwargs):
- '''Register extra parameters for the given command. Typically used to augment auto-command built
- commands to add more parameters than the specific SDK method introspected.
- '''
- _cli_extra_argument_registry[command][dest] = CliCommandArgument(dest, **kwargs)
-
-
-def cli_command(module_name, name, operation,
- client_factory=None, transform=None, table_transformer=None,
- no_wait_param=None, confirmation=None, exception_handler=None,
- formatter_class=None, deprecate_info=None,
- resource_type=None, max_api=None, min_api=None):
- """ Registers a default Azure CLI command. These commands require no special parameters. """
- if resource_type and (max_api or min_api):
- if not supported_api_version(resource_type, min_api=min_api, max_api=max_api):
- return
-
- cmd = create_command(module_name, name, operation, transform, table_transformer,
- client_factory, no_wait_param, confirmation=confirmation,
- exception_handler=exception_handler,
- formatter_class=formatter_class,
- deprecate_info=deprecate_info)
-
- # Set the command source as we have the current command table and are about to add the command
- if module_name and module_name.startswith(EXTENSIONS_MOD_PREFIX):
- ext_mod = module_name.split('.')[0]
- cmd.command_source = ExtensionCommandSource(extension_name=mod_to_ext_map.get(ext_mod, None))
- if name in command_table:
- cmd.command_source.overrides_command = True
-
- command_table[name] = cmd
-
-
-def get_op_handler(operation):
- """ Import and load the operation handler """
- # Patch the unversioned sdk path to include the appropriate API version for the
- # resource type in question.
- from azure.cli.core._profile import CLOUD
- import types
-
- for rt in ResourceType:
- if operation.startswith(rt.import_prefix):
- operation = operation.replace(rt.import_prefix,
- get_versioned_sdk_path(CLOUD.profile, rt))
- try:
- mod_to_import, attr_path = operation.split('#')
- op = import_module(mod_to_import)
- for part in attr_path.split('.'):
- op = getattr(op, part)
- if isinstance(op, types.FunctionType):
- return op
- return six.get_method_function(op)
- except (ValueError, AttributeError):
- raise ValueError("The operation '{}' is invalid.".format(operation))
-
-
def _load_client_exception_class():
# Since loading msrest is expensive, we avoid it until we have to
from msrest.exceptions import ClientException
@@ -579,141 +523,3 @@ def _is_poller(obj):
from msrestazure.azure_operation import AzureOperationPoller
return isinstance(obj, AzureOperationPoller)
return False
-
-
-def create_command(module_name, name, operation,
- transform_result, table_transformer, client_factory,
- no_wait_param=None, confirmation=None, exception_handler=None,
- formatter_class=None, deprecate_info=None):
- if not isinstance(operation, string_types):
- raise ValueError("Operation must be a string. Got '{}'".format(operation))
-
- def _execute_command(kwargs):
- if confirmation \
- and not kwargs.get(CONFIRM_PARAM_NAME) \
- and not az_config.getboolean('core', 'disable_confirm_prompt', fallback=False) \
- and not _user_confirmed(confirmation, kwargs):
- raise CLIError('Operation cancelled.')
-
- client = client_factory(kwargs) if client_factory else None
- try:
- op = get_op_handler(operation)
- try:
- result = op(client, **kwargs) if client else op(**kwargs)
- if no_wait_param and kwargs.get(no_wait_param, None):
- return None # return None for 'no-wait'
-
- # apply results transform if specified
- if transform_result:
- return transform_result(result)
-
- # otherwise handle based on return type of results
- if _is_poller(result):
- return LongRunningOperation('Starting {}'.format(name))(result)
- elif _is_paged(result):
- return list(result)
- return result
- except Exception as ex: # pylint: disable=broad-except
- if exception_handler:
- exception_handler(ex)
- else:
- reraise(*sys.exc_info())
- except _load_validation_error_class() as validation_error:
- fault_type = name.replace(' ', '-') + '-validation-error'
- telemetry.set_exception(validation_error, fault_type=fault_type,
- summary='SDK validation error')
- raise CLIError(validation_error)
- except _load_client_exception_class() as client_exception:
- fault_type = name.replace(' ', '-') + '-client-error'
- telemetry.set_exception(client_exception, fault_type=fault_type,
- summary='Unexpected client exception during command creation')
- raise client_exception
- except _load_azure_exception_class() as azure_exception:
- fault_type = name.replace(' ', '-') + '-service-error'
- telemetry.set_exception(azure_exception, fault_type=fault_type,
- summary='Unexpected azure exception during command creation')
- message = re.search(r"([A-Za-z\t .])+", str(azure_exception))
- raise CLIError('\n{}'.format(message.group(0) if message else str(azure_exception)))
- except ValueError as value_error:
- fault_type = name.replace(' ', '-') + '-value-error'
- telemetry.set_exception(value_error, fault_type=fault_type,
- summary='Unexpected value exception during command creation')
- raise CLIError(value_error)
-
- command_module_map[name] = module_name
- name = ' '.join(name.split())
-
- def arguments_loader():
- return extract_args_from_signature(get_op_handler(operation), no_wait_param=no_wait_param)
-
- def description_loader():
- return extract_full_summary_from_signature(get_op_handler(operation))
-
- cmd = CliCommand(name, _execute_command, table_transformer=table_transformer,
- arguments_loader=arguments_loader, description_loader=description_loader,
- formatter_class=formatter_class, deprecate_info=deprecate_info)
- if confirmation:
- cmd.add_argument(CONFIRM_PARAM_NAME, '--yes', '-y',
- action='store_true',
- help='Do not prompt for confirmation')
- return cmd
-
-
-def _user_confirmed(confirmation, command_args):
- if callable(confirmation):
- return confirmation(command_args)
- try:
- if isinstance(confirmation, string_types):
- return prompt_y_n(confirmation)
- return prompt_y_n('Are you sure you want to perform this operation?')
- except NoTTYException:
- logger.warning('Unable to prompt for confirmation as no tty available. Use --yes.')
- return False
-
-
-def _get_cli_argument(command, argname):
- return _cli_argument_registry.get_cli_argument(command, argname)
-
-
-def _get_cli_extra_arguments(command):
- return _cli_extra_argument_registry[command].items()
-
-
-class _ArgumentRegistry(object):
- def __init__(self):
- self.arguments = defaultdict(lambda: {})
-
- def register_cli_argument(self, scope, dest, argtype, **kwargs):
- argument = CliArgumentType(overrides=argtype,
- **kwargs)
- self.arguments[scope][dest] = argument
-
- def get_cli_argument(self, command, name):
- parts = command.split()
- result = CliArgumentType()
- for index in range(0, len(parts) + 1):
- probe = ' '.join(parts[0:index])
- override = self.arguments.get(probe, {}).get(name, None)
- if override:
- result.update(override)
- return result
-
-
-_cli_argument_registry = _ArgumentRegistry()
-_cli_extra_argument_registry = defaultdict(lambda: {})
-
-
-def _apply_parameter_info(command_name, command):
- for argument_name in command.arguments:
- overrides = _get_cli_argument(command_name, argument_name)
- command.update_argument(argument_name, overrides)
-
- # Add any arguments explicitly registered for this command
- for argument_name, argument_definition in _get_cli_extra_arguments(command_name):
- command.arguments[argument_name] = argument_definition
- command.update_argument(argument_name, _get_cli_argument(command_name, argument_name))
-
-
-def _update_command_definitions(command_table_to_update):
- for command_name, command in command_table_to_update.items():
- _apply_parameter_info(command_name, command)
diff --git a/src/azure-cli-core/azure/cli/core/commands/_introspection.py b/src/azure-cli-core/azure/cli/core/commands/_introspection.py
deleted file mode 100644
index a547636a75f..00000000000
--- a/src/azure-cli-core/azure/cli/core/commands/_introspection.py
+++ /dev/null
@@ -1,127 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-import inspect
-import re
-
-
-def extract_full_summary_from_signature(operation):
- """ Extract the summary from the docstring of the command. """
- lines = inspect.getdoc(operation)
- regex = r'\s*(:param)\s+(.+?)\s*:(.*)'
- summary = ''
- if lines:
- match = re.search(regex, lines)
- summary = lines[:match.regs[0][0]] if match else lines
-
- summary = summary.replace('\n', ' ').replace('\r', '')
- return summary
-
-
-def _option_descriptions(operation):
- """ Extract parameter help from docstring of the command. """
- lines = inspect.getdoc(operation)
-
- if not lines:
- return {}
-
- param_breaks = ["'''", '"""', ':param', ':type', ':return', ':rtype']
- option_descs = {}
-
- lines = lines.splitlines()
- index = 0
- while index < len(lines):
- line = lines[index]
- regex = r'\s*(:param)\s+(.+?)\s*:(.*)'
- match = re.search(regex, line)
- if not match:
- index += 1
- continue
-
- # 'arg name' portion might have type info, we don't need it
- arg_name = str.split(match.group(2))[-1]
- arg_desc = match.group(3).strip()
- # look for more descriptions on subsequent lines
- index += 1
- while index < len(lines):
- temp = lines[index].strip()
- if any(temp.startswith(x) for x in param_breaks):
- break
- else:
- if temp:
- arg_desc += (' ' + temp)
- index += 1
-
- option_descs[arg_name] = arg_desc
-
- return option_descs
-
-
-EXCLUDED_PARAMS = frozenset(['self', 'raw', 'custom_headers', 'operation_config',
- 'content_version', 'kwargs', 'client'])
-
-
-def extract_args_from_signature(operation, no_wait_param=None):
- """ Extracts basic argument data from an operation's signature and docstring
- no_wait_param: SDK parameter which disables LRO polling. For now it is 'raw'
- """
- from azure.cli.core.commands import CliCommandArgument
- args = []
- try:
- # only supported in python3 - falling back to argspec if not available
- sig = inspect.signature(operation)
- args = sig.parameters
- except AttributeError:
- sig = inspect.getargspec(operation) # pylint: disable=deprecated-method
- args = sig.args
-
- arg_docstring_help = _option_descriptions(operation)
- excluded_params = list(EXCLUDED_PARAMS)
- if no_wait_param in excluded_params:
- excluded_params.remove(no_wait_param)
- found_no_wait_param = False
-
- for arg_name in [a for a in args if a not in excluded_params]:
- try:
- # this works in python3
- default = args[arg_name].default
- required = default == inspect.Parameter.empty # pylint: disable=no-member
- except TypeError:
- arg_defaults = (dict(zip(sig.args[-len(sig.defaults):], sig.defaults))
- if sig.defaults
- else {})
- default = arg_defaults.get(arg_name)
- required = arg_name not in arg_defaults
-
- action = 'store_' + str(not default).lower() if isinstance(default, bool) else None
-
- try:
- default = (default
- if default != inspect._empty # pylint: disable=protected-access, no-member
- else None)
- except AttributeError:
- pass
-
- # improve the naming to 'no_wait'
- if arg_name == no_wait_param:
- if not isinstance(default, bool):
- raise ValueError("The type of '{}' must be boolean to enable no_wait".format(
- no_wait_param))
- found_no_wait_param = True
- options_list = ['--no-wait']
- help_str = 'do not wait for the long running operation to finish'
- else:
- options_list = ['--' + arg_name.replace('_', '-')]
- help_str = arg_docstring_help.get(arg_name)
-
- yield (arg_name, CliCommandArgument(arg_name,
- options_list=options_list,
- required=required,
- default=default,
- help=help_str,
- action=action))
- if no_wait_param and not found_no_wait_param:
- raise ValueError("Command authoring error: unable to enable no-wait option. Operation '{}' "
- "does not have a '{}' parameter.".format(operation, no_wait_param))
diff --git a/src/azure-cli-core/azure/cli/core/commands/arm.py b/src/azure-cli-core/azure/cli/core/commands/arm.py
index 7ce6ea99f81..62e50203a6a 100644
--- a/src/azure-cli-core/azure/cli/core/commands/arm.py
+++ b/src/azure-cli-core/azure/cli/core/commands/arm.py
@@ -7,27 +7,24 @@
import re
from six import string_types
-from azure.cli.core.commands import (CliCommand,
- get_op_handler,
- command_table as main_command_table,
- command_module_map as main_command_module_map,
- CONFIRM_PARAM_NAME)
-from azure.cli.core.commands._introspection import extract_args_from_signature
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.commands import LongRunningOperation, _is_poller
from azure.cli.core.commands.client_factory import get_mgmt_service_client
-from azure.cli.core.application import APPLICATION, IterateValue
-from azure.cli.core.prompting import prompt_y_n, NoTTYException
-from azure.cli.core._config import az_config
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError, todict, shell_safe_json_parse
+from azure.cli.core.commands.validators import IterateValue
+from azure.cli.core.util import shell_safe_json_parse
from azure.cli.core.profiles import ResourceType
-logger = azlogging.get_az_logger(__name__)
+from knack.arguments import CLICommandArgument, ignore_type
+from knack.introspection import extract_args_from_signature
+from knack.log import get_logger
+from knack.util import todict, CLIError
+
+logger = get_logger(__name__)
def handle_long_running_operation_exception(ex):
import json
import azure.cli.core.telemetry as telemetry
- from azure.cli.core.commands import LongRunningOperation
telemetry.set_exception(
ex,
@@ -87,16 +84,22 @@ def __new__(cls, val):
return str.__new__(cls, val)
-def resource_exists(resource_group, name, namespace, type, **_): # pylint: disable=redefined-builtin
+def resource_exists(cli_ctx, resource_group, name, namespace, type, **_): # pylint: disable=redefined-builtin
''' Checks if the given resource exists. '''
odata_filter = "resourceGroup eq '{}' and name eq '{}'" \
" and resourceType eq '{}/{}'".format(resource_group, name, namespace, type)
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).resources
+ client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).resources
existing = len(list(client.list(filter=odata_filter))) == 1
return existing
-def add_id_parameters(command_table):
+def add_id_parameters(_, **kwargs): # pylint: disable=unused-argument
+
+ command_table = kwargs.get('cmd_tbl')
+
+ if not command_table:
+ return
+
def split_action(arguments):
class SplitAction(argparse.Action): # pylint: disable=too-few-public-methods
def __call__(self, parser, namespace, values, option_string=None):
@@ -110,7 +113,7 @@ def __call__(self, parser, namespace, values, option_string=None):
try:
for value in [values] if isinstance(values, str) else values:
parts = parse_resource_id(value)
- for arg in [arg for arg in arguments.values() if arg.id_part]:
+ for arg in [arg for arg in arguments.values() if arg.type.settings.get('id_part')]:
self.set_argument_value(namespace, arg, parts)
except Exception as ex:
raise ValueError(ex)
@@ -120,22 +123,23 @@ def set_argument_value(namespace, arg, parts):
existing_values = getattr(namespace, arg.name, None)
if existing_values is None:
existing_values = IterateValue()
- existing_values.append(parts[arg.id_part])
+ existing_values.append(parts[arg.type.settings['id_part']])
else:
if isinstance(existing_values, str):
if not getattr(arg.type, 'configured_default_applied', None):
logger.warning(
"Property '%s=%s' being overriden by value '%s' from IDs parameter.",
- arg.name, existing_values, parts[arg.id_part]
+ arg.name, existing_values, parts[arg.type.settings['id_part']]
)
existing_values = IterateValue()
- existing_values.append(parts[arg.id_part])
+ existing_values.append(parts[arg.type.settings['id_part']])
setattr(namespace, arg.name, existing_values)
return SplitAction
def command_loaded_handler(command):
- id_parts = [arg.id_part for arg in command.arguments.values() if arg.id_part]
+ id_parts = [arg.type.settings['id_part'] for arg in command.arguments.values()
+ if arg.type.settings.get('id_part')]
if 'name' not in id_parts and 'resource_name' not in id_parts:
# Only commands with a resource name are candidates for an id parameter
return
@@ -146,7 +150,7 @@ def command_loaded_handler(command):
required_arguments = []
optional_arguments = []
- for arg in [argument for argument in command.arguments.values() if argument.id_part]:
+ for arg in [argument for argument in command.arguments.values() if argument.type.settings.get('id_part')]:
if arg.options.get('required', False):
required_arguments.append(arg)
else:
@@ -163,7 +167,7 @@ def required_values_validator(namespace):
group_name = 'Resource Id'
for key, arg in command.arguments.items():
- if command.arguments[key].id_part:
+ if command.arguments[key].type.settings.get('id_part'):
command.arguments[key].arg_group = group_name
command.add_argument('ids',
@@ -182,10 +186,6 @@ def required_values_validator(namespace):
command_loaded_handler(command)
-APPLICATION.register(APPLICATION.COMMAND_TABLE_PARAMS_LOADED, add_id_parameters)
-
-APPLICATION.register(APPLICATION.COMMAND_TABLE_LOADED, add_id_parameters)
-
add_usage = '--add property.listProperty '
set_usage = '--set property1.property2='
remove_usage = '--remove property.list OR --remove propertyToRemove'
@@ -202,44 +202,48 @@ def _get_child(parent, collection_name, item_name, collection_key):
return result
-def _user_confirmed(confirmation, command_args):
- if callable(confirmation):
- return confirmation(command_args)
- try:
- if isinstance(confirmation, string_types):
- return prompt_y_n(confirmation)
- return prompt_y_n('Are you sure you want to perform this operation?')
- except NoTTYException:
- logger.warning('Unable to prompt for confirmation as no tty available. Use --yes.')
- return False
-
-
-def cli_generic_update_command(module_name, name, getter_op, setter_op, factory=None,
- setter_arg_name='parameters', table_transformer=None,
- child_collection_prop_name=None, child_collection_key='name',
- child_arg_name='item_name', custom_function_op=None,
- no_wait_param=None, transform=None, confirmation=None,
- exception_handler=None, formatter_class=None):
+def _get_operations_tmpl(cmd):
+ operations_tmpl = cmd.command_kwargs.get('operations_tmpl', cmd.command_kwargs.get('command_type').settings['operations_tmpl'])
+ if not operations_tmpl:
+ raise CLIError("command authoring error: cmd '{}' does not have an operations_tmpl.".format(cmd.name))
+ return operations_tmpl
+
+
+def _get_client_factory(name, kwargs):
+ factory = kwargs.get('client_factory', kwargs.get('command_type').settings.get('client_factory', None))
+ return factory
+
+
+# pylint: disable=too-many-statements
+def _cli_generic_update_command(context, name, getter_op, setter_op, setter_arg_name='parameters',
+ child_collection_prop_name=None, child_collection_key='name',
+ child_arg_name='item_name', custom_function_op=None, **kwargs):
+ if not isinstance(context, AzCommandsLoader):
+ raise TypeError("'context' expected type '{}'. Got: '{}'".format(AzCommandsLoader.__name__, type(context)))
if not isinstance(getter_op, string_types):
- raise ValueError("Getter operation must be a string. Got '{}'".format(getter_op))
+ raise TypeError("Getter operation must be a string. Got '{}'".format(getter_op))
if not isinstance(setter_op, string_types):
- raise ValueError("Setter operation must be a string. Got '{}'".format(setter_op))
+ raise TypeError("Setter operation must be a string. Got '{}'".format(setter_op))
if custom_function_op and not isinstance(custom_function_op, string_types):
- raise ValueError("Custom function operation must be a string. Got '{}'".format(
+ raise TypeError("Custom function operation must be a string. Got '{}'".format(
custom_function_op))
def get_arguments_loader():
- return dict(extract_args_from_signature(get_op_handler(getter_op)))
+ return dict(extract_args_from_signature(context.get_op_handler(getter_op)))
def set_arguments_loader():
- return dict(extract_args_from_signature(get_op_handler(setter_op),
- no_wait_param=no_wait_param))
+ return dict(extract_args_from_signature(context.get_op_handler(setter_op)))
def function_arguments_loader():
- return dict(extract_args_from_signature(get_op_handler(custom_function_op))) \
- if custom_function_op else {}
+ if not custom_function_op:
+ return {}
+
+ custom_op = context.get_op_handler(custom_function_op)
+ context._apply_doc_string(custom_op, kwargs)
+ return dict(extract_args_from_signature(custom_op))
+
+ def generic_update_arguments_loader():
- def arguments_loader():
arguments = {}
arguments.update(set_arguments_loader())
arguments.update(get_arguments_loader())
@@ -248,142 +252,177 @@ def arguments_loader():
arguments.pop('parent', None)
arguments.pop('expand', None) # possibly inherited from the getter
arguments.pop(setter_arg_name, None)
- return arguments
- def handler(args): # pylint: disable=too-many-branches,too-many-statements
- from msrestazure.azure_operation import AzureOperationPoller
+ # Add the generic update parameters
+ class OrderedArgsAction(argparse.Action): # pylint:disable=too-few-public-methods
- if confirmation \
- and not args.items().get(CONFIRM_PARAM_NAME) \
- and not az_config.getboolean('core', 'disable_confirm_prompt', fallback=False) \
- and not _user_confirmed(confirmation, args.items()):
- raise CLIError('Operation cancelled.')
+ def __call__(self, parser, namespace, values, option_string=None):
+ if not getattr(namespace, 'ordered_arguments', None):
+ setattr(namespace, 'ordered_arguments', [])
+ namespace.ordered_arguments.append((option_string, values))
+
+ group_name = 'Generic Update'
+ arguments['properties_to_set'] = CLICommandArgument(
+ 'properties_to_set', options_list=['--set'], nargs='+',
+ action=OrderedArgsAction, default=[],
+ help='Update an object by specifying a property path and value to set. Example: {}'.format(set_usage),
+ metavar='KEY=VALUE', arg_group=group_name
+ )
+ arguments['properties_to_add'] = CLICommandArgument(
+ 'properties_to_add', options_list=['--add'], nargs='+',
+ action=OrderedArgsAction, default=[],
+ help='Add an object to a list of objects by specifying a path and '
+ 'key value pairs. Example: {}'.format(add_usage),
+ metavar='LIST KEY=VALUE', arg_group=group_name
+ )
+ arguments['properties_to_remove'] = CLICommandArgument(
+ 'properties_to_remove', options_list=['--remove'], nargs='+',
+ action=OrderedArgsAction, default=[],
+ help='Remove a property or an element from a list. Example: {}'.format(remove_usage),
+ metavar='LIST INDEX', arg_group=group_name
+ )
+ arguments['cmd'] = CLICommandArgument('cmd', arg_type=ignore_type)
+ return [(k, v) for k, v in arguments.items()]
+ def handler(args): # pylint: disable=too-many-branches,too-many-statements
+ cmd = args.get('cmd')
ordered_arguments = args.pop('ordered_arguments', [])
for item in ['properties_to_add', 'properties_to_set', 'properties_to_remove']:
if args[item]:
raise CLIError("Unexpected '{}' was not empty.".format(item))
del args[item]
- try:
- client = factory() if factory else None
- except TypeError:
- client = factory(None) if factory else None
+ factory = _get_client_factory(name, cmd.command_kwargs)
+ client = None
+ if factory:
+ try:
+ client = factory(context.cli_ctx)
+ except TypeError:
+ client = factory(context.cli_ctx, None)
+ operations_tmpl = _get_operations_tmpl(cmd)
+ client_arg_name = 'client' if operations_tmpl.startswith('azure.cli') else 'self'
getterargs = {key: val for key, val in args.items() if key in get_arguments_loader()}
- getter = get_op_handler(getter_op)
- try:
- if child_collection_prop_name:
- parent = getter(client, **getterargs) if client else getter(**getterargs)
- instance = _get_child(
- parent,
- child_collection_prop_name,
- args.get(child_arg_name),
- child_collection_key
- )
- else:
- parent = None
- instance = getter(client, **getterargs) if client else getter(**getterargs)
-
- # pass instance to the custom_function, if provided
- if custom_function_op:
- custom_function = get_op_handler(custom_function_op)
- custom_func_args = \
- {k: v for k, v in args.items() if k in function_arguments_loader()}
- if child_collection_prop_name:
- parent = custom_function(instance, parent, **custom_func_args)
- else:
- instance = custom_function(instance, **custom_func_args)
-
- # apply generic updates after custom updates
- setterargs = {key: val for key, val in args.items() if key in set_arguments_loader()}
-
- for arg in ordered_arguments:
- arg_type, arg_values = arg
- if arg_type == '--set':
- try:
- for expression in arg_values:
- set_properties(instance, expression)
- except ValueError:
- raise CLIError('invalid syntax: {}'.format(set_usage))
- elif arg_type == '--add':
- try:
- add_properties(instance, arg_values)
- except ValueError:
- raise CLIError('invalid syntax: {}'.format(add_usage))
- elif arg_type == '--remove':
- try:
- remove_properties(instance, arg_values)
- except ValueError:
- raise CLIError('invalid syntax: {}'.format(remove_usage))
-
- # Done... update the instance!
- setterargs[setter_arg_name] = parent if child_collection_prop_name else instance
- setter = get_op_handler(setter_op)
-
- opres = setter(client, **setterargs) if client else setter(**setterargs)
-
- if setterargs.get(no_wait_param, None):
- return None
-
- result = opres.result() if isinstance(opres, AzureOperationPoller) else opres
+ if client_arg_name in getterargs or client_arg_name == 'self':
+ getterargs[client_arg_name] = client
+ getter = context.get_op_handler(getter_op)
+ if child_collection_prop_name:
+ parent = getter(**getterargs)
+ instance = _get_child(
+ parent,
+ child_collection_prop_name,
+ args.get(child_arg_name),
+ child_collection_key
+ )
+ else:
+ parent = None
+ instance = getter(**getterargs)
+
+ # pass instance to the custom_function, if provided
+ if custom_function_op:
+ custom_function = context.get_op_handler(custom_function_op)
+ custom_func_args = \
+ {k: v for k, v in args.items() if k in function_arguments_loader()}
if child_collection_prop_name:
- result = _get_child(
- result,
- child_collection_prop_name,
- args.get(child_arg_name),
- child_collection_key
- )
- except Exception as ex: # pylint: disable=broad-except
- if exception_handler:
- result = exception_handler(ex)
+ parent = custom_function(instance=instance, parent=parent, **custom_func_args)
else:
- raise ex
+ instance = custom_function(instance=instance, **custom_func_args)
+
+ # apply generic updates after custom updates
+ setterargs = {key: val for key, val in args.items() if key in set_arguments_loader()}
+ if client_arg_name in setterargs or client_arg_name == 'self':
+ setterargs[client_arg_name] = client
+
+ for arg in ordered_arguments:
+ arg_type, arg_values = arg
+ if arg_type == '--set':
+ try:
+ for expression in arg_values:
+ set_properties(instance, expression)
+ except ValueError:
+ raise CLIError('invalid syntax: {}'.format(set_usage))
+ elif arg_type == '--add':
+ try:
+ add_properties(instance, arg_values)
+ except ValueError:
+ raise CLIError('invalid syntax: {}'.format(add_usage))
+ elif arg_type == '--remove':
+ try:
+ remove_properties(instance, arg_values)
+ except ValueError:
+ raise CLIError('invalid syntax: {}'.format(remove_usage))
- # apply results transform if specified
- if transform:
- return transform(result)
+ # Done... update the instance!
+ setterargs[setter_arg_name] = parent if child_collection_prop_name else instance
+ setter = context.get_op_handler(setter_op)
+
+ result = setter(**setterargs)
+
+ no_wait_param = cmd.command_kwargs.get('no_wait_param', None)
+ if no_wait_param and setterargs.get(no_wait_param, None):
+ return None
+
+ if _is_poller(result):
+ result = LongRunningOperation(cmd.cli_ctx, 'Starting {}'.format(cmd.name))(result)
+
+ if child_collection_prop_name:
+ result = _get_child(
+ result,
+ child_collection_prop_name,
+ args.get(child_arg_name),
+ child_collection_key
+ )
return result
- class OrderedArgsAction(argparse.Action): # pylint:disable=too-few-public-methods
-
- def __call__(self, parser, namespace, values, option_string=None):
- if not getattr(namespace, 'ordered_arguments', None):
- setattr(namespace, 'ordered_arguments', [])
- namespace.ordered_arguments.append((option_string, values))
-
- cmd = CliCommand(name, handler, table_transformer=table_transformer,
- arguments_loader=arguments_loader, formatter_class=formatter_class)
- group_name = 'Generic Update'
- cmd.add_argument('properties_to_set', '--set', nargs='+', action=OrderedArgsAction, default=[],
- help='Update an object by specifying a property path and value to set.'
- ' Example: {}'.format(set_usage),
- metavar='KEY=VALUE', arg_group=group_name)
- cmd.add_argument('properties_to_add', '--add', nargs='+', action=OrderedArgsAction, default=[],
- help='Add an object to a list of objects by specifying a path and key'
- ' value pairs. Example: {}'.format(add_usage),
- metavar='LIST KEY=VALUE', arg_group=group_name)
- cmd.add_argument('properties_to_remove', '--remove', nargs='+', action=OrderedArgsAction,
- default=[], help='Remove a property or an element from a list. Example: '
- '{}'.format(remove_usage), metavar='LIST INDEX',
- arg_group=group_name)
- main_command_table[name] = cmd
- main_command_module_map[name] = module_name
-
-
-def cli_generic_wait_command(module_name, name, getter_op, factory=None, exception_handler=None):
+ context._cli_command(name, handler=handler, argument_loader=generic_update_arguments_loader, **kwargs) # pylint: disable=protected-access
+
+
+def _cli_generic_wait_command(context, name, getter_op, **kwargs):
if not isinstance(getter_op, string_types):
raise ValueError("Getter operation must be a string. Got '{}'".format(type(getter_op)))
- def get_arguments_loader():
- return dict(extract_args_from_signature(get_op_handler(getter_op)))
-
- def arguments_loader():
- arguments = {}
- arguments.update(get_arguments_loader())
- return arguments
+ factory = _get_client_factory(name, kwargs)
+
+ def generic_wait_arguments_loader():
+
+ getter_args = dict(extract_args_from_signature(context.get_op_handler(getter_op)))
+ cmd_args = getter_args.copy()
+
+ group_name = 'Wait Condition'
+ cmd_args['timeout'] = CLICommandArgument(
+ 'timeout', options_list=['--timeout'], default=3600, arg_group=group_name, type=int,
+ help='maximum wait in seconds'
+ )
+ cmd_args['interval'] = CLICommandArgument(
+ 'interval', options_list=['--interval'], default=30, arg_group=group_name, type=int,
+ help='polling interval in seconds'
+ )
+ cmd_args['deleted'] = CLICommandArgument(
+ 'deleted', options_list=['--deleted'], action='store_true', arg_group=group_name,
+ help='wait till deleted'
+ )
+ cmd_args['created'] = CLICommandArgument(
+ 'created', options_list=['--created'], action='store_true', arg_group=group_name,
+ help="wait till created with 'provisioningState' at 'Succeeded'"
+ )
+ cmd_args['updated'] = CLICommandArgument(
+ 'updated', options_list=['--updated'], action='store_true', arg_group=group_name,
+ help="wait till updated with provisioningState at 'Succeeded'"
+ )
+ cmd_args['exists'] = CLICommandArgument(
+ 'exists', options_list=['--exists'], action='store_true', arg_group=group_name,
+ help="wait till the resource exists"
+ )
+ cmd_args['custom'] = CLICommandArgument(
+ 'custom', options_list=['--custom'], arg_group=group_name,
+ help="Wait until the condition satisfies a custom JMESPath query. E.g. "
+ "provisioningState!='InProgress', "
+ "instanceView.statuses[?code=='PowerState/running']"
+ )
+ cmd_args['cmd'] = CLICommandArgument('cmd', arg_type=ignore_type)
+ return [(k, v) for k, v in cmd_args.items()]
def get_provisioning_state(instance):
provisioning_state = getattr(instance, 'provisioning_state', None)
@@ -394,24 +433,21 @@ def get_provisioning_state(instance):
provisioning_state = getattr(properties, 'provisioning_state', None)
return provisioning_state
- def _handle_exception(ex):
- if exception_handler:
- return exception_handler(ex)
- else:
- raise ex
-
def handler(args):
from msrest.exceptions import ClientException
import time
+
+ cmd = args.get('cmd')
+
+ operations_tmpl = _get_operations_tmpl(cmd)
+ client_arg_name = 'client' if operations_tmpl.startswith('azure.cli') else 'self'
try:
- client = factory() if factory else None
+ client = factory(context.cli_ctx) if factory else None
except TypeError:
- client = factory(None) if factory else None
+ client = factory(context.cli_ctx, None) if factory else None
+ args[client_arg_name] = client
- getterargs = {key: val for key, val in args.items()
- if key in get_arguments_loader()}
-
- getter = get_op_handler(getter_op)
+ getter = context.get_op_handler(getter_op)
timeout = args.pop('timeout')
interval = args.pop('interval')
@@ -427,7 +463,7 @@ def handler(args):
for _ in range(0, timeout, interval):
try:
- instance = getter(client, **getterargs) if client else getter(**getterargs)
+ instance = getter(**args)
if wait_for_exists:
return
provisioning_state = get_provisioning_state(instance)
@@ -444,36 +480,17 @@ def handler(args):
if wait_for_deleted:
return
if not any([wait_for_created, wait_for_exists, custom_condition]):
- _handle_exception(ex)
+ raise
else:
- _handle_exception(ex)
+ raise
except Exception as ex: # pylint: disable=broad-except
- _handle_exception(ex)
+ raise
time.sleep(interval)
return CLIError('Wait operation timed-out after {} seconds'.format(timeout))
- cmd = CliCommand(name, handler, arguments_loader=arguments_loader)
- group_name = 'Wait Condition'
- cmd.add_argument('timeout', '--timeout', default=3600, arg_group=group_name, type=int,
- help='maximum wait in seconds')
- cmd.add_argument('interval', '--interval', default=30, arg_group=group_name, type=int,
- help='polling interval in seconds')
- cmd.add_argument('deleted', '--deleted', action='store_true', arg_group=group_name,
- help='wait till deleted')
- cmd.add_argument('created', '--created', action='store_true', arg_group=group_name,
- help="wait till created with 'provisioningState' at 'Succeeded'")
- cmd.add_argument('updated', '--updated', action='store_true', arg_group=group_name,
- help="wait till updated with provisioningState at 'Succeeded'")
- cmd.add_argument('exists', '--exists', action='store_true', arg_group=group_name,
- help="wait till the resource exists")
- cmd.add_argument('custom', '--custom', arg_group=group_name,
- help=("Wait until the condition satisfies a custom JMESPath query. E.g. "
- "provisioningState!='InProgress', "
- "instanceView.statuses[?code=='PowerState/running']"))
- main_command_table[name] = cmd
- main_command_module_map[name] = module_name
+ context._cli_command(name, handler=handler, argument_loader=generic_wait_arguments_loader, **kwargs) # pylint: disable=protected-access
def verify_property(instance, condition):
diff --git a/src/azure-cli-core/azure/cli/core/commands/client_factory.py b/src/azure-cli-core/azure/cli/core/commands/client_factory.py
index e32e1fd3d5f..6b94c37cbb9 100644
--- a/src/azure-cli-core/azure/cli/core/commands/client_factory.py
+++ b/src/azure-cli-core/azure/cli/core/commands/client_factory.py
@@ -5,41 +5,39 @@
import os
from azure.cli.core import __version__ as core_version
-from azure.cli.core._profile import Profile, CLOUD
import azure.cli.core._debug as _debug
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
-from azure.cli.core.application import APPLICATION
from azure.cli.core.profiles._shared import get_client_class
-from azure.cli.core.profiles import get_api_version, get_sdk, ResourceType
+from azure.cli.core.profiles import ResourceType, get_api_version, get_sdk
-logger = azlogging.get_az_logger(__name__)
+from knack.log import get_logger
+from knack.util import CLIError
+logger = get_logger(__name__)
UA_AGENT = "AZURECLI/{}".format(core_version)
ENV_ADDITIONAL_USER_AGENT = 'AZURE_HTTP_USER_AGENT'
-def get_mgmt_service_client(client_or_resource_type, subscription_id=None, api_version=None,
+def get_mgmt_service_client(cli_ctx, client_or_resource_type, subscription_id=None, api_version=None,
**kwargs):
if isinstance(client_or_resource_type, ResourceType):
# Get the versioned client
client_type = get_client_class(client_or_resource_type)
- api_version = api_version or get_api_version(client_or_resource_type)
+ api_version = api_version or get_api_version(cli_ctx, client_or_resource_type)
else:
# Get the non-versioned client
client_type = client_or_resource_type
- client, _ = _get_mgmt_service_client(client_type, subscription_id=subscription_id,
+ client, _ = _get_mgmt_service_client(cli_ctx, client_type, subscription_id=subscription_id,
api_version=api_version, **kwargs)
return client
-def get_subscription_service_client():
- return _get_mgmt_service_client(get_client_class(ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS),
+def get_subscription_service_client(cli_ctx):
+ return _get_mgmt_service_client(cli_ctx, get_client_class(ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS),
subscription_bound=False,
- api_version=get_api_version(ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS))
+ api_version=get_api_version(cli_ctx, ResourceType.MGMT_RESOURCE_SUBSCRIPTIONS))
-def configure_common_settings(client):
+def configure_common_settings(cli_ctx, client):
client = _debug.change_ssl_cert_verification(client)
client.config.add_user_agent(UA_AGENT)
@@ -49,37 +47,40 @@ def configure_common_settings(client):
pass
try:
- command_ext_name = APPLICATION.session['command_extension_name']
+ command_ext_name = cli_ctx.data['command_extension_name']
if command_ext_name:
client.config.add_user_agent("CliExtension/{}".format(command_ext_name))
except KeyError:
pass
- for header, value in APPLICATION.session['headers'].items():
+ for header, value in cli_ctx.data['headers'].items():
# We are working with the autorest team to expose the add_header functionality of the generated client to avoid
# having to access private members
client._client.add_header(header, value) # pylint: disable=protected-access
- command_name_suffix = ';completer-request' if APPLICATION.session['completer_active'] else ''
+ command_name_suffix = ';completer-request' if cli_ctx.data['completer_active'] else ''
client._client.add_header('CommandName', # pylint: disable=protected-access
- "{}{}".format(APPLICATION.session['command'], command_name_suffix))
- client.config.generate_client_request_id = 'x-ms-client-request-id' not in APPLICATION.session['headers']
+ "{}{}".format(cli_ctx.data['command'], command_name_suffix))
+ client.config.generate_client_request_id = 'x-ms-client-request-id' not in cli_ctx.data['headers']
-def _get_mgmt_service_client(client_type,
+def _get_mgmt_service_client(cli_ctx,
+ client_type,
subscription_bound=True,
subscription_id=None,
api_version=None,
base_url_bound=True,
- resource=CLOUD.endpoints.active_directory_resource_id,
+ resource=None,
**kwargs):
+ from azure.cli.core._profile import Profile
logger.debug('Getting management service client client_type=%s', client_type.__name__)
- profile = Profile()
- cred, subscription_id, _ = profile.get_login_credentials(subscription_id=subscription_id,
- resource=resource)
+ resource = resource or cli_ctx.cloud.endpoints.active_directory_resource_id
+ profile = Profile(cli_ctx)
+ cred, subscription_id, _ = profile.get_login_credentials(subscription_id=subscription_id, resource=resource)
+
client_kwargs = {}
if base_url_bound:
- client_kwargs = {'base_url': CLOUD.endpoints.resource_manager}
+ client_kwargs = {'base_url': cli_ctx.cloud.endpoints.resource_manager}
if api_version:
client_kwargs['api_version'] = api_version
if kwargs:
@@ -90,12 +91,12 @@ def _get_mgmt_service_client(client_type,
else:
client = client_type(cred, **client_kwargs)
- configure_common_settings(client)
+ configure_common_settings(cli_ctx, client)
return (client, subscription_id)
-def get_data_service_client(service_type, account_name, account_key, connection_string=None,
+def get_data_service_client(cli_ctx, service_type, account_name, account_key, connection_string=None,
sas_token=None, endpoint_suffix=None):
logger.debug('Getting data service client service_type=%s', service_type.__name__)
try:
@@ -107,32 +108,37 @@ def get_data_service_client(service_type, account_name, account_key, connection_
client_kwargs['endpoint_suffix'] = endpoint_suffix
client = service_type(**client_kwargs)
except ValueError as exc:
- _ERROR_STORAGE_MISSING_INFO = get_sdk(ResourceType.DATA_STORAGE, 'common._error#_ERROR_STORAGE_MISSING_INFO')
+ _ERROR_STORAGE_MISSING_INFO = get_sdk(cli_ctx, ResourceType.DATA_STORAGE,
+ 'common._error#_ERROR_STORAGE_MISSING_INFO')
if _ERROR_STORAGE_MISSING_INFO in str(exc):
raise ValueError(exc)
else:
raise CLIError('Unable to obtain data client. Check your connection parameters.')
# TODO: enable Fiddler
- client.request_callback = _add_headers
+ client.request_callback = _get_add_headers_callback(cli_ctx)
return client
-def get_subscription_id():
- profile = Profile()
- _, subscription_id, _ = profile.get_login_credentials()
+def get_subscription_id(cli_ctx):
+ from azure.cli.core._profile import Profile
+ _, subscription_id, _ = Profile(cli_ctx).get_login_credentials()
return subscription_id
-def _add_headers(request):
- agents = [request.headers['User-Agent'], UA_AGENT]
- try:
- agents.append(os.environ[ENV_ADDITIONAL_USER_AGENT])
- except KeyError:
- pass
+def _get_add_headers_callback(cli_ctx):
- request.headers['User-Agent'] = ' '.join(agents)
+ def _add_headers(request):
+ agents = [request.headers['User-Agent'], UA_AGENT]
+ try:
+ agents.append(os.environ[ENV_ADDITIONAL_USER_AGENT])
+ except KeyError:
+ pass
- try:
- request.headers.update(APPLICATION.session['headers'])
- except KeyError:
- pass
+ request.headers['User-Agent'] = ' '.join(agents)
+
+ try:
+ request.headers.update(cli_ctx.data['headers'])
+ except KeyError:
+ pass
+
+ return _add_headers
diff --git a/src/azure-cli-core/azure/cli/core/commands/parameters.py b/src/azure-cli-core/azure/cli/core/commands/parameters.py
index 686a30fba29..6e55b3d05d5 100644
--- a/src/azure-cli-core/azure/cli/core/commands/parameters.py
+++ b/src/azure-cli-core/azure/cli/core/commands/parameters.py
@@ -7,25 +7,25 @@
import argparse
import platform
-from azure.cli.core.commands import \
- (CliArgumentType, register_cli_argument)
from azure.cli.core.commands.validators import validate_tag, validate_tags
-from azure.cli.core.util import CLIError
from azure.cli.core.commands.validators import generate_deployment_name
-from azure.cli.core.profiles import get_sdk, ResourceType, supported_api_version
-import azure.cli.core.azlogging as azlogging
+from azure.cli.core.profiles import ResourceType
-logger = azlogging.get_az_logger(__name__)
+from knack.arguments import CLIArgumentType, CaseInsensitiveList
+from knack.log import get_logger
+from knack.util import CLIError
+logger = get_logger(__name__)
-def get_subscription_locations():
+
+def get_subscription_locations(cli_ctx):
from azure.cli.core.commands.client_factory import get_subscription_service_client
- subscription_client, subscription_id = get_subscription_service_client()
+ subscription_client, subscription_id = get_subscription_service_client(cli_ctx)
return list(subscription_client.subscriptions.list_locations(subscription_id))
-def get_location_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- result = get_subscription_locations()
+def get_location_completion_list(cli_ctx, prefix, **kwargs): # pylint: disable=unused-argument
+ result = get_subscription_locations(cli_ctx)
return [l.name for l in result]
@@ -34,55 +34,57 @@ def file_type(path):
return os.path.expanduser(path)
-def location_name_type(name):
- if ' ' in name:
- # if display name is provided, attempt to convert to short form name
- name = next((l.name for l in get_subscription_locations()
- if l.display_name.lower() == name.lower()), name)
- return name
+def get_location_name_type(cli_ctx):
+ def location_name_type(name):
+ if ' ' in name:
+ # if display name is provided, attempt to convert to short form name
+ name = next((l.name for l in get_subscription_locations(cli_ctx)
+ if l.display_name.lower() == name.lower()), name)
+ return name
+ return location_name_type
-def get_one_of_subscription_locations():
- result = get_subscription_locations()
+def get_one_of_subscription_locations(cli_ctx):
+ result = get_subscription_locations(cli_ctx)
if result:
return next((r.name for r in result if r.name.lower() == 'westus'), result[0].name)
else:
raise CLIError('Current subscription does not have valid location list')
-def get_resource_groups():
+def get_resource_groups(cli_ctx):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- rcf = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
+ rcf = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
return list(rcf.resource_groups.list())
-def get_resource_group_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- result = get_resource_groups()
+def get_resource_group_completion_list(cli_ctx, prefix, **kwargs): # pylint: disable=unused-argument
+ result = get_resource_groups(cli_ctx)
return [l.name for l in result]
-def get_resources_in_resource_group(resource_group_name, resource_type=None):
+def get_resources_in_resource_group(cli_ctx, resource_group_name, resource_type=None):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- rcf = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
+ rcf = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
filter_str = "resourceType eq '{}'".format(resource_type) if resource_type else None
- if supported_api_version(ResourceType.MGMT_RESOURCE_RESOURCES, max_api='2016-09-01'):
+ if cli_ctx.cloud.supported_api_version(ResourceType.MGMT_RESOURCE_RESOURCES, max_api='2016-09-01'):
return list(rcf.resource_groups.list_resources(resource_group_name, filter=filter_str))
return list(rcf.resources.list_by_resource_group(resource_group_name, filter=filter_str))
-def get_resources_in_subscription(resource_type=None):
+def get_resources_in_subscription(cli_ctx, resource_type=None):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- rcf = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
+ rcf = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
filter_str = "resourceType eq '{}'".format(resource_type) if resource_type else None
return list(rcf.resources.list(filter=filter_str))
-def get_resource_name_completion_list(resource_type=None):
+def get_resource_name_completion_list(cli_ctx, resource_type=None):
def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
if getattr(parsed_args, 'resource_group_name', None):
rg = parsed_args.resource_group_name
- return [r.name for r in get_resources_in_resource_group(rg, resource_type=resource_type)]
- return [r.name for r in get_resources_in_subscription(resource_type=resource_type)]
+ return [r.name for r in get_resources_in_resource_group(cli_ctx, rg, resource_type=resource_type)]
+ return [r.name for r in get_resources_in_subscription(cli_ctx, resource_type)]
return completer
@@ -92,46 +94,7 @@ def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-
return completer
-class CaseInsensitiveList(list): # pylint: disable=too-few-public-methods
-
- def __contains__(self, other):
- return next((True for x in self if other.lower() == x.lower()), False)
-
-
-def model_choice_list(resource_type, model_name):
- model = get_sdk(resource_type, model_name, mod='models')
- return enum_choice_list(model) if model else {}
-
-
-def enum_choice_list(data):
- """ Creates the argparse choices and type kwargs for a supplied enum type or list of strings. """
- # transform enum types, otherwise assume list of string choices
- if not data:
- return {}
- try:
- choices = [x.value for x in data]
- except AttributeError:
- choices = data
-
- def _type(value):
- return next((x for x in choices if x.lower() == value.lower()), value) if value else value
- params = {
- 'choices': CaseInsensitiveList(choices),
- 'type': _type
- }
- return params
-
-
-def enum_default(resource_type, enum_name, enum_val_name):
- mod = get_sdk(resource_type, enum_name, mod='models')
- try:
- return getattr(mod, enum_val_name).value
- except AttributeError:
- logger.debug('Skipping param default %s.%s for %s.', enum_name, enum_val_name, resource_type)
- return None
-
-
-def three_state_flag(positive_label='true', negative_label='false', invert=False, return_label=False):
+def get_three_state_flag(positive_label='true', negative_label='false', invert=False, return_label=False):
""" Creates a flag-like argument that can also accept positive/negative values. This allows
consistency between create commands that typically use flags and update commands that require
positive/negative values without introducing breaking changes. Flag-like behavior always
@@ -162,42 +125,59 @@ def __call__(self, parser, namespace, values, option_string=None):
'nargs': '?',
'action': ThreeStateAction
}
- return params
+ return CLIArgumentType(**params)
-class IgnoreAction(argparse.Action): # pylint: disable=too-few-public-methods
+def get_enum_type(data, default=None):
+ """ Creates the argparse choices and type kwargs for a supplied enum type or list of strings. """
+ if not data:
+ return None
+
+ # transform enum types, otherwise assume list of string choices
+ try:
+ choices = [x.value for x in data]
+ except AttributeError:
+ choices = data
+
+ def _type(value):
+ return next((x for x in choices if x.lower() == value.lower()), value) if value else value
- def __call__(self, parser, namespace, values, option_string=None):
- raise argparse.ArgumentError(None, 'unrecognized argument: {} {}'.format(
- option_string, values or ''))
+ default_value = None
+ if default:
+ default_value = next((x for x in choices if x.lower() == default.lower()), None)
+ if not default_value:
+ raise CLIError("Command authoring exception: urecognized default '{}' from choices '{}'"
+ .format(default, choices))
+ arg_type = CLIArgumentType(choices=CaseInsensitiveList(choices), type=_type, default=default_value)
+ else:
+ arg_type = CLIArgumentType(choices=CaseInsensitiveList(choices), type=_type)
+ return arg_type
# GLOBAL ARGUMENT DEFINITIONS
-ignore_type = CliArgumentType(
- help=argparse.SUPPRESS,
- nargs='?',
- action=IgnoreAction,
- required=False)
-
-resource_group_name_type = CliArgumentType(
+resource_group_name_type = CLIArgumentType(
options_list=('--resource-group', '-g'),
completer=get_resource_group_completion_list,
id_part='resource_group',
help="Name of resource group. You can configure the default group using `az configure --defaults group=`",
configured_default='group')
-name_type = CliArgumentType(options_list=('--name', '-n'), help='the primary resource name')
+name_type = CLIArgumentType(options_list=('--name', '-n'), help='the primary resource name')
+
-location_type = CliArgumentType(
- options_list=('--location', '-l'),
- completer=get_location_completion_list,
- type=location_name_type,
- help="Location. You can configure the default location using `az configure --defaults location=`",
- metavar='LOCATION',
- configured_default='location')
+def get_location_type(cli_ctx):
+ location_type = CLIArgumentType(
+ options_list=('--location', '-l'),
+ completer=get_location_completion_list,
+ type=get_location_name_type(cli_ctx),
+ help="Location. You can configure the default location using `az configure --defaults location=`",
+ metavar='LOCATION',
+ configured_default='location')
+ return location_type
-deployment_name_type = CliArgumentType(
+
+deployment_name_type = CLIArgumentType(
help=argparse.SUPPRESS,
required=False,
validator=generate_deployment_name
@@ -206,39 +186,35 @@ def __call__(self, parser, namespace, values, option_string=None):
quotes = '""' if platform.system() == 'Windows' else "''"
quote_text = 'Use {} to clear existing tags.'.format(quotes)
-tags_type = CliArgumentType(
+tags_type = CLIArgumentType(
validator=validate_tags,
help="space separated tags in 'key[=value]' format. {}".format(quote_text),
nargs='*'
)
-tag_type = CliArgumentType(
+tag_type = CLIArgumentType(
type=validate_tag,
help="a single tag in 'key[=value]' format. {}".format(quote_text),
nargs='?',
const=''
)
-no_wait_type = CliArgumentType(
+no_wait_type = CLIArgumentType(
options_list=('--no-wait', ),
help='do not wait for the long running operation to finish',
action='store_true'
)
-zones_type = CliArgumentType(
+zones_type = CLIArgumentType(
options_list=['--zones', '-z'],
nargs='+',
help='Space separated list of availability zones into which to provision the resource.',
choices=['1', '2', '3']
)
-zone_type = CliArgumentType(
+zone_type = CLIArgumentType(
options_list=['--zone', '-z'],
help='Availability zone into which to provision the resource.',
choices=['1', '2', '3'],
nargs=1
)
-
-register_cli_argument('', 'resource_group_name', resource_group_name_type)
-register_cli_argument('', 'location', location_type)
-register_cli_argument('', 'deployment_name', deployment_name_type)
diff --git a/src/azure-cli-core/azure/cli/core/commands/template_create.py b/src/azure-cli-core/azure/cli/core/commands/template_create.py
index 93e52f36967..a6d6d1e9ae7 100644
--- a/src/azure-cli-core/azure/cli/core/commands/template_create.py
+++ b/src/azure-cli-core/azure/cli/core/commands/template_create.py
@@ -6,10 +6,13 @@
from __future__ import print_function
import platform
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
from azure.cli.core.commands.arm import resource_exists
+from knack.log import get_logger
+from knack.util import CLIError
+
+logger = get_logger(__name__)
+
def get_folded_parameter_help_string(
display_name, allow_none=False, allow_new=False, default_none=False,
@@ -44,7 +47,7 @@ def get_folded_parameter_help_string(
def _validate_name_or_id(
- resource_group_name, property_value, property_type, parent_value, parent_type):
+ cli_ctx, resource_group_name, property_value, property_type, parent_value, parent_type):
from azure.cli.core.commands.client_factory import get_subscription_id
from msrestazure.tools import parse_resource_id, is_valid_resource_id
has_parent = parent_type is not None
@@ -57,7 +60,7 @@ def _validate_name_or_id(
resource_group=resource_group_name,
namespace=parent_type.split('/')[0],
type=parent_type.split('/')[1],
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(cli_ctx),
child_name_1=property_value,
child_type_1=property_type)
value_supplied_was_id = False
@@ -67,7 +70,7 @@ def _validate_name_or_id(
resource_group=resource_group_name,
namespace=property_type.split('/')[0],
type=property_type.split('/')[1],
- subscription=get_subscription_id())
+ subscription=get_subscription_id(cli_ctx))
value_supplied_was_id = False
return (resource_id_parts, value_supplied_was_id)
@@ -101,22 +104,20 @@ def validator(namespace):
setattr(namespace, type_field_name, 'none')
setattr(namespace, property_name, None)
if parent_name and parent_val:
- logger = azlogging.get_az_logger(__name__)
logger.warning('Ignoring: %s %s', parent_option, parent_val)
setattr(namespace, parent_name, None)
return # SUCCESS
# Create a resource ID we can check for existence.
(resource_id_parts, value_was_id) = _validate_name_or_id(
- namespace.resource_group_name, property_val, property_type, parent_val, parent_type)
+ namespace.cmd.cli_ctx, namespace.resource_group_name, property_val, property_type, parent_val, parent_type)
# 2) resource exists
- if resource_exists(**resource_id_parts):
+ if resource_exists(namespace.cmd.cli_ctx, **resource_id_parts):
setattr(namespace, type_field_name, 'existingId')
setattr(namespace, property_name, resource_id(**resource_id_parts))
if parent_val:
if value_was_id:
- logger = azlogging.get_az_logger(__name__)
logger.warning('Ignoring: %s %s', parent_option, parent_val)
setattr(namespace, parent_name, None)
return # SUCCESS
diff --git a/src/azure-cli-core/azure/cli/core/commands/validators.py b/src/azure-cli-core/azure/cli/core/commands/validators.py
index 0b0142f94d8..129d03654a6 100644
--- a/src/azure-cli-core/azure/cli/core/commands/validators.py
+++ b/src/azure-cli-core/azure/cli/core/commands/validators.py
@@ -3,12 +3,34 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+import argparse
import time
import random
-import azure.cli.core.azlogging as azlogging
from azure.cli.core.profiles import ResourceType
-logger = azlogging.get_az_logger(__name__)
+from knack.log import get_logger
+
+logger = get_logger(__name__)
+
+
+class IterateAction(argparse.Action): # pylint: disable=too-few-public-methods
+ '''Action used to collect argument values in an IterateValue list
+ The application will loop through each value in the IterateValue
+ and execeute the associated handler for each
+ '''
+
+ def __call__(self, parser, namespace, values, option_string=None):
+ setattr(namespace, self.dest, IterateValue(values))
+
+
+class IterateValue(list):
+ '''Marker class to indicate that, when found as a value in the parsed namespace
+ from argparse, the handler should be invoked once per value in the list with all
+ other values in the parsed namespace frozen.
+
+ Typical use is to allow multiple ID parameter to a show command etc.
+ '''
+ pass
def validate_tags(ns):
@@ -47,7 +69,7 @@ def generate_deployment_name(namespace):
def get_default_location_from_resource_group(namespace):
if not namespace.location:
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- resource_client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
+ resource_client = get_mgmt_service_client(namespace.cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
rg = resource_client.resource_groups.get(namespace.resource_group_name)
namespace.location = rg.location # pylint: disable=no-member
logger.debug("using location '%s' from resource group '%s'", namespace.location, rg.name)
@@ -72,7 +94,7 @@ def validate_parameter_set(namespace, required, forbidden, dest_to_options=None,
included_forbidden = [x for x in forbidden if getattr(namespace, x) and
not hasattr(getattr(namespace, x), 'is_default')]
if missing_required or included_forbidden:
- from azure.cli.core.util import CLIError
+ from knack.util import CLIError
def _dest_to_option(dest):
try:
diff --git a/src/azure-cli-core/azure/cli/core/decorators.py b/src/azure-cli-core/azure/cli/core/decorators.py
index 0f20b6022c1..67441dfb43e 100644
--- a/src/azure-cli-core/azure/cli/core/decorators.py
+++ b/src/azure-cli-core/azure/cli/core/decorators.py
@@ -92,10 +92,3 @@ def _wrapped_func(*args, **kwargs):
return _wrapped_func
return _decorator
-
-
-def transfer_doc(source_func):
- def _decorator(func):
- func.__doc__ = source_func.__doc__
- return func
- return _decorator
diff --git a/src/azure-cli-core/azure/cli/core/extension.py b/src/azure-cli-core/azure/cli/core/extension.py
index 9f76abb337b..c862479fd83 100644
--- a/src/azure-cli-core/azure/cli/core/extension.py
+++ b/src/azure-cli-core/azure/cli/core/extension.py
@@ -7,10 +7,10 @@
import traceback
import json
-import azure.cli.core.azlogging as azlogging
-
from azure.cli.core._config import GLOBAL_CONFIG_DIR
+from knack.log import get_logger
+
_CUSTOM_EXT_DIR = os.environ.get('AZURE_EXTENSION_DIR')
EXTENSIONS_DIR = os.path.expanduser(_CUSTOM_EXT_DIR) if _CUSTOM_EXT_DIR else os.path.join(GLOBAL_CONFIG_DIR,
@@ -23,7 +23,7 @@
EXT_METADATA_MINCLICOREVERSION = 'azext.minCliCoreVersion'
EXT_METADATA_MAXCLICOREVERSION = 'azext.maxCliCoreVersion'
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
class ExtensionNotInstalledException(Exception):
diff --git a/src/azure-cli-core/azure/cli/core/extensions/__init__.py b/src/azure-cli-core/azure/cli/core/extensions/__init__.py
index 1e89e146590..d7c33a11221 100644
--- a/src/azure-cli-core/azure/cli/core/extensions/__init__.py
+++ b/src/azure-cli-core/azure/cli/core/extensions/__init__.py
@@ -3,10 +3,8 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.extensions.query import register as register_query
from azure.cli.core.extensions.transform import register as register_transform
-def register_extensions(application):
- register_query(application)
- register_transform(application)
+def register_extensions(cli_ctx):
+ register_transform(cli_ctx)
diff --git a/src/azure-cli-core/azure/cli/core/extensions/query.py b/src/azure-cli-core/azure/cli/core/extensions/query.py
deleted file mode 100644
index 273cca558f8..00000000000
--- a/src/azure-cli-core/azure/cli/core/extensions/query.py
+++ /dev/null
@@ -1,49 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-import collections
-
-
-def jmespath_type(raw_query):
- '''Compile the query with JMESPath and return the compiled result.
- JMESPath raises exceptions which subclass from ValueError.
- In addition though, JMESPath can raise a KeyError.
- ValueErrors are caught by argparse so argument errors can be generated.
- '''
- from jmespath import compile as compile_jmespath
- try:
- return compile_jmespath(raw_query)
- except KeyError:
- # Raise a ValueError which argparse can handle
- raise ValueError
-
-
-def _register_global_parameter(global_group):
- # Argparse uses __name__ of the function used for 'type' when generating error message.
- # We set __name__ for our function here.
- jmespath_type.__name__ = 'query'
- # Let the program know that we are adding a parameter --query
- global_group.add_argument('--query', dest='_jmespath_query', metavar='JMESPATH',
- help='JMESPath query string. See http://jmespath.org/ for more'
- ' information and examples.',
- type=jmespath_type)
-
-
-def register(application):
- def handle_query_parameter(**kwargs):
- args = kwargs['args']
- query_expression = args._jmespath_query # pylint: disable=protected-access
- del args._jmespath_query
- if query_expression:
- def filter_output(**kwargs):
- from jmespath import Options
- kwargs['event_data']['result'] = query_expression.search(
- kwargs['event_data']['result'], Options(collections.OrderedDict))
- application.remove(application.FILTER_RESULT, filter_output)
- application.register(application.FILTER_RESULT, filter_output)
- application.session['query_active'] = True
-
- application.register(application.GLOBAL_PARSER_CREATED, _register_global_parameter)
- application.register(application.COMMAND_PARSER_PARSED, handle_query_parameter)
diff --git a/src/azure-cli-core/azure/cli/core/extensions/transform.py b/src/azure-cli-core/azure/cli/core/extensions/transform.py
index 2dd8792a505..49e4df18b9c 100644
--- a/src/azure-cli-core/azure/cli/core/extensions/transform.py
+++ b/src/azure-cli-core/azure/cli/core/extensions/transform.py
@@ -7,10 +7,12 @@
from azure.cli.core.util import b64_to_hex
+import knack.events as events
-def register(application):
- application.register(application.TRANSFORM_RESULT, _resource_group_transform)
- application.register(application.TRANSFORM_RESULT, _x509_from_base64_to_hex_transform)
+
+def register(cli_ctx):
+ cli_ctx.register_event(events.EVENT_INVOKER_TRANSFORM_RESULT, _resource_group_transform)
+ cli_ctx.register_event(events.EVENT_INVOKER_TRANSFORM_RESULT, _x509_from_base64_to_hex_transform)
def _parse_id(strid):
@@ -55,9 +57,9 @@ def _add_x509_hex(obj):
_add_x509_hex(obj[item_key])
-def _resource_group_transform(**kwargs):
+def _resource_group_transform(_, **kwargs):
_add_resource_group(kwargs['event_data']['result'])
-def _x509_from_base64_to_hex_transform(**kwargs):
+def _x509_from_base64_to_hex_transform(_, **kwargs):
_add_x509_hex(kwargs['event_data']['result'])
diff --git a/src/azure-cli-core/azure/cli/core/help_files.py b/src/azure-cli-core/azure/cli/core/help_files.py
deleted file mode 100644
index 4b0fadb4a57..00000000000
--- a/src/azure-cli-core/azure/cli/core/help_files.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-
-# modules should add entries to helps in the form: "group command": "YAML help"
-helps = {}
-
-
-def _load_help_file(delimiters):
- import yaml
- if delimiters in helps:
- return yaml.load(helps[delimiters])
- return None
diff --git a/src/azure-cli-core/azure/cli/core/parser.py b/src/azure-cli-core/azure/cli/core/parser.py
index ae659ca67b6..cf2b363078d 100644
--- a/src/azure-cli-core/azure/cli/core/parser.py
+++ b/src/azure-cli-core/azure/cli/core/parser.py
@@ -9,12 +9,12 @@
import argcomplete
import azure.cli.core.telemetry as telemetry
-import azure.cli.core._help as _help
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
+from knack.log import get_logger
+from knack.parser import CLICommandParser
+from knack.util import CLIError
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
class IncorrectUsageError(CLIError):
@@ -24,41 +24,22 @@ class IncorrectUsageError(CLIError):
pass
-class CaseInsensitiveChoicesCompleter(argcomplete.completers.ChoicesCompleter): # pylint: disable=too-few-public-methods
-
- def __call__(self, prefix, **kwargs):
- return (c for c in self.choices if c.lower().startswith(prefix.lower()))
-
-
-# Override the choices completer with one that is case insensitive
-argcomplete.completers.ChoicesCompleter = CaseInsensitiveChoicesCompleter
-
-
def enable_autocomplete(parser):
argcomplete.autocomplete = argcomplete.CompletionFinder()
argcomplete.autocomplete(parser, validator=lambda c, p: c.lower().startswith(p.lower()),
default_completer=lambda _: ())
-class AzCliCommandParser(argparse.ArgumentParser):
- """ArgumentParser implementation specialized for the
- Azure CLI utility.
- """
+class AzCliCommandParser(CLICommandParser):
+ """ArgumentParser implementation specialized for the Azure CLI utility."""
- def __init__(self, **kwargs):
- self.subparsers = {}
- self.parents = kwargs.get('parents', [])
- self.help_file = kwargs.pop('help_file', None)
- # We allow a callable for description to be passed in in order to delay-load any help
- # or description for a command. We better stash it away before handing it off for
- # "normal" argparse handling...
- self._description = kwargs.pop('description', None)
+ def __init__(self, cli_ctx=None, **kwargs):
self.command_source = kwargs.pop('_command_source', None)
- super(AzCliCommandParser, self).__init__(**kwargs)
+ super(AzCliCommandParser, self).__init__(cli_ctx, **kwargs)
- def load_command_table(self, command_table):
- """Load a command table into our parser.
- """
+ # TODO: If not for _command_source this would not need to be overridden with 99% same implementation
+ def load_command_table(self, cmd_tbl):
+ """Load a command table into our parser."""
# If we haven't already added a subparser, we
# better do it.
if not self.subparsers:
@@ -66,7 +47,7 @@ def load_command_table(self, command_table):
sp.required = True
self.subparsers = {(): sp}
- for command_name, metadata in command_table.items():
+ for command_name, metadata in cmd_tbl.items():
subparser = self._get_subparser(command_name.split())
command_verb = command_name.split()[-1]
# To work around http://bugs.python.org/issue9253, we artificially add any new
@@ -83,7 +64,8 @@ def load_command_table(self, command_table):
help_file=metadata.help,
formatter_class=fc,
_command_source=metadata.command_source)
-
+ command_parser.cli_ctx = self.cli_ctx
+ command_validator = metadata.validator
argument_validators = []
argument_groups = {}
for arg in metadata.arguments.values():
@@ -95,55 +77,20 @@ def load_command_table(self, command_table):
except KeyError:
# group not found so create
group_name = '{} Arguments'.format(arg.arg_group)
- group = command_parser.add_argument_group(
- arg.arg_group, group_name)
+ group = command_parser.add_argument_group(arg.arg_group, group_name)
argument_groups[arg.arg_group] = group
- param = group.add_argument(
- *arg.options_list, **arg.options)
+ param = CLICommandParser._add_argument(group, arg)
else:
- try:
- param = command_parser.add_argument(
- *arg.options_list, **arg.options)
- except argparse.ArgumentError:
- dest = arg.options['dest']
- if dest in ['no_wait', 'raw']:
- pass
- else:
- raise
+ param = CLICommandParser._add_argument(command_parser, arg)
param.completer = arg.completer
command_parser.set_defaults(
func=metadata,
command=command_name,
- _validators=argument_validators,
+ _command_validator=command_validator,
+ _argument_validators=argument_validators,
_parser=command_parser)
- def _get_subparser(self, path):
- """For each part of the path, walk down the tree of
- subparsers, creating new ones if one doesn't already exist.
- """
- for length in range(0, len(path)):
- parent_subparser = self.subparsers.get(tuple(path[0:length]), None)
- if not parent_subparser:
- # No subparser exists for the given subpath - create and register
- # a new subparser.
- # Since we know that we always have a root subparser (we created)
- # one when we started loading the command table, and we walk the
- # path from left to right (i.e. for "cmd subcmd1 subcmd2", we start
- # with ensuring that a subparser for cmd exists, then for subcmd1,
- # subcmd2 and so on), we know we can always back up one step and
- # add a subparser if one doesn't exist
- grandparent_subparser = self.subparsers[tuple(path[:length - 1])]
- new_parser = grandparent_subparser.add_parser(path[length - 1])
-
- # Due to http://bugs.python.org/issue9253, we have to give the subparser
- # a destination and set it to required in order to get a
- # meaningful error
- parent_subparser = new_parser.add_subparsers(dest='subcommand')
- parent_subparser.required = True
- self.subparsers[tuple(path[0:length])] = parent_subparser
- return parent_subparser
-
def validation_error(self, message):
telemetry.set_user_fault('validation error')
return super(AzCliCommandParser, self).error(message)
@@ -156,6 +103,7 @@ def error(self, message):
self.exit(2)
def format_help(self):
+ from azure.cli.core._help import show_help
is_group = self.is_group()
telemetry.set_command_details(
@@ -163,9 +111,10 @@ def format_help(self):
extension_name=self.command_source.extension_name if self.command_source else None)
telemetry.set_success(summary='show help')
- _help.show_help(self.prog.split()[1:],
- self._actions[-1] if is_group else self,
- is_group)
+ show_help(self.prog.split()[0],
+ self.prog.split()[1:],
+ self._actions[-1] if is_group else self,
+ is_group)
self.exit()
def _check_value(self, action, value):
@@ -174,22 +123,3 @@ def _check_value(self, action, value):
if action.choices is not None and value not in action.choices:
msg = 'invalid choice: {}'.format(value)
raise argparse.ArgumentError(action, msg)
-
- def is_group(self):
- """ Determine if this parser instance represents a group
- or a command. Anything that has a func default is considered
- a group. This includes any dummy commands served up by the
- "filter out irrelevant commands based on argv" command filter """
- cmd = self._defaults.get('func', None)
- return not (cmd and cmd.handler)
-
- def __getattribute__(self, name):
- """ Since getting the description can be expensive (require module loads), we defer
- this until someone actually wants to use it (i.e. show help for the command)
- """
- if name == 'description':
- if self._description:
- self.description = self._description() \
- if callable(self._description) else self._description
- self._description = None
- return object.__getattribute__(self, name)
diff --git a/src/azure-cli-core/azure/cli/core/profiles/__init__.py b/src/azure-cli-core/azure/cli/core/profiles/__init__.py
index 18df900b1c7..4786cd8add1 100644
--- a/src/azure-cli-core/azure/cli/core/profiles/__init__.py
+++ b/src/azure-cli-core/azure/cli/core/profiles/__init__.py
@@ -4,32 +4,21 @@
# --------------------------------------------------------------------------------------------
# pylint: disable=unused-import
-from azure.cli.core.profiles._shared import (AZURE_API_PROFILES,
- ResourceType,
- PROFILE_TYPE,
- get_api_version as _sdk_get_api_version,
- supported_api_version as _sdk_supported_api_version,
- get_versioned_sdk as _sdk_get_versioned_sdk)
-
-# API Profiles currently supported in the CLI.
-API_PROFILES = {
- 'latest': AZURE_API_PROFILES['latest'],
- '2017-03-09-profile': AZURE_API_PROFILES['2017-03-09-profile']
-}
+from azure.cli.core.profiles._shared import AZURE_API_PROFILES, ResourceType, PROFILE_TYPE
-def get_api_version(resource_type):
+def get_api_version(cli_ctx, resource_type):
""" Get the current API version for a given resource_type.
:param resource_type: The resource type.
:type resource_type: ResourceType.
:returns: str -- The API version.
"""
- from azure.cli.core._profile import CLOUD
- return _sdk_get_api_version(CLOUD.profile, resource_type)
+ from azure.cli.core.profiles._shared import get_api_version as _sdk_get_api_version
+ return _sdk_get_api_version(cli_ctx.cloud.profile, resource_type)
-def supported_api_version(resource_type, min_api=None, max_api=None):
+def supported_api_version(cli_ctx, resource_type, min_api=None, max_api=None):
""" Method to check if the current API version for a given resource_type is supported.
If resource_type is set to None, the current profile version will be used as the basis of
the comparison.
@@ -41,17 +30,17 @@ def supported_api_version(resource_type, min_api=None, max_api=None):
:param max_api: The maximum API that is supported (inclusive). Omit for no maximum constraint.
"type max_api: str
:returns: bool -- True if the current API version of resource_type satisfies the
- min/max constraints. False otherwise.
+ min/max constraints. False otherwise.
"""
- from azure.cli.core._profile import CLOUD
- return _sdk_supported_api_version(CLOUD.profile, resource_type, min_api, max_api)
+ from azure.cli.core.profiles._shared import supported_api_version as _sdk_supported_api_version
+ return _sdk_supported_api_version(cli_ctx.cloud.profile, resource_type, min_api, max_api)
-def get_sdk(resource_type, *attr_args, **kwargs):
+def get_sdk(cli_ctx, resource_type, *attr_args, **kwargs):
""" Get any SDK object that's versioned using the current API version for resource_type.
Supported keyword arguments:
checked - A boolean specifying if this method should suppress/check import exceptions
- or not. By default, None is returned.
+ or not. By default, None is returned.
mod - A string specifying the submodule that all attr_args should be prefixed with.
Example usage:
@@ -59,8 +48,8 @@ def get_sdk(resource_type, *attr_args, **kwargs):
TableService = get_sdk(resource_type, 'table#TableService')
File, Directory = get_sdk(resource_type,
- 'file.models#File',
- 'file.models#Directory')
+ 'file.models#File',
+ 'file.models#Directory')
Same as above but get multiple models where File and Directory are both part of
'file.models' and we don't want to specify each full path.
@@ -78,5 +67,12 @@ def get_sdk(resource_type, *attr_args, **kwargs):
:returns: object -- e.g. an SDK module, model, enum, attribute. The number of objects returned
depends on len(attr_args).
"""
- from azure.cli.core._profile import CLOUD
- return _sdk_get_versioned_sdk(CLOUD.profile, resource_type, *attr_args, **kwargs)
+ from azure.cli.core.profiles._shared import get_versioned_sdk as _sdk_get_versioned_sdk
+ return _sdk_get_versioned_sdk(cli_ctx.cloud.profile, resource_type, *attr_args, **kwargs)
+
+
+# API Profiles currently supported in the CLI.
+API_PROFILES = {
+ 'latest': AZURE_API_PROFILES['latest'],
+ '2017-03-09-profile': AZURE_API_PROFILES['2017-03-09-profile']
+}
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 d2e8fa9ee0d..1b588d27b6f 100644
--- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py
+++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py
@@ -207,8 +207,11 @@ def get_versioned_sdk(api_profile, resource_type, *attr_args, **kwargs):
return import_module(sdk_path)
results = []
for mod_attr_path in attr_args:
- if sub_mod_prefix and '#' not in mod_attr_path:
- mod_attr_path = '{}#{}'.format(sub_mod_prefix, mod_attr_path)
- loaded_obj = _get_attr(sdk_path, mod_attr_path, checked)
- results.append(loaded_obj)
+ try:
+ if sub_mod_prefix and '#' not in mod_attr_path:
+ mod_attr_path = '{}#{}'.format(sub_mod_prefix, mod_attr_path)
+ loaded_obj = _get_attr(sdk_path, mod_attr_path, checked)
+ results.append(loaded_obj)
+ except Exception:
+ raise
return results[0] if len(results) == 1 else results
diff --git a/src/azure-cli-core/azure/cli/core/prompting.py b/src/azure-cli-core/azure/cli/core/prompting.py
deleted file mode 100644
index db77527c89f..00000000000
--- a/src/azure-cli-core/azure/cli/core/prompting.py
+++ /dev/null
@@ -1,120 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from __future__ import print_function
-import sys
-import getpass
-from six.moves import input # pylint: disable=redefined-builtin
-
-import azure.cli.core.azlogging as azlogging
-
-logger = azlogging.get_az_logger(__name__)
-
-
-class NoTTYException(Exception):
- pass
-
-
-def _verify_is_a_tty():
- if not sys.stdin.isatty():
- logger.debug('No tty available.')
- raise NoTTYException()
-
-
-def prompt(msg, help_string=None):
- _verify_is_a_tty()
- while True:
- val = input(msg)
- if val == '?' and help_string is not None:
- print(help_string)
- continue
- return val
-
-
-def prompt_int(msg, help_string=None):
- _verify_is_a_tty()
-
- while True:
- value = input(msg)
- if value == '?' and help_string is not None:
- print(help_string)
- continue
- try:
- return int(value)
- except ValueError:
- logger.warning('%s is not a valid number', value)
-
-
-def prompt_pass(msg='Password: ', confirm=False, help_string=None):
- _verify_is_a_tty()
- while True:
- password = getpass.getpass(msg)
- if password == '?' and help_string is not None:
- print(help_string)
- continue
- if confirm:
- password2 = getpass.getpass('Confirm ' + msg)
- if password != password2:
- logger.warning('Passwords do not match.')
- continue
- return password
-
-
-def prompt_y_n(msg, default=None, help_string=None):
- return _prompt_bool(msg, 'y', 'n', default=default, help_string=help_string)
-
-
-def prompt_t_f(msg, default=None, help_string=None):
- return _prompt_bool(msg, 't', 'f', default=default, help_string=help_string)
-
-
-def _prompt_bool(msg, true_str, false_str, default=None, help_string=None):
- _verify_is_a_tty()
- if default not in [None, true_str, false_str]:
- raise ValueError("Valid values for default are {}, {} or None".format(true_str, false_str))
- y = true_str.upper() if default == true_str else true_str
- n = false_str.upper() if default == false_str else false_str
- while True:
- ans = input('{} ({}/{}): '.format(msg, y, n))
- if ans == '?' and help_string is not None:
- print(help_string)
- continue
- if ans.lower() == n.lower():
- return False
- if ans.lower() == y.lower():
- return True
- if default and not ans:
- return default == y.lower()
-
-
-def prompt_choice_list(msg, a_list, default=1, help_string=None):
- '''Prompt user to select from a list of possible choices.
- :param str msg:A message displayed to the user before the choice list
- :param str a_list:The list of choices (list of strings or list of dicts with 'name' & 'desc')
- :param int default:The default option that should be chosen if user doesn't enter a choice
- :returns: The list index of the item chosen.
- '''
- _verify_is_a_tty()
- options = '\n'.join([' [{}] {}{}'
- .format(i + 1,
- x['name'] if isinstance(x, dict) and 'name' in x else x,
- ' - ' + x['desc'] if isinstance(x, dict) and 'desc' in x else '')
- for i, x in enumerate(a_list)])
- allowed_vals = list(range(1, len(a_list) + 1))
- while True:
- val = input('{}\n{}\nPlease enter a choice [{}]: '.format(msg, options, default))
- if val == '?' and help_string is not None:
- print(help_string)
- continue
- if not val:
- val = '{}'.format(default)
- try:
- ans = int(val)
- if ans in allowed_vals:
- # array index is 0-based, user input is 1-based
- return ans - 1
- raise ValueError
- except ValueError:
- logger.warning('Valid values are %s', allowed_vals)
diff --git a/src/azure-cli-core/azure/cli/core/sdk/util.py b/src/azure-cli-core/azure/cli/core/sdk/util.py
index 8e76680614a..39c00e80376 100644
--- a/src/azure-cli-core/azure/cli/core/sdk/util.py
+++ b/src/azure-cli-core/azure/cli/core/sdk/util.py
@@ -3,119 +3,184 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.commands import register_cli_argument, cli_command
-from azure.cli.core.commands.parameters import ignore_type
-from azure.cli.core.commands.arm import cli_generic_update_command
+from azure.cli.core.commands.arm import _cli_generic_update_command, _cli_generic_wait_command
+from knack.arguments import ignore_type, ArgumentsContext
+from knack.commands import CommandGroup as KnackCommandGroup
+from knack.log import get_logger
+from knack.util import CLIError
-# COMMANDS UTILITIES
+logger = get_logger(__name__)
-def create_service_adapter(service_model, service_class=None):
- def _service_adapter(method_name):
- return '{}#{}.{}'.format(service_model, service_class, method_name) if service_class else \
- '{}#{}'.format(service_model, method_name)
+# COMMANDS UTILITIES
- return _service_adapter
+CLI_COMMAND_KWARGS = ['transform', 'table_transformer', 'confirmation', 'exception_handler', 'min_api', 'max_api',
+ 'client_factory', 'operations_tmpl', 'no_wait_param', 'validator', 'resource_type']
# pylint: disable=too-few-public-methods
-class ServiceGroup(object):
- def __init__(self, scope, client_factory, service_adapter=None, custom_path=None,
- exception_handler=None):
- self._scope = scope
- self._factory = client_factory
- self._service_adapter = service_adapter or (lambda name: name)
- self._custom_path = custom_path
- self._exception_handler = exception_handler
+class CliCommandType(object):
- def __enter__(self):
- return self
+ def __init__(self, overrides=None, **kwargs):
+ if isinstance(overrides, str):
+ raise ValueError("Overrides has to be a {} (cannot be a string)".format(CliCommandType.__name__))
+ unrecognized_kwargs = [x for x in kwargs if x not in CLI_COMMAND_KWARGS]
+ if unrecognized_kwargs:
+ raise TypeError('unrecognized kwargs: {}'.format(unrecognized_kwargs))
+ self.settings = {}
+ self.update(overrides, **kwargs)
- def __exit__(self, exc_type, exc_val, exc_tb):
- pass
+ def update(self, other=None, **kwargs):
+ if other:
+ self.settings.update(**other.settings)
+ self.settings.update(**kwargs)
- def group(self, group_name, exception_handler=None):
- return CommandGroup(self._scope, group_name, self._factory, self._service_adapter,
- self._custom_path,
- exception_handler=exception_handler or self._exception_handler)
+class _CommandGroup(KnackCommandGroup):
-class CommandGroup(object):
- def __init__(self, scope, group_name, client_factory, service_adapter=None, custom_path=None,
- exception_handler=None):
- self._scope = scope
- self._group_name = group_name
- self._client_factory = client_factory
- self._service_adapter = service_adapter or (lambda name: name)
- self._custom_path = custom_path
- self._exception_handler = exception_handler
+ def __init__(self, module_name, command_loader, group_name, **kwargs):
+ operations_tmpl = kwargs.pop('operations_tmpl', None)
+ super(_CommandGroup, self).__init__(module_name, command_loader, group_name,
+ operations_tmpl, **kwargs)
+ if operations_tmpl:
+ self.group_kwargs['operations_tmpl'] = operations_tmpl
+ self.is_stale = False
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
- pass
+ self.is_stale = True
+
+ def _check_stale(self):
+ if self.is_stale:
+ message = "command authoring error: command group '{}' is stale! " \
+ "Check that the subsequent block for has a corresponding `as` statement.".format(self.group_name)
+ logger.error(message)
+ raise CLIError(message)
- def command(self, name, method_name, transform=None, table_transformer=None, confirmation=None,
- exception_handler=None, deprecate_info=None, no_wait_param=None):
+ # pylint: disable=arguments-differ
+ def command(self, name, method_name=None, command_type=None, **kwargs):
"""
Register a CLI command
:param name: Name of the command as it will be called on the command line
:type name: str
- :param method_name: Name of the method the command maps to on the service adapter
+ :param method_name: Name of the method the command maps to
:type method_name: str
- :param transform: Transform function for transforming the output of the command
- :type transform: function
- :param table_transformer: Transform function to be applied to table output to create a
- better output format for tables.
- :type table_transformer: function
- :param confirmation: Prompt prior to the action being executed. This is useful if the action
- would cause a loss of data.
- :type confirmation: bool
- :param exception_handler: Exception handler for handling non-standard exceptions
- :type exception_handler: function
- :return: None
+ :param command_type: CliCommandType object containing settings to apply to the entire command group
+ :type command_type: CliCommandType
+ :param kwargs: Keyword arguments. Supported keyword arguments include:
+ - client_factory: Callable which returns a client needed to access the underlying command method. (function)
+ - confirmation: Prompt prior to the action being executed. This is useful if the action
+ would cause a loss of data. (bool)
+ - exception_handler: Exception handler for handling non-standard exceptions (function)
+ - no_wait_param: The name of a boolean parameter that will be exposed as `--no-wait` to skip long running
+ operation polling. (string)
+ - transform: Transform function for transforming the output of the command (function)
+ - table_transformer: Transform function or JMESPath query to be applied to table output to create a
+ better output format for tables. (function or string)
+ - resource_type: The ResourceType enum value to use with min or max API. (ResourceType)
+ - min_api: Minimum API version required for commands within the group (string)
+ - max_api: Maximum API version required for commands within the group (string)
:rtype: None
"""
- cli_command(self._scope,
- '{} {}'.format(self._group_name, name),
- self._service_adapter(method_name),
- client_factory=self._client_factory,
- transform=transform,
- table_transformer=table_transformer,
- confirmation=confirmation,
- deprecate_info=deprecate_info,
- exception_handler=exception_handler or self._exception_handler,
- no_wait_param=no_wait_param)
-
- def custom_command(self, name, custom_func_name, confirmation=None,
- exception_handler=None, deprecate_info=None, no_wait_param=None, table_transformer=None):
- cli_command(self._scope,
- '{} {}'.format(self._group_name, name),
- self._custom_path.format(custom_func_name),
- client_factory=self._client_factory,
- confirmation=confirmation,
- deprecate_info=deprecate_info,
- exception_handler=exception_handler or self._exception_handler,
- no_wait_param=no_wait_param,
- table_transformer=table_transformer)
-
- def generic_update_command(self, name, getter_op, setter_op, custom_func_name=None,
- setter_arg_name='parameters', no_wait_param=None, **kwargs):
+ self._check_stale()
+ merged_kwargs = self.group_kwargs.copy()
+ group_command_type = merged_kwargs.get('command_type', None)
+ if command_type:
+ merged_kwargs.update(command_type.settings)
+ elif group_command_type:
+ merged_kwargs.update(group_command_type.settings)
+ merged_kwargs.update(kwargs)
+
+ operations_tmpl = merged_kwargs.get('operations_tmpl')
+ command_name = '{} {}'.format(self.group_name, name) if self.group_name else name
+ operation = operations_tmpl.format(method_name) if operations_tmpl else None
+ self.command_loader._cli_command(command_name, operation, **merged_kwargs) # pylint: disable=protected-access
+
+ def custom_command(self, name, method_name, **kwargs):
+ """
+ Register a custome CLI command.
+ :param name: Name of the command as it will be called on the command line
+ :type name: str
+ :param method_name: Name of the method the command maps to
+ :type method_name: str
+ :param kwargs: Keyword arguments. Supported keyword arguments include:
+ - client_factory: Callable which returns a client needed to access the underlying command method. (function)
+ - confirmation: Prompt prior to the action being executed. This is useful if the action
+ would cause a loss of data. (bool)
+ - exception_handler: Exception handler for handling non-standard exceptions (function)
+ - no_wait_param: The name of a boolean parameter that will be exposed as `--no-wait` to skip long
+ running operation polling. (string)
+ - transform: Transform function for transforming the output of the command (function)
+ - table_transformer: Transform function or JMESPath query to be applied to table output to create a
+ better output format for tables. (function or string)
+ - resource_type: The ResourceType enum value to use with min or max API. (ResourceType)
+ - min_api: Minimum API version required for commands within the group (string)
+ - max_api: Maximum API version required for commands within the group (string)
+ :rtype: None
+ """
+ self._check_stale()
+ merged_kwargs = self.group_kwargs.copy()
+ custom_command_type = merged_kwargs.get('custom_command_type', None)
+ if not custom_command_type:
+ raise CLIError('Module does not have `custom_command_type` set!')
+ if custom_command_type:
+ merged_kwargs.update(custom_command_type.settings)
+ merged_kwargs.update(kwargs)
+
+ command_name = '{} {}'.format(self.group_name, name) if self.group_name else name
+ self.command_loader._cli_command(command_name, # pylint: disable=protected-access
+ operation=merged_kwargs['operations_tmpl'].format(method_name),
+ **merged_kwargs)
+
+ def generic_update_command(self, name,
+ getter_name='get', setter_name='create_or_update', setter_arg_name='parameters',
+ child_collection_prop_name=None, child_collection_key='name', child_arg_name='item_name',
+ custom_func_name=None, **kwargs):
+ self._check_stale()
+ merged_kwargs = self.group_kwargs.copy()
+ merged_kwargs.update(kwargs)
+
+ operations_tmpl = merged_kwargs.get('operations_tmpl', None)
+ if not operations_tmpl:
+ group_command_type = merged_kwargs.get('command_type', None)
+ operations_tmpl = group_command_type.settings['operations_tmpl'] if group_command_type else None
+ getter_tmpl = operations_tmpl
+ setter_tmpl = operations_tmpl
+
+ custom_tmpl = None
if custom_func_name:
- custom_function_op = self._custom_path.format(custom_func_name)
- else:
- custom_function_op = None
-
- cli_generic_update_command(
- self._scope,
- '{} {}'.format(self._group_name, name),
- self._service_adapter(getter_op),
- self._service_adapter(setter_op),
- factory=self._client_factory,
- custom_function_op=custom_function_op,
+ custom_tmpl = self.group_kwargs.get('custom_command_type').settings['operations_tmpl']
+
+ _cli_generic_update_command(
+ self.command_loader,
+ '{} {}'.format(self.group_name, name),
+ getter_op=getter_tmpl.format(getter_name),
+ setter_op=setter_tmpl.format(setter_name),
setter_arg_name=setter_arg_name,
- no_wait_param=no_wait_param, **kwargs)
+ custom_function_op=custom_tmpl.format(custom_func_name) if custom_func_name else None,
+ child_collection_prop_name=child_collection_prop_name,
+ child_collection_key=child_collection_key,
+ child_arg_name=child_arg_name,
+ **merged_kwargs)
+
+ def generic_wait_command(self, name, getter_name='get', **kwargs):
+ self._check_stale()
+ merged_kwargs = self.group_kwargs.copy()
+ merged_kwargs.update(kwargs)
+
+ operations_tmpl = merged_kwargs.get('operations_tmpl', None)
+ if not operations_tmpl:
+ command_type = merged_kwargs.get('command_type', None)
+ operations_tmpl = command_type.settings['operations_tmpl'] if command_type else None
+ getter_tmpl = operations_tmpl
+
+ _cli_generic_wait_command(
+ self.command_loader,
+ '{} {}'.format(self.group_name, name),
+ getter_op=getter_tmpl.format(getter_name),
+ **merged_kwargs)
# PARAMETERS UTILITIES
@@ -135,51 +200,65 @@ def _patch_action(argument):
return _patch_action
-class ParametersContext(object):
- def __init__(self, command):
- self._commmand = command
+class _ParametersContext(ArgumentsContext):
+
+ def __init__(self, command_loader, scope, **kwargs):
+ super(_ParametersContext, self).__init__(command_loader, scope)
+ self.scope = scope # this is called "command" in knack, but that is not an accurate name
+ self.group_kwargs = kwargs
+ self.is_stale = False
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
- pass
-
- def ignore(self, argument_name):
- register_cli_argument(self._commmand, argument_name, ignore_type)
-
- def argument(self, argument_name, arg_type=None, **kwargs):
- register_cli_argument(self._commmand, argument_name, arg_type=arg_type, **kwargs)
-
- def register_alias(self, argument_name, options_list, **kwargs):
- register_cli_argument(self._commmand, argument_name, options_list=options_list, **kwargs)
-
- def register(self, argument_name, options_list, **kwargs):
- register_cli_argument(self._commmand, argument_name, options_list=options_list, **kwargs)
-
- def extra(self, argument_name, **kwargs):
- from azure.cli.core.commands import register_extra_cli_argument
- register_extra_cli_argument(self._commmand, argument_name, **kwargs)
-
- def expand(self, argument_name, model_type, group_name=None, patches=None):
+ self.is_stale = True
+
+ def _check_stale(self):
+ if self.is_stale:
+ message = "command authoring error: argument context '{}' is stale! " \
+ "Check that the subsequent block for has a corresponding `as` statement.".format(self.scope)
+ logger.error(message)
+ raise CLIError(message)
+
+ # pylint: disable=arguments-differ
+ def argument(self, dest, arg_type=None, **kwargs):
+ self._check_stale()
+ merged_kwargs = self.group_kwargs.copy()
+ if arg_type:
+ merged_kwargs.update(arg_type.settings)
+ merged_kwargs.update(kwargs)
+ if self.command_loader.supported_api_version(resource_type=merged_kwargs.get('resource_type'),
+ min_api=merged_kwargs.get('min_api'),
+ max_api=merged_kwargs.get('max_api')):
+ super(_ParametersContext, self).argument(dest, **merged_kwargs)
+ else:
+ self.ignore(dest)
+
+ # pylint: disable=arguments-differ
+ def alias(self, dest, options_list, **kwargs):
+ self._check_stale()
+ merged_kwargs = self.group_kwargs.copy()
+ arg_type = kwargs.get('arg_type', None)
+ if arg_type:
+ merged_kwargs.update(arg_type.settings)
+ merged_kwargs.update(kwargs)
+ super(_ParametersContext, self).register_alias(dest, options_list, **kwargs)
+
+ def expand(self, dest, model_type, group_name=None, patches=None):
# TODO:
# two privates symbols are imported here. they should be made public or this utility class
# should be moved into azure.cli.core
- from azure.cli.core.commands import _cli_extra_argument_registry
- from azure.cli.core.commands._introspection import \
- (extract_args_from_signature, _option_descriptions)
-
from azure.cli.core.sdk.validators import get_complex_argument_processor
-
+ from knack.introspection import extract_args_from_signature, option_descriptions
+ self._check_stale()
if not patches:
patches = dict()
- self.ignore(argument_name)
-
# fetch the documentation for model parameters first. for models, which are the classes
# derive from msrest.serialization.Model and used in the SDK API to carry parameters, the
# document of their properties are attached to the classes instead of constructors.
- parameter_docs = _option_descriptions(model_type)
+ parameter_docs = option_descriptions(model_type)
expanded_arguments = []
for name, arg in extract_args_from_signature(model_type.__init__):
@@ -192,11 +271,23 @@ def expand(self, argument_name, model_type, group_name=None, patches=None):
if name in patches:
patches[name](arg)
- _cli_extra_argument_registry[self._commmand][name] = arg
+ self.extra(name, arg_type=arg)
expanded_arguments.append(name)
- self.argument(argument_name,
+ self.argument(dest,
arg_type=ignore_type,
- validator=get_complex_argument_processor(expanded_arguments,
- argument_name,
- model_type))
+ validator=get_complex_argument_processor(expanded_arguments, dest, model_type))
+
+ def ignore(self, *args):
+ self._check_stale()
+ for arg in args:
+ super(_ParametersContext, self).ignore(arg)
+
+ def extra(self, dest, **kwargs):
+ self._check_stale()
+ merged_kwargs = self.group_kwargs.copy()
+ merged_kwargs.update(kwargs)
+ if self.command_loader.supported_api_version(resource_type=merged_kwargs.get('resource_type'),
+ min_api=merged_kwargs.get('min_api'),
+ max_api=merged_kwargs.get('max_api')):
+ super(_ParametersContext, self).extra(dest, **merged_kwargs)
diff --git a/src/azure-cli-core/azure/cli/core/telemetry.py b/src/azure-cli-core/azure/cli/core/telemetry.py
index 1a09c879de2..35b2fc2f0c1 100644
--- a/src/azure-cli-core/azure/cli/core/telemetry.py
+++ b/src/azure-cli-core/azure/cli/core/telemetry.py
@@ -24,16 +24,6 @@
decorators.is_diagnostics_mode = telemetry_core.in_diagnostic_mode
-def _user_agrees_to_telemetry(func):
- @wraps(func)
- def _wrapper(*args, **kwargs):
- if not _get_azure_cli_config().getboolean('core', 'collect_telemetry', fallback=True):
- return
- return func(*args, **kwargs)
-
- return _wrapper
-
-
class TelemetrySession(object): # pylint: disable=too-many-instance-attributes
start_time = None
end_time = None
@@ -135,7 +125,7 @@ def _get_azure_cli_properties(self):
self.set_custom_properties(result, 'Source', source)
self.set_custom_properties(result,
'ClientRequestId',
- lambda: self.application.session['headers'][
+ lambda: self.application.data['headers'][
'x-ms-client-request-id'])
self.set_custom_properties(result, 'CoreVersion', _get_core_version)
self.set_custom_properties(result, 'InstallationId', _get_installation_id)
@@ -143,12 +133,10 @@ def _get_azure_cli_properties(self):
self.set_custom_properties(result, 'UserAzureId', _get_user_azure_id)
self.set_custom_properties(result, 'UserAzureSubscriptionId', _get_azure_subscription_id)
self.set_custom_properties(result, 'DefaultOutputType',
- lambda: _get_azure_cli_config().get('core', 'output',
- fallback='unknown'))
+ lambda: _get_config().get('core', 'output', fallback='unknown'))
self.set_custom_properties(result, 'EnvironmentVariables', _get_env_string)
self.set_custom_properties(result, 'Locale',
- lambda: '{},{}'.format(locale.getdefaultlocale()[0],
- locale.getdefaultlocale()[1]))
+ lambda: '{},{}'.format(locale.getdefaultlocale()[0], locale.getdefaultlocale()[1]))
self.set_custom_properties(result, 'StartTime', str(self.start_time))
self.set_custom_properties(result, 'EndTime', str(self.end_time))
self.set_custom_properties(result, 'OutputType', self.output_type)
@@ -195,8 +183,18 @@ def set_custom_properties(cls, prop, name, value):
_session = TelemetrySession()
+def _user_agrees_to_telemetry(func):
+ @wraps(func)
+ def _wrapper(*args, **kwargs):
+ if not _get_config().getboolean('core', 'collect_telemetry', fallback=True):
+ return
+ return func(*args, **kwargs)
+
+ return _wrapper
+
# public api
+
@decorators.suppress_all_exceptions(raise_in_diagnostics=True)
def start():
_session.start_time = datetime.datetime.now()
@@ -273,9 +271,8 @@ def set_module_correlation_data(correlation_data):
@decorators.call_once
@decorators.suppress_all_exceptions(fallback_return={})
-def _get_azure_cli_config():
- from azure.cli.core._config import az_config
- return az_config
+def _get_config():
+ return _session.application.config
# internal utility functions
@@ -295,7 +292,7 @@ def _get_installation_id():
@decorators.suppress_all_exceptions(fallback_return=None)
def _get_profile():
from azure.cli.core._profile import Profile
- return Profile()
+ return Profile(_session.application)
@decorators.suppress_all_exceptions(fallback_return='')
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_api_profiles.py b/src/azure-cli-core/azure/cli/core/tests/test_api_profiles.py
index 6ba2ee41e98..8d6b091955b 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_api_profiles.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_api_profiles.py
@@ -6,137 +6,153 @@
import unittest
import mock
-from azure.cli.core.profiles import (get_api_version,
- supported_api_version,
- PROFILE_TYPE,
- ResourceType)
+from azure.cli.core.profiles import ResourceType, PROFILE_TYPE, get_api_version, supported_api_version
from azure.cli.core.profiles._shared import APIVersionException
from azure.cli.core.cloud import Cloud
+from azure.cli.testsdk import TestCli
class TestAPIProfiles(unittest.TestCase):
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_get_api_version(self):
# Can get correct resource type API version
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
- self.assertEqual(get_api_version(ResourceType.MGMT_STORAGE), '2020-10-10')
+ self.assertEqual(get_api_version(cli, ResourceType.MGMT_STORAGE), '2020-10-10')
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_get_api_version_invalid_rt(self):
# Resource Type not in profile
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
with self.assertRaises(APIVersionException):
- get_api_version(ResourceType.MGMT_COMPUTE)
+ get_api_version(cli, ResourceType.MGMT_COMPUTE)
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='not-a-real-profile'))
def test_get_api_version_invalid_active_profile(self):
# The active profile is not in our profile dict
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='not-a-real-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
with self.assertRaises(APIVersionException):
- get_api_version(ResourceType.MGMT_STORAGE)
+ get_api_version(cli, ResourceType.MGMT_STORAGE)
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='not-a-real-profile'))
def test_supported_api_version_invalid_profile_name(self):
# Invalid name for the profile name
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='not-a-real-profile')
with self.assertRaises(ValueError):
- supported_api_version(PROFILE_TYPE, min_api='2000-01-01')
+ supported_api_version(cli, PROFILE_TYPE, min_api='2000-01-01')
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_get_api_version_invalid_rt_2(self):
# None is not a valid resource type
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
with self.assertRaises(APIVersionException):
- get_api_version(None)
+ get_api_version(cli, None)
def test_supported_api_profile_no_constraints(self):
# At least a min or max version must be specified
+ cli = TestCli()
with self.assertRaises(ValueError):
- supported_api_version(PROFILE_TYPE)
+ supported_api_version(cli, PROFILE_TYPE)
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2000-01-01-profile'))
def test_supported_api_profile_min_constraint(self):
- self.assertTrue(supported_api_version(PROFILE_TYPE, min_api='2000-01-01'))
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2000-01-01-profile')
+ self.assertTrue(supported_api_version(cli, PROFILE_TYPE, min_api='2000-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2000-01-01-profile-preview'))
def test_supported_api_profile_min_constraint_not_supported(self):
- self.assertFalse(supported_api_version(PROFILE_TYPE, min_api='2000-01-02'))
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2000-01-01-profile-preview')
+ self.assertFalse(supported_api_version(cli, PROFILE_TYPE, min_api='2000-01-02'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2000-01-01-profile'))
def test_supported_api_profile_min_max_constraint(self):
- self.assertTrue(supported_api_version(PROFILE_TYPE,
- min_api='2000-01-01',
- max_api='2000-01-01'))
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2000-01-01-profile')
+ self.assertTrue(supported_api_version(cli, PROFILE_TYPE, min_api='2000-01-01', max_api='2000-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2000-01-01-profile'))
def test_supported_api_profile_max_constraint_not_supported(self):
- self.assertFalse(supported_api_version(PROFILE_TYPE, max_api='1999-12-30'))
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2000-01-01-profile')
+ self.assertFalse(supported_api_version(cli, PROFILE_TYPE, max_api='1999-12-30'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2000-01-01-profile'))
def test_supported_api_profile_preview_constraint(self):
- self.assertTrue(supported_api_version(PROFILE_TYPE, min_api='2000-01-01-preview'))
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2000-01-01-profile')
+ self.assertTrue(supported_api_version(cli, PROFILE_TYPE, min_api='2000-01-01-preview'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2000-01-01-profile-preview'))
def test_supported_api_profile_preview_constraint_in_profile(self):
- self.assertFalse(supported_api_version(PROFILE_TYPE, min_api='2000-01-01'))
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2000-01-01-profile-preview')
+ self.assertFalse(supported_api_version(cli, PROFILE_TYPE, min_api='2000-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='latest'))
def test_supported_api_profile_latest(self):
- self.assertTrue(supported_api_version(PROFILE_TYPE, min_api='2000-01-01'))
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='latest')
+ self.assertTrue(supported_api_version(cli, PROFILE_TYPE, min_api='2000-01-01'))
def test_supported_api_version_no_constraints(self):
# At least a min or max version must be specified
+ cli = TestCli()
with self.assertRaises(ValueError):
- supported_api_version(ResourceType.MGMT_STORAGE)
+ supported_api_version(cli, ResourceType.MGMT_STORAGE)
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_supported_api_version_min_constraint(self):
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
- self.assertTrue(supported_api_version(ResourceType.MGMT_STORAGE, min_api='2000-01-01'))
+ self.assertTrue(supported_api_version(cli, ResourceType.MGMT_STORAGE, min_api='2000-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_supported_api_version_max_constraint(self):
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
- self.assertTrue(supported_api_version(ResourceType.MGMT_STORAGE, max_api='2021-01-01'))
+ self.assertTrue(supported_api_version(cli, ResourceType.MGMT_STORAGE, max_api='2021-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_supported_api_version_min_max_constraint(self):
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
- self.assertTrue(supported_api_version(ResourceType.MGMT_STORAGE,
- min_api='2020-01-01',
- max_api='2021-01-01'))
+ self.assertTrue(
+ supported_api_version(cli, ResourceType.MGMT_STORAGE, min_api='2020-01-01', max_api='2021-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_supported_api_version_max_constraint_not_supported(self):
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
- self.assertFalse(supported_api_version(ResourceType.MGMT_STORAGE, max_api='2019-01-01'))
+ self.assertFalse(supported_api_version(cli, ResourceType.MGMT_STORAGE, max_api='2019-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_supported_api_version_min_constraint_not_supported(self):
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
- self.assertFalse(supported_api_version(ResourceType.MGMT_STORAGE, min_api='2021-01-01'))
+ self.assertFalse(supported_api_version(cli, ResourceType.MGMT_STORAGE, min_api='2021-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_supported_api_version_preview_constraint(self):
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10-preview'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
- self.assertTrue(supported_api_version(ResourceType.MGMT_STORAGE, min_api='2020-01-01'))
+ self.assertTrue(supported_api_version(cli, ResourceType.MGMT_STORAGE, min_api='2020-01-01'))
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('TestCloud', profile='2017-01-01-profile'))
def test_supported_api_version_invalid_rt_for_profile(self):
+ cli = TestCli()
+ cli.cloud = Cloud('TestCloud', profile='2017-01-01-profile')
test_profile = {'2017-01-01-profile': {ResourceType.MGMT_STORAGE: '2020-10-10'}}
with mock.patch('azure.cli.core.profiles._shared.AZURE_API_PROFILES', test_profile):
with self.assertRaises(APIVersionException):
- supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2020-01-01')
+ supported_api_version(cli, ResourceType.MGMT_COMPUTE, min_api='2020-01-01')
if __name__ == '__main__':
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_application.py b/src/azure-cli-core/azure/cli/core/tests/test_application.py
index 76d3122ccca..d375e3ad21a 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_application.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_application.py
@@ -5,131 +5,82 @@
import unittest
+import mock
import os
import tempfile
-from azure.cli.core.application import Application, Configuration, IterateAction
-from azure.cli.core.commands import CliCommand
-from azure.cli.core.util import CLIError
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.commands import AzCliCommand
+from azure.cli.core.commands.validators import IterateAction
+
+from azure.cli.testsdk import TestCli
+
+from knack.util import CLIError
class TestApplication(unittest.TestCase):
def test_client_request_id_is_not_assigned_when_application_is_created(self):
- app = Application()
- self.assertNotIn('x-ms-client-request-id', app.session['headers'])
+ cli = TestCli()
+ self.assertNotIn('x-ms-client-request-id', cli.data['headers'])
def test_client_request_id_is_refreshed_correctly(self):
- app = Application()
- app.refresh_request_id()
- self.assertIn('x-ms-client-request-id', app.session['headers'])
+ cli = TestCli()
+ cli.refresh_request_id()
+ self.assertIn('x-ms-client-request-id', cli.data['headers'])
- old_id = app.session['headers']['x-ms-client-request-id']
+ old_id = cli.data['headers']['x-ms-client-request-id']
- app.refresh_request_id()
- self.assertIn('x-ms-client-request-id', app.session['headers'])
- self.assertNotEquals(old_id, app.session['headers']['x-ms-client-request-id'])
+ cli.refresh_request_id()
+ self.assertIn('x-ms-client-request-id', cli.data['headers'])
+ self.assertNotEquals(old_id, cli.data['headers']['x-ms-client-request-id'])
def test_client_request_id_is_refreshed_after_execution(self):
def _handler(args):
return True
- config = Configuration()
- config.get_command_table = lambda *_: {'test': CliCommand('test', _handler)}
- app = Application(config)
+ class TestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ self.command_table = {'test': AzCliCommand(self, 'test', _handler)}
+ return self.command_table
- app.execute(['test'])
- self.assertIn('x-ms-client-request-id', app.session['headers'])
- old_id = app.session['headers']['x-ms-client-request-id']
+ cli = TestCli(commands_loader_cls=TestCommandsLoader)
- app.execute(['test'])
- self.assertIn('x-ms-client-request-id', app.session['headers'])
- self.assertNotEquals(old_id, app.session['headers']['x-ms-client-request-id'])
+ cli.invoke(['test'])
+ self.assertIn('x-ms-client-request-id', cli.data['headers'])
+ old_id = cli.data['headers']['x-ms-client-request-id']
+
+ cli.invoke(['test'])
+ self.assertIn('x-ms-client-request-id', cli.data['headers'])
+ self.assertNotEquals(old_id, cli.data['headers']['x-ms-client-request-id'])
def test_application_register_and_call_handlers(self):
handler_called = [False]
- def handler(**kwargs):
+ def handler(*args, **kwargs):
kwargs['args'][0] = True
- def other_handler(**kwargs):
+ def other_handler(*args, **kwargs):
self.assertEqual(kwargs['args'], 'secret sauce')
- app = Application()
- app.initialize(Configuration())
+ cli = TestCli()
- app.raise_event('was_handler_called', args=handler_called)
- self.assertFalse(handler_called[0],
- "Raising event with no handlers registered somehow failed...")
+ cli.raise_event('was_handler_called', args=handler_called)
+ self.assertFalse(handler_called[0], "Raising event with no handlers registered somehow failed...")
- app.register('was_handler_called', handler)
+ cli.register_event('was_handler_called', handler)
self.assertFalse(handler_called[0])
# Registered handler won't get called if event with different name
# is raised...
- app.raise_event('other_handler_called', args=handler_called)
+ cli.raise_event('other_handler_called', args=handler_called)
self.assertFalse(handler_called[0], 'Wrong handler called!')
- app.raise_event('was_handler_called', args=handler_called)
+ cli.raise_event('was_handler_called', args=handler_called)
self.assertTrue(handler_called[0], "Handler didn't get called")
- app.raise_event('other_handler_called', args='secret sauce')
-
- def test_list_value_parameter(self):
- hellos = []
-
- def handler(args):
- hellos.append(args)
-
- command = CliCommand('test command', handler)
- command.add_argument('hello', '--hello', nargs='+', action=IterateAction)
- command.add_argument('something', '--something')
- cmd_table = {'test command': command}
-
- argv = 'az test command --hello world sir --something else'.split()
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- application = Application(config)
- application.execute(argv[1:])
-
- self.assertEqual(2, len(hellos))
- self.assertEqual(hellos[0]['hello'], 'world')
- self.assertEqual(hellos[0]['something'], 'else')
- self.assertEqual(hellos[1]['hello'], 'sir')
- self.assertEqual(hellos[1]['something'], 'else')
-
- def test_case_insensitive_command_path(self):
- import argparse
-
- def handler(args):
- return 'PASSED'
-
- command = CliCommand('test command', handler)
- command.add_argument('var', '--var', '-v')
- cmd_table = {'test command': command}
-
- def _test(cmd_line):
- argv = cmd_line.split()
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- application = Application(config)
- return application.execute(argv[1:])
-
- # case insensitive command paths
- result = _test('az TEST command --var blah')
- self.assertEqual(result.result, 'PASSED')
-
- result = _test('az test COMMAND --var blah')
- self.assertEqual(result.result, 'PASSED')
-
- result = _test('az test command -v blah')
- self.assertEqual(result.result, 'PASSED')
-
- # verify that long and short options remain case sensitive
- with self.assertRaises(SystemExit):
- _test('az test command --vAR blah')
-
- with self.assertRaises(SystemExit):
- _test('az test command -V blah')
+ cli.raise_event('other_handler_called', args='secret sauce')
def test_expand_file_prefixed_files(self):
f = tempfile.NamedTemporaryFile(delete=False)
@@ -159,7 +110,8 @@ def test_expand_file_prefixed_files(self):
for test_case in cases:
try:
- args = Application._expand_file_prefixed_files(test_case[0]) # pylint: disable=protected-access
+ from azure.cli.core.commands import _expand_file_prefixed_files
+ args = _expand_file_prefixed_files(test_case[0]) # pylint: disable=protected-access
self.assertEqual(args, test_case[1], 'Failed for: {}'.format(test_case[0]))
except CLIError as ex:
self.fail('Unexpected error for {} ({}): {}'.format(test_case[0], args, ex))
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_cloud.py b/src/azure-cli-core/azure/cli/core/tests/test_cloud.py
index 49e9e1552e2..5574e3ccfc8 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_cloud.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_cloud.py
@@ -20,28 +20,34 @@
update_cloud,
AZURE_PUBLIC_CLOUD,
KNOWN_CLOUDS,
+ init_known_clouds,
CloudEndpointNotSetException,
CannotUnregisterCloudException)
-from azure.cli.core._config import get_config_parser
+
from azure.cli.core._profile import Profile
-from azure.cli.core.util import CLIError
+
+from azure.cli.testsdk import TestCli
+
+from knack.util import CLIError
def _helper_get_clouds(_):
""" Helper method for multiprocessing.Pool.map func that uses throwaway arg """
- get_clouds()
+ get_clouds(TestCli())
class TestCloud(unittest.TestCase):
- @mock.patch('azure.cli.core._profile.CLOUD', Cloud('AzureCloud'))
def test_endpoint_none(self):
with self.assertRaises(CloudEndpointNotSetException):
- profile = Profile()
+ cli = TestCli()
+ cli.cloud = Cloud('AzureCloud')
+ profile = Profile(cli)
profile.get_login_credentials()
@mock.patch('azure.cli.core.cloud.get_custom_clouds', lambda: [])
def test_add_get_delete_custom_cloud(self):
+ cli = TestCli()
endpoint_rm = 'http://management.contoso.com'
suffix_storage = 'core.contoso.com'
endpoints = CloudEndpoints(resource_manager=endpoint_rm)
@@ -50,75 +56,77 @@ def test_add_get_delete_custom_cloud(self):
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]) as\
config_file:
with mock.patch('azure.cli.core.cloud.get_custom_clouds', lambda: []):
- add_cloud(c)
- config = get_config_parser()
+ add_cloud(cli, c)
+ config = cli.config.config_parser
config.read(config_file)
self.assertTrue(c.name in config.sections())
self.assertEqual(config.get(c.name, 'endpoint_resource_manager'), endpoint_rm)
self.assertEqual(config.get(c.name, 'suffix_storage_endpoint'), suffix_storage)
- custom_clouds = get_custom_clouds()
+ custom_clouds = get_custom_clouds(cli)
self.assertEqual(len(custom_clouds), 1)
self.assertEqual(custom_clouds[0].name, c.name)
self.assertEqual(custom_clouds[0].endpoints.resource_manager,
c.endpoints.resource_manager)
self.assertEqual(custom_clouds[0].suffixes.storage_endpoint,
c.suffixes.storage_endpoint)
- with mock.patch('azure.cli.core.cloud._get_cloud', lambda _: c):
- remove_cloud(c.name)
- custom_clouds = get_custom_clouds()
+ with mock.patch('azure.cli.core.cloud._get_cloud', lambda _, _1: c):
+ remove_cloud(cli, c.name)
+ custom_clouds = get_custom_clouds(cli)
self.assertEqual(len(custom_clouds), 0)
def test_add_get_cloud_with_profile(self):
+ cli = TestCli()
endpoint_rm = 'http://management.contoso.com'
endpoints = CloudEndpoints(resource_manager=endpoint_rm)
profile = '2017-03-09-profile'
c = Cloud('MyOwnCloud', endpoints=endpoints, profile=profile)
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]) as\
config_file:
- add_cloud(c)
- config = get_config_parser()
+ add_cloud(cli, c)
+ config = cli.config.config_parser
config.read(config_file)
self.assertTrue(c.name in config.sections())
self.assertEqual(config.get(c.name, 'endpoint_resource_manager'), endpoint_rm)
self.assertEqual(config.get(c.name, 'profile'), profile)
- custom_clouds = get_custom_clouds()
+ custom_clouds = get_custom_clouds(cli)
self.assertEqual(len(custom_clouds), 1)
self.assertEqual(custom_clouds[0].name, c.name)
- self.assertEqual(custom_clouds[0].endpoints.resource_manager,
- c.endpoints.resource_manager)
- self.assertEqual(custom_clouds[0].profile,
- c.profile)
+ self.assertEqual(custom_clouds[0].endpoints.resource_manager, c.endpoints.resource_manager)
+ self.assertEqual(custom_clouds[0].profile, c.profile)
def test_add_get_cloud_with_invalid_profile(self):
# Cloud has profile that doesn't exist so an exception should be raised
+ cli = TestCli()
profile = 'none-existent-profile'
c = Cloud('MyOwnCloud', profile=profile)
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]) as\
config_file:
- add_cloud(c)
- config = get_config_parser()
+ add_cloud(cli, c)
+ config = cli.config.config_parser
config.read(config_file)
self.assertTrue(c.name in config.sections())
self.assertEqual(config.get(c.name, 'profile'), profile)
with self.assertRaises(CLIError):
- get_custom_clouds()
+ get_custom_clouds(cli)
def test_get_default_latest_profile(self):
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]):
- clouds = get_clouds()
+ cli = TestCli()
+ clouds = get_clouds(cli)
for c in clouds:
self.assertEqual(c.profile, 'latest')
def test_custom_cloud_management_endpoint_set(self):
# We have set management endpoint so don't override it
+ cli = TestCli()
endpoint_rm = 'http://management.contoso.com'
endpoint_mgmt = 'http://management.core.contoso.com'
endpoints = CloudEndpoints(resource_manager=endpoint_rm, management=endpoint_mgmt)
profile = '2017-03-09-profile'
c = Cloud('MyOwnCloud', endpoints=endpoints, profile=profile)
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]):
- add_cloud(c)
- custom_clouds = get_custom_clouds()
+ add_cloud(cli, c)
+ custom_clouds = get_custom_clouds(cli)
self.assertEqual(len(custom_clouds), 1)
self.assertEqual(custom_clouds[0].endpoints.resource_manager,
c.endpoints.resource_manager)
@@ -128,13 +136,14 @@ def test_custom_cloud_management_endpoint_set(self):
def test_custom_cloud_no_management_endpoint_set(self):
# Use ARM 'resource manager' endpoint as 'management' (old ASM) endpoint if only ARM endpoint is set
+ cli = TestCli()
endpoint_rm = 'http://management.contoso.com'
endpoints = CloudEndpoints(resource_manager=endpoint_rm)
profile = '2017-03-09-profile'
c = Cloud('MyOwnCloud', endpoints=endpoints, profile=profile)
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]):
- add_cloud(c)
- custom_clouds = get_custom_clouds()
+ add_cloud(cli, c)
+ custom_clouds = get_custom_clouds(cli)
self.assertEqual(len(custom_clouds), 1)
self.assertEqual(custom_clouds[0].endpoints.resource_manager,
c.endpoints.resource_manager)
@@ -143,37 +152,79 @@ def test_custom_cloud_no_management_endpoint_set(self):
c.endpoints.resource_manager)
def test_get_active_cloud_name_default(self):
+ cli = TestCli()
expected = AZURE_PUBLIC_CLOUD.name
- actual = get_active_cloud_name()
+ actual = get_active_cloud_name(cli)
self.assertEqual(expected, actual)
+ def test_known_cloud_missing_endpoint(self):
+ cli = TestCli()
+ # New endpoints in cloud config should be saved in config for the known clouds
+ with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]) as\
+ config_file:
+ # Save the clouds to config to get started
+ init_known_clouds()
+ cloud = get_cloud(cli, AZURE_PUBLIC_CLOUD.name)
+ self.assertEqual(cloud.endpoints.batch_resource_id,
+ AZURE_PUBLIC_CLOUD.endpoints.batch_resource_id)
+ # Remove an endpoint from the cloud config (leaving other config values as is)
+ config = cli.config.config_parser
+ config.read(config_file)
+ config.remove_option(AZURE_PUBLIC_CLOUD.name, 'endpoint_batch_resource_id')
+ with open(config_file, 'w') as cf:
+ config.write(cf)
+ # Verify that it was removed
+ config.read(config_file)
+ self.assertFalse(config.has_option(AZURE_PUBLIC_CLOUD.name,
+ 'endpoint_batch_resource_id'))
+ # Init the known clouds again (this should add the missing endpoint)
+ init_known_clouds(force=True)
+ config.read(config_file)
+ # The missing endpoint should have been added by init_known_clouds as 'force' was used.
+ self.assertTrue(config.has_option(AZURE_PUBLIC_CLOUD.name,
+ 'endpoint_batch_resource_id'),
+ 'Expected the missing endpoint to be added but it was not.')
+ actual_val = config.get(AZURE_PUBLIC_CLOUD.name, 'endpoint_batch_resource_id')
+ expected_val = AZURE_PUBLIC_CLOUD.endpoints.batch_resource_id
+ self.assertEqual(actual_val, expected_val)
+
def test_get_known_clouds(self):
+ cli = TestCli()
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]):
# Check that we can get all the known clouds without any exceptions
for kc in KNOWN_CLOUDS:
- get_cloud(kc.name)
+ get_cloud(cli, kc.name)
def test_modify_known_cloud(self):
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]) as config_file:
+ pool_size = 100
+ p = multiprocessing.Pool(pool_size)
+ p.map(init_known_clouds, [True] * pool_size)
+ p.close()
+ p.join()
+ # Check we can read the file with no exceptions
+ cli = TestCli()
+ config = cli.config.config_parser
cloud_name = AZURE_PUBLIC_CLOUD.name
- cloud = get_cloud(cloud_name)
+ cloud = get_cloud(cli, cloud_name)
self.assertEqual(cloud.name, cloud_name)
mcloud = Cloud(cloud_name)
mcloud.endpoints.gallery = 'https://mynewcustomgallery.azure.com'
- update_cloud(mcloud)
- cloud = get_cloud(cloud_name)
+ update_cloud(cli, mcloud)
+ cloud = get_cloud(cli, cloud_name)
self.assertEqual(cloud.endpoints.gallery, 'https://mynewcustomgallery.azure.com')
# Check that the config file only has what we changed, not the full cloud info.
- config = get_config_parser()
- config.read(config_file)
- items = config.items(cloud_name)
+ config = cli.config
+ config.config_parser.read(config_file)
+ items = config.config_parser.items(cloud_name)
self.assertEqual(len(items), 1)
self.assertEqual(items[0], ('endpoint_gallery', 'https://mynewcustomgallery.azure.com'))
def test_remove_known_cloud(self):
+ cli = TestCli()
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]):
with self.assertRaises(CannotUnregisterCloudException):
- remove_cloud(AZURE_PUBLIC_CLOUD.name)
+ remove_cloud(cli, AZURE_PUBLIC_CLOUD.name)
def test_get_clouds_concurrent(self):
with mock.patch('azure.cli.core.cloud.CLOUD_CONFIG_FILE', tempfile.mkstemp()[1]) as config_file:
@@ -183,10 +234,11 @@ def test_get_clouds_concurrent(self):
p.close()
p.join()
# Check we can read the file with no exceptions
- config = get_config_parser()
- config.read(config_file)
+ cli = TestCli()
+ config = cli.config
+ config.config_parser.read(config_file)
for kc in KNOWN_CLOUDS:
- get_cloud(kc.name)
+ get_cloud(cli, kc.name)
if __name__ == '__main__':
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_command_registration.py b/src/azure-cli-core/azure/cli/core/tests/test_command_registration.py
index bc5e209eaac..0af49a40eea 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_command_registration.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_command_registration.py
@@ -5,26 +5,22 @@
import sys
import logging
+import mock
import unittest
-from azure.cli.core.commands import _update_command_definitions
-from azure.cli.core.commands import (
- command_table,
- CliArgumentType,
- ExtensionCommandSource,
- CliCommandArgument,
- cli_command,
- register_cli_argument,
- register_extra_cli_argument)
+from azure.cli.core import AzCommandsLoader, MainCommandsLoader
+from azure.cli.core.commands import ExtensionCommandSource
from azure.cli.core.extension import EXTENSIONS_MOD_PREFIX
+from azure.cli.testsdk import TestCli
+from knack.arguments import CLICommandArgument, CLIArgumentType
-class Test_command_registration(unittest.TestCase):
+
+class TestCommandRegistration(unittest.TestCase):
@classmethod
def setUpClass(cls):
# Ensure initialization has occurred correctly
- import azure.cli.main
logging.basicConfig(level=logging.DEBUG)
@classmethod
@@ -55,26 +51,34 @@ def sample_vm_get(resource_group_name, vm_name, opt_param=None, expand=None, cus
pass
def test_register_cli_argument(self):
- command_table.clear()
- cli_command(None, 'test register sample-vm-get',
- '{}#Test_command_registration.sample_vm_get'.format(__name__))
- register_cli_argument('test register sample-vm-get', 'vm_name', CliArgumentType(
- options_list=('--wonky-name', '-n'), metavar='VMNAME', help='Completely WONKY name...',
- required=False
- ))
-
- command_table['test register sample-vm-get'].load_arguments()
- _update_command_definitions(command_table)
-
- self.assertEqual(len(command_table), 1,
+
+ class TestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('test register', operations_tmpl='{}#TestCommandRegistration.{{}}'.format(__name__)) as g:
+ g.command('sample-vm-get', 'sample_vm_get')
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(TestCommandsLoader, self).load_arguments(command)
+ with self.argument_context('test register sample-vm-get') as c:
+ c.argument('vm_name', options_list=('--wonky-name', '-n'), metavar='VMNAME', help='Completely WONKY name...', required=False)
+
+ cli = TestCli(commands_loader_cls=TestCommandsLoader)
+ loader = TestCommandsLoader(cli)
+ loader.load_command_table(None)
+ loader.load_arguments('test register sample-vm-get')
+ loader._update_command_definitions()
+ command_metadata = loader.command_table['test register sample-vm-get']
+
+ self.assertEqual(len(loader.command_table), 1,
'We expect exactly one command in the command table')
- command_metadata = command_table['test register sample-vm-get']
self.assertEqual(len(command_metadata.arguments), 4, 'We expected exactly 4 arguments')
some_expected_arguments = {
- 'resource_group_name': CliArgumentType(dest='resource_group_name', required=True),
- 'vm_name': CliArgumentType(dest='vm_name', required=False),
+ 'resource_group_name': CLIArgumentType(dest='resource_group_name', required=True),
+ 'vm_name': CLIArgumentType(dest='vm_name', required=False),
}
-
for probe in some_expected_arguments:
existing = next(arg for arg in command_metadata.arguments if arg == probe)
self.assertDictContainsSubset(some_expected_arguments[existing].settings,
@@ -82,25 +86,42 @@ def test_register_cli_argument(self):
self.assertEqual(command_metadata.arguments['vm_name'].options_list, ('--wonky-name', '-n'))
def test_register_command(self):
- command_table.clear()
- cli_command(None, 'test command sample-vm-get',
- '{}#Test_command_registration.sample_vm_get'.format(__name__), None)
- self.assertEqual(len(command_table), 1,
+ class TestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('test command', operations_tmpl='{}#TestCommandRegistration.{{}}'.format(__name__)) as g:
+ g.command('sample-vm-get', 'sample_vm_get')
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(TestCommandsLoader, self).load_arguments(command)
+ with self.argument_context('test register sample-vm-get') as c:
+ c.argument('vm_name', options_list=('--wonky-name', '-n'), metavar='VMNAME', help='Completely WONKY name...', required=False)
+
+ cli = TestCli(commands_loader_cls=TestCommandsLoader)
+ loader = TestCommandsLoader(cli)
+ loader.load_command_table(None)
+ loader.load_arguments('test command sample-vm-get')
+ loader._update_command_definitions()
+
+ self.assertEqual(len(loader.command_table), 1,
'We expect exactly one command in the command table')
- command_table['test command sample-vm-get'].load_arguments()
- command_metadata = command_table['test command sample-vm-get']
+ command_metadata = loader.command_table['test command sample-vm-get']
self.assertEqual(len(command_metadata.arguments), 4, 'We expected exactly 4 arguments')
+ self.assertTrue(command_metadata.command_source is None)
+
some_expected_arguments = {
- 'resource_group_name': CliArgumentType(dest='resource_group_name',
+ 'resource_group_name': CLIArgumentType(dest='resource_group_name',
required=True,
help='The name of the resource group.'),
- 'vm_name': CliArgumentType(dest='vm_name',
+ 'vm_name': CLIArgumentType(dest='vm_name',
required=True,
help='The name of the virtual machine.'),
- 'opt_param': CliArgumentType(required=False,
+ 'opt_param': CLIArgumentType(required=False,
help='Used to verify reflection correctly identifies optional params.'), # pylint: disable=line-too-long
- 'expand': CliArgumentType(required=False,
+ 'expand': CLIArgumentType(required=False,
help='The expand expression to apply on the operation.')
}
@@ -111,92 +132,159 @@ def test_register_command(self):
self.assertEqual(command_metadata.arguments['resource_group_name'].options_list,
['--resource-group-name'])
- def test_register_command_from_extension(self):
- command_table.clear()
+ def _mock_import_lib(_):
+ mock_obj = mock.MagicMock()
+ mock_obj.__path__ = __name__
+ return mock_obj
+
+ def _mock_iter_modules(_):
+ return [(None, __name__, None)]
- # A standard command
- cli_command(None, 'hello world', 'dummy_operation', None)
- self.assertEqual(len(command_table), 1)
- self.assertEqual(command_table['hello world'].command_source, None)
+ def _mock_extension_modname(ext_name, ext_dir):
+ return ext_name
- command_table.clear()
+ def _mock_get_extension_names():
+ return [__name__ + '.ExtCommandsLoader', __name__ + '.Ext2CommandsLoader']
+
+ def _mock_load_command_loader(loader, args, name, prefix):
+
+ class TestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('hello', operations_tmpl='{}#TestCommandRegistration.{{}}'.format(__name__)) as g:
+ g.command('world', 'sample_vm_get')
+ return self.command_table
# A command from an extension
- cli_command('{}myextension'.format(EXTENSIONS_MOD_PREFIX), 'hello world', 'dummy_operation', None)
- self.assertEqual(len(command_table), 1)
- cmd_source = command_table['hello world'].command_source
- self.assertTrue(isinstance(cmd_source, ExtensionCommandSource))
- self.assertFalse(cmd_source.overrides_command)
+ class ExtCommandsLoader(AzCommandsLoader):
- command_table.clear()
+ def load_command_table(self, args):
+ super(ExtCommandsLoader, self).load_command_table(args)
+ with self.command_group('hello', operations_tmpl='{}#TestCommandRegistration.{{}}'.format(__name__)) as g:
+ g.command('noodle', 'sample_vm_get')
+ return self.command_table
# A command from an extension that overrides the original command
- cli_command(None, 'hello world', 'dummy_operation', None)
- cli_command('{}myextension'.format(EXTENSIONS_MOD_PREFIX), 'hello world', 'dummy_operation', None)
- self.assertEqual(len(command_table), 1)
- cmd_source = command_table['hello world'].command_source
- self.assertTrue(isinstance(cmd_source, ExtensionCommandSource))
- self.assertTrue(cmd_source.overrides_command)
+ class Ext2CommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(Ext2CommandsLoader, self).load_command_table(args)
+ with self.command_group('hello', operations_tmpl='{}#TestCommandRegistration.{{}}'.format(__name__)) as g:
+ g.command('world', 'sample_vm_get')
+ return self.command_table
+
+ if prefix == 'azure.cli.command_modules.':
+ command_loaders = {'TestCommandsLoader': TestCommandsLoader}
+ else:
+ command_loaders = {'ExtCommandsLoader': ExtCommandsLoader, 'Ext2CommandsLoader': Ext2CommandsLoader}
+
+ module_command_table = {}
+ for _, loader_cls in command_loaders.items():
+ command_loader = loader_cls(cli_ctx=loader.cli_ctx)
+ command_table = command_loader.load_command_table(args)
+ if command_table:
+ module_command_table.update(command_table)
+ loader.loaders.append(command_loader) # this will be used later by the load_arguments method
+ return module_command_table
+
+ @mock.patch('importlib.import_module', _mock_import_lib)
+ @mock.patch('pkgutil.iter_modules', _mock_iter_modules)
+ @mock.patch('azure.cli.core.commands._load_command_loader', _mock_load_command_loader)
+ @mock.patch('azure.cli.core.extension.get_extension_modname', _mock_extension_modname)
+ @mock.patch('azure.cli.core.extension.get_extension_names', _mock_get_extension_names)
+ def test_register_command_from_extension(self):
- command_table.clear()
+ from azure.cli.core.commands import _load_command_loader
+ cli = TestCli()
+ main_loader = MainCommandsLoader(cli)
+ cli.loader = main_loader
+
+ cmd_tbl = cli.loader.load_command_table(None)
+ ext1 = cmd_tbl['hello noodle']
+ ext2 = cmd_tbl['hello world']
+
+ self.assertTrue(isinstance(ext1.command_source, ExtensionCommandSource))
+ self.assertFalse(ext1.command_source.overrides_command)
+
+ self.assertTrue(isinstance(ext2.command_source, ExtensionCommandSource))
+ self.assertTrue(ext2.command_source.overrides_command)
def test_register_cli_argument_with_overrides(self):
- command_table.clear()
- global_vm_name_type = CliArgumentType(
+ global_vm_name_type = CLIArgumentType(
options_list=('--foo', '-f'), metavar='FOO', help='foo help'
)
- derived_vm_name_type = CliArgumentType(base_type=global_vm_name_type,
+ derived_vm_name_type = CLIArgumentType(base_type=global_vm_name_type,
help='first modification')
- cli_command(None, 'test vm-get',
- '{}#Test_command_registration.sample_vm_get'.format(__name__), None)
- cli_command(None, 'test command vm-get-1',
- '{}#Test_command_registration.sample_vm_get'.format(__name__), None)
- cli_command(None, 'test command vm-get-2',
- '{}#Test_command_registration.sample_vm_get'.format(__name__), None)
+ class TestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('test', operations_tmpl='{}#TestCommandRegistration.{{}}'.format(__name__)) as g:
+ g.command('vm-get', 'sample_vm_get')
+ g.command('command vm-get-1', 'sample_vm_get')
+ g.command('command vm-get-2', 'sample_vm_get')
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(TestCommandsLoader, self).load_arguments(command)
+ with self.argument_context('test') as c:
+ c.argument('vm_name', global_vm_name_type)
- register_cli_argument('test', 'vm_name', global_vm_name_type)
- register_cli_argument('test command', 'vm_name', derived_vm_name_type)
- register_cli_argument('test command vm-get-2', 'vm_name', derived_vm_name_type,
- help='second modification')
+ with self.argument_context('test command') as c:
+ c.argument('vm_name', derived_vm_name_type)
- command_table['test vm-get'].load_arguments()
- command_table['test command vm-get-1'].load_arguments()
- command_table['test command vm-get-2'].load_arguments()
- _update_command_definitions(command_table)
+ with self.argument_context('test command vm-get-2') as c:
+ c.argument('vm_name', derived_vm_name_type, help='second modification')
- self.assertEqual(len(command_table), 3,
+ cli = TestCli(commands_loader_cls=TestCommandsLoader)
+ loader = TestCommandsLoader(cli)
+ loader.load_command_table(None)
+ loader.load_arguments('test vm-get')
+ loader.load_arguments('test command vm-get-1')
+ loader.load_arguments('test command vm-get-2')
+ loader._update_command_definitions()
+
+ self.assertEqual(len(loader.command_table), 3,
'We expect exactly three commands in the command table')
- command1 = command_table['test vm-get'].arguments['vm_name']
- command2 = command_table['test command vm-get-1'].arguments['vm_name']
- command3 = command_table['test command vm-get-2'].arguments['vm_name']
+ command1 = loader.command_table['test vm-get'].arguments['vm_name']
+ command2 = loader.command_table['test command vm-get-1'].arguments['vm_name']
+ command3 = loader.command_table['test command vm-get-2'].arguments['vm_name']
self.assertTrue(command1.options['help'] == 'foo help')
self.assertTrue(command2.options['help'] == 'first modification')
self.assertTrue(command3.options['help'] == 'second modification')
- command_table.clear()
def test_register_extra_cli_argument(self):
- command_table.clear()
- cli_command(None, 'test command sample-vm-get',
- '{}#Test_command_registration.sample_vm_get'.format(__name__), None)
- register_extra_cli_argument(
- 'test command sample-vm-get', 'added_param', options_list=('--added-param',),
- metavar='ADDED', help='Just added this right now!', required=True
- )
+ class TestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('test command', operations_tmpl='{}#TestCommandRegistration.{{}}'.format(__name__)) as g:
+ g.command('sample-vm-get', 'sample_vm_get')
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(TestCommandsLoader, self).load_arguments(command)
+ with self.argument_context('test command sample-vm-get') as c:
+ c.extra('added_param', options_list=['--added-param'], metavar='ADDED', help='Just added this right now!', required=True)
- command_table['test command sample-vm-get'].load_arguments()
- _update_command_definitions(command_table)
+ cli = TestCli(commands_loader_cls=TestCommandsLoader)
+ loader = TestCommandsLoader(cli)
+ loader.load_command_table(None)
+ loader.load_arguments('test command sample-vm-get')
+ loader._update_command_definitions()
- self.assertEqual(len(command_table), 1,
+ self.assertEqual(len(loader.command_table), 1,
'We expect exactly one command in the command table')
- command_metadata = command_table['test command sample-vm-get']
+ command_metadata = loader.command_table['test command sample-vm-get']
self.assertEqual(len(command_metadata.arguments), 5, 'We expected exactly 5 arguments')
some_expected_arguments = {
- 'added_param': CliArgumentType(dest='added_param', required=True)
+ 'added_param': CLIArgumentType(dest='added_param', required=True)
}
for probe in some_expected_arguments:
@@ -204,9 +292,8 @@ def test_register_extra_cli_argument(self):
self.assertDictContainsSubset(some_expected_arguments[existing].settings,
command_metadata.arguments[existing].options)
- command_table.clear()
-
def test_command_build_argument_help_text(self):
+
def sample_sdk_method_with_weird_docstring(param_a, param_b, param_c): # pylint: disable=unused-argument
"""
An operation with nothing good.
@@ -220,31 +307,39 @@ def sample_sdk_method_with_weird_docstring(param_a, param_b, param_c): # pylint
nothing2.
"""
- command_table.clear()
+
+ class TestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('test command', operations_tmpl='{}#{{}}'.format(__name__)) as g:
+ g.command('foo', sample_sdk_method_with_weird_docstring.__name__)
+ return self.command_table
+
setattr(sys.modules[__name__], sample_sdk_method_with_weird_docstring.__name__,
sample_sdk_method_with_weird_docstring) # pylint: disable=line-too-long
- cli_command(None, 'test command foo', '{}#{}'.format(
- __name__, sample_sdk_method_with_weird_docstring.__name__), None) # pylint: disable=line-too-long
- command_table['test command foo'].load_arguments()
- _update_command_definitions(command_table)
+ cli = TestCli(commands_loader_cls=TestCommandsLoader)
+ loader = TestCommandsLoader(cli)
+ loader.load_command_table(None)
+ loader.load_arguments('test command foo')
+ loader._update_command_definitions()
- command_metadata = command_table['test command foo']
+ command_metadata = loader.command_table['test command foo']
self.assertEqual(len(command_metadata.arguments), 3, 'We expected exactly 3 arguments')
some_expected_arguments = {
- 'param_a': CliArgumentType(dest='param_a', required=True, help=''),
- 'param_b': CliArgumentType(dest='param_b', required=True, help='The name of nothing.'),
- 'param_c': CliArgumentType(dest='param_c', required=True, help='The name of nothing2.')
+ 'param_a': CLIArgumentType(dest='param_a', required=True, help=''),
+ 'param_b': CLIArgumentType(dest='param_b', required=True, help='The name of nothing.'),
+ 'param_c': CLIArgumentType(dest='param_c', required=True, help='The name of nothing2.')
}
for probe in some_expected_arguments:
existing = next(arg for arg in command_metadata.arguments if arg == probe)
self.assertDictContainsSubset(some_expected_arguments[existing].settings,
command_metadata.arguments[existing].options)
- command_table.clear()
def test_override_existing_option_string(self):
- arg = CliArgumentType(options_list=('--funky', '-f'))
+ arg = CLIArgumentType(options_list=('--funky', '-f'))
updated_options_list = ('--something-else', '-s')
arg.update(options_list=updated_options_list, validator=lambda: (), completer=lambda: ())
self.assertEqual(arg.settings['options_list'], updated_options_list)
@@ -253,13 +348,13 @@ def test_override_existing_option_string(self):
def test_dont_override_existing_option_string(self):
existing_options_list = ('--something-else', '-s')
- arg = CliArgumentType(options_list=existing_options_list)
+ arg = CLIArgumentType(options_list=existing_options_list)
arg.update()
self.assertEqual(arg.settings['options_list'], existing_options_list)
def test_override_remove_validator(self):
existing_options_list = ('--something-else', '-s')
- arg = CliArgumentType(options_list=existing_options_list,
+ arg = CLIArgumentType(options_list=existing_options_list,
validator=lambda *args, **kwargs: ())
arg.update(validator=None)
self.assertIsNone(arg.settings['validator'])
@@ -271,22 +366,28 @@ def sample_sdk_method(param_a): # pylint: disable=unused-argument
def test_validator_completer():
pass
- command_table.clear()
+ class TestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('override_using_register_cli_argument', operations_tmpl='{}#{{}}'.format(__name__)) as g:
+ g.command('foo', 'sample_sdk_method')
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(TestCommandsLoader, self).load_arguments(command)
+ with self.argument_context('override_using_register_cli_argument') as c:
+ c.argument('param_a', options_list=('--overridden', '-r'), required=False,
+ validator=test_validator_completer, completer=test_validator_completer)
+
setattr(sys.modules[__name__], sample_sdk_method.__name__, sample_sdk_method)
- cli_command(None, 'override_using_register_cli_argument foo',
- '{}#{}'.format(__name__, sample_sdk_method.__name__),
- None)
- register_cli_argument('override_using_register_cli_argument',
- 'param_a',
- options_list=('--overridden', '-r'),
- validator=test_validator_completer,
- completer=test_validator_completer,
- required=False)
-
- command_table['override_using_register_cli_argument foo'].load_arguments()
- _update_command_definitions(command_table)
-
- command_metadata = command_table['override_using_register_cli_argument foo']
+ cli = TestCli(commands_loader_cls=TestCommandsLoader)
+ loader = TestCommandsLoader(cli)
+ loader.load_command_table(None)
+ loader.load_arguments('override_using_register_cli_argument foo')
+ loader._update_command_definitions()
+
+ command_metadata = loader.command_table['override_using_register_cli_argument foo']
self.assertEqual(len(command_metadata.arguments), 1, 'We expected exactly 1 arguments')
actual_arg = command_metadata.arguments['param_a']
@@ -294,23 +395,22 @@ def test_validator_completer():
self.assertEqual(actual_arg.validator, test_validator_completer)
self.assertEqual(actual_arg.completer, test_validator_completer)
self.assertFalse(actual_arg.options['required'])
- command_table.clear()
def test_override_argtype_with_argtype(self):
existing_options_list = ('--default', '-d')
- arg = CliArgumentType(options_list=existing_options_list, validator=None, completer='base',
+ arg = CLIArgumentType(options_list=existing_options_list, validator=None, completer='base',
help='base', required=True)
- overriding_argtype = CliArgumentType(options_list=('--overridden',), validator='overridden',
+ overriding_argtype = CLIArgumentType(options_list=('--overridden',), validator='overridden',
completer=None, overrides=arg, help='overridden',
- required=CliArgumentType.REMOVE)
+ required=CLIArgumentType.REMOVE)
self.assertEqual(overriding_argtype.settings['validator'], 'overridden')
self.assertEqual(overriding_argtype.settings['completer'], None)
self.assertEqual(overriding_argtype.settings['options_list'], ('--overridden',))
self.assertEqual(overriding_argtype.settings['help'], 'overridden')
- self.assertEqual(overriding_argtype.settings['required'], CliArgumentType.REMOVE)
+ self.assertEqual(overriding_argtype.settings['required'], CLIArgumentType.REMOVE)
- cmd_arg = CliCommandArgument(dest='whatever', argtype=overriding_argtype,
- help=CliArgumentType.REMOVE)
+ cmd_arg = CLICommandArgument(dest='whatever', argtype=overriding_argtype,
+ help=CLIArgumentType.REMOVE)
self.assertFalse('required' in cmd_arg.options)
self.assertFalse('help' in cmd_arg.options)
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_command_with_configured_defaults.py b/src/azure-cli-core/azure/cli/core/tests/test_command_with_configured_defaults.py
index 9bbd986efd6..0984e6beb1c 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_command_with_configured_defaults.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_command_with_configured_defaults.py
@@ -6,13 +6,15 @@
import logging
import unittest
import mock
+from six import StringIO
+import sys
-from azure.cli.core.commands import _update_command_definitions
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.commands import AzCliCommand
-from azure.cli.core.commands import (command_table, CliArgumentType, cli_command,
- register_cli_argument)
-from azure.cli.core.application import Application, Configuration
-from azure.cli.core._config import AzConfig
+from azure.cli.testsdk import TestCli
+
+from knack.config import CLIConfig
# a dummy callback for arg-parse
@@ -22,63 +24,51 @@ def load_params(_):
class TestCommandWithConfiguredDefaults(unittest.TestCase):
- def __init__(self, *args, **kwargs):
- self.argv = None
- self.application = None
- super(TestCommandWithConfiguredDefaults, self).__init__(*args, **kwargs)
-
@classmethod
def setUpClass(cls):
# Ensure initialization has occurred correctly
- import azure.cli.main
logging.basicConfig(level=logging.DEBUG)
@classmethod
def tearDownClass(cls):
logging.shutdown()
- @staticmethod
- def sample_vm_list(resource_group_name):
- return resource_group_name
-
def set_up_command_table(self, required_arg=False):
- command_table.clear()
- module_name = __name__ + '.' + self._testMethodName
- cli_command(module_name, 'test sample-vm-list',
- '{}#TestCommandWithConfiguredDefaults.sample_vm_list'.format(__name__))
+ class TestCommandsLoader(AzCommandsLoader):
- register_cli_argument('test sample-vm-list', 'resource_group_name',
- CliArgumentType(options_list=('--resource-group-name', '-g'),
- configured_default='group', required=required_arg))
+ def sample_vm_list(resource_group_name):
+ return resource_group_name
+ setattr(sys.modules[__name__], sample_vm_list.__name__, sample_vm_list)
- command_table['test sample-vm-list'].load_arguments()
- _update_command_definitions(command_table)
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('test', operations_tmpl='{}#{{}}'.format(__name__)) as g:
+ g.command('sample-vm-list', 'sample_vm_list')
+ return self.command_table
- self.argv = 'az test sample-vm-list'.split()
- config = Configuration()
- config.get_command_table = lambda argv: command_table
- self.application = Application(config)
+ def load_arguments(self, command):
+ super(TestCommandsLoader, self).load_arguments(command)
+ with self.argument_context('test') as c:
+ c.argument('resource_group_name', options_list=['--resource-group-name', '-g'],
+ configured_default='group', required=required_arg)
+ return TestCli(commands_loader_cls=TestCommandsLoader)
- @mock.patch.dict(os.environ, {AzConfig.env_var_name('defaults', 'group'): 'myRG'})
+ @mock.patch.dict(os.environ, {'AZURE__DEFAULTS_GROUP': 'myRG'})
def test_apply_configured_defaults_on_required_arg(self):
- self.set_up_command_table(required_arg=True)
-
- # action
- res = self.application.execute(self.argv[1:])
+ io = StringIO()
+ cli = self.set_up_command_table(required_arg=True)
+ cli.invoke('test sample-vm-list'.split(), out_file=io)
+ result = io.getvalue()
+ self.assertTrue('myRG' in result)
- # assert
- self.assertEqual(res.result, 'myRG')
-
- @mock.patch.dict(os.environ, {AzConfig.env_var_name('defaults', 'group'): 'myRG'})
+ @mock.patch.dict(os.environ, {'AZURE__DEFAULTS_GROUP': 'myRG'})
def test_apply_configured_defaults_on_optional_arg(self):
- self.set_up_command_table(required_arg=False)
-
- # action
- res = self.application.execute(self.argv[1:])
-
- # assert
- self.assertEqual(res.result, 'myRG')
+ io = StringIO()
+ cli = self.set_up_command_table(required_arg=False)
+ cli.invoke('test sample-vm-list'.split(), out_file=io)
+ result = io.getvalue()
+ self.assertTrue('myRG' in result)
if __name__ == '__main__':
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_config.py b/src/azure-cli-core/azure/cli/core/tests/test_config.py
deleted file mode 100644
index 98dc429ccfe..00000000000
--- a/src/azure-cli-core/azure/cli/core/tests/test_config.py
+++ /dev/null
@@ -1,175 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-# flake8: noqa
-
-import os
-from six.moves import configparser
-import stat
-import unittest
-import tempfile
-import mock
-
-from azure.cli.core._config import \
- (CONFIG_FILE_NAME, AzConfig, set_global_config_value, get_config_parser)
-
-
-class TestAzConfig(unittest.TestCase):
-
- def setUp(self):
- self.az_config = AzConfig()
-
- def test_has_option(self):
- section = 'MySection'
- option = 'myoption'
- value = 'myvalue'
- self.az_config.config_parser.add_section(section)
- self.az_config.config_parser.set(section, option, value)
- self.assertTrue(self.az_config.has_option(section, option))
-
- @mock.patch.dict(os.environ, {AzConfig.env_var_name('MySection', 'myoption'): 'myvalue'})
- def test_has_option_env(self):
- section = 'MySection'
- option = 'myoption'
- self.assertTrue(self.az_config.has_option(section, option))
-
- def test_has_option_env_no(self):
- section = 'MySection'
- option = 'myoption'
- self.assertFalse(self.az_config.has_option(section, option))
-
- def test_get(self):
- section = 'MySection'
- option = 'myoption'
- value = 'myvalue'
- self.az_config.config_parser.add_section(section)
- self.az_config.config_parser.set(section, option, value)
- self.assertEqual(self.az_config.get(section, option), value)
-
- @mock.patch.dict(os.environ, {AzConfig.env_var_name('MySection', 'myoption'): 'myvalue'})
- def test_get_env(self):
- section = 'MySection'
- option = 'myoption'
- value = 'myvalue'
- self.assertEqual(self.az_config.get(section, option), value)
-
- def test_get_not_found_section(self):
- section = 'MySection'
- option = 'myoption'
- with self.assertRaises(configparser.NoSectionError):
- self.az_config.get(section, option)
-
- def test_get_not_found_option(self):
- section = 'MySection'
- option = 'myoption'
- self.az_config.config_parser.add_section(section)
- with self.assertRaises(configparser.NoOptionError):
- self.az_config.get(section, option)
-
- def test_get_fallback(self):
- section = 'MySection'
- option = 'myoption'
- self.assertEqual(self.az_config.get(section, option, fallback='fallback'), 'fallback')
-
- def test_getint(self):
- section = 'MySection'
- option = 'myoption'
- value = '123'
- self.az_config.config_parser.add_section(section)
- self.az_config.config_parser.set(section, option, value)
- self.assertEqual(self.az_config.getint(section, option), int(value))
-
- def test_getint_error(self):
- section = 'MySection'
- option = 'myoption'
- value = 'not_an_int'
- self.az_config.config_parser.add_section(section)
- self.az_config.config_parser.set(section, option, value)
- with self.assertRaises(ValueError):
- self.az_config.getint(section, option)
-
- def test_getfloat(self):
- section = 'MySection'
- option = 'myoption'
- value = '123.456'
- self.az_config.config_parser.add_section(section)
- self.az_config.config_parser.set(section, option, value)
- self.assertEqual(self.az_config.getfloat(section, option), float(value))
-
- def test_getfloat_error(self):
- section = 'MySection'
- option = 'myoption'
- value = 'not_a_float'
- self.az_config.config_parser.add_section(section)
- self.az_config.config_parser.set(section, option, value)
- with self.assertRaises(ValueError):
- self.az_config.getfloat(section, option)
-
- def test_getboolean(self):
- section = 'MySection'
- option = 'myoption'
- value = 'true'
- self.az_config.config_parser.add_section(section)
- self.az_config.config_parser.set(section, option, value)
- self.assertEqual(self.az_config.getboolean(section, option), True)
-
- def test_getboolean_error(self):
- section = 'MySection'
- option = 'myoption'
- value = 'not_a_boolean'
- self.az_config.config_parser.add_section(section)
- self.az_config.config_parser.set(section, option, value)
- with self.assertRaises(ValueError):
- self.az_config.getboolean(section, option)
-
-
-class TestSetConfig(unittest.TestCase):
-
- def setUp(self):
- self.config_dir = tempfile.mkdtemp()
- self.config_path = os.path.join(self.config_dir, CONFIG_FILE_NAME)
-
- def test_set_config_value(self):
- with mock.patch('azure.cli.core._config.GLOBAL_CONFIG_DIR', self.config_dir), \
- mock.patch('azure.cli.core._config.GLOBAL_CONFIG_PATH', self.config_path):
- set_global_config_value('test_section', 'test_option', 'a_value')
- config = get_config_parser()
- config.read(os.path.join(self.config_dir, CONFIG_FILE_NAME))
- self.assertEqual(config.get('test_section', 'test_option'), 'a_value')
-
- def test_set_config_value_duplicate_section_ok(self):
- with mock.patch('azure.cli.core._config.GLOBAL_CONFIG_DIR', self.config_dir), \
- mock.patch('azure.cli.core._config.GLOBAL_CONFIG_PATH', self.config_path):
- set_global_config_value('test_section', 'test_option', 'a_value')
- set_global_config_value('test_section', 'test_option_another', 'another_value')
- config = get_config_parser()
- config.read(os.path.join(self.config_dir, CONFIG_FILE_NAME))
- self.assertEqual(config.get('test_section', 'test_option'), 'a_value')
- self.assertEqual(config.get('test_section', 'test_option_another'), 'another_value')
-
- def test_set_config_value_not_string(self):
- with mock.patch('azure.cli.core._config.GLOBAL_CONFIG_DIR', self.config_dir), \
- mock.patch('azure.cli.core._config.GLOBAL_CONFIG_PATH', self.config_path), \
- self.assertRaises(TypeError):
- set_global_config_value('test_section', 'test_option', False)
-
- def test_set_config_value_file_permissions(self):
- with mock.patch('azure.cli.core._config.GLOBAL_CONFIG_DIR', self.config_dir), \
- mock.patch('azure.cli.core._config.GLOBAL_CONFIG_PATH', self.config_path):
- set_global_config_value('test_section', 'test_option', 'a_value')
- file_mode = os.stat(self.config_path).st_mode
- self.assertTrue(bool(file_mode & stat.S_IRUSR))
- self.assertTrue(bool(file_mode & stat.S_IWUSR))
- self.assertFalse(bool(file_mode & stat.S_IXUSR))
- self.assertFalse(bool(file_mode & stat.S_IRGRP))
- self.assertFalse(bool(file_mode & stat.S_IWGRP))
- self.assertFalse(bool(file_mode & stat.S_IXGRP))
- self.assertFalse(bool(file_mode & stat.S_IROTH))
- self.assertFalse(bool(file_mode & stat.S_IWOTH))
- self.assertFalse(bool(file_mode & stat.S_IXOTH))
-
-
-if __name__ == '__main__':
- unittest.main()
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_connection_verify.py b/src/azure-cli-core/azure/cli/core/tests/test_connection_verify.py
index ecae1b59e72..082618972ba 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_connection_verify.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_connection_verify.py
@@ -19,7 +19,6 @@ class Test_argparse(unittest.TestCase):
@classmethod
def setUpClass(cls):
# Ensure initialization has occurred correctly
- import azure.cli.main
logging.basicConfig(level=logging.DEBUG)
@classmethod
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_extensions_query.py b/src/azure-cli-core/azure/cli/core/tests/test_extensions_query.py
deleted file mode 100644
index 02eadda6669..00000000000
--- a/src/azure-cli-core/azure/cli/core/tests/test_extensions_query.py
+++ /dev/null
@@ -1,60 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-import unittest
-
-from azure.cli.core.extensions.query import jmespath_type
-
-
-class TestQuery(unittest.TestCase):
- '''Tests for the values that can be passed to the --query parameter.
- These tests ensure that we are handling invalid queries correctly and raising appropriate errors
- that argparse can then handle.
- (We are not testing JMESPath itself here.)
- '''
-
- def test_query_valid_1(self): # pylint: disable=no-self-use
- query = 'length(@)'
- # Should not raise any exception as it is valid
- jmespath_type(query)
-
- def test_query_valid_2(self): # pylint: disable=no-self-use
- query = "[?storageProfile.osDisk.osType=='Linux'].[resourceGroup,name]"
- # Should not raise any exception as it is valid
- jmespath_type(query)
-
- def test_query_empty(self):
- query = ''
- with self.assertRaises(ValueError):
- jmespath_type(query)
-
- def test_query_unbalanced(self):
- query = 'length(@'
- with self.assertRaises(ValueError):
- jmespath_type(query)
-
- def test_query_invalid_1(self):
- query = '[?asdf=asdf]'
- with self.assertRaises(ValueError):
- jmespath_type(query)
-
- def test_query_invalid_2(self):
- query = '[?name=My Resource Group]'
- with self.assertRaises(ValueError):
- jmespath_type(query)
-
- def test_query_invalid_3(self):
- query = "[].location='westus'"
- with self.assertRaises(ValueError):
- jmespath_type(query)
-
- def test_query_invalid_4(self):
- query = "length([?contains('id', 'Publishers'])"
- with self.assertRaises(ValueError):
- jmespath_type(query)
-
-
-if __name__ == '__main__':
- unittest.main()
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_generic_update.py b/src/azure-cli-core/azure/cli/core/tests/test_generic_update.py
index 41865a42bbb..3e5dbf0e8eb 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_generic_update.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_generic_update.py
@@ -6,11 +6,15 @@
import logging
import unittest
import shlex
+from six import StringIO
import sys
-from azure.cli.core.application import APPLICATION, Application, Configuration
-from azure.cli.core.commands import CliArgumentType, register_cli_argument
-from azure.cli.core.commands.arm import cli_generic_update_command
-from azure.cli.core.util import CLIError
+
+from azure.cli.core import AzCommandsLoader
+
+from azure.cli.testsdk import TestCli
+
+from knack.arguments import CLIArgumentType
+from knack.util import CLIError
class ListTestObject(object):
@@ -65,96 +69,102 @@ def setUpClass(cls):
logging.getLogger().setLevel(logging.ERROR)
def test_generic_update(self): # pylint: disable=too-many-statements
+
my_obj = TestObject()
- def my_get():
- return my_obj
+ class GenericUpdateTestCommandsLoader(AzCommandsLoader):
- def my_set(**kwargs): # pylint:disable=unused-argument
- return my_obj
+ def load_command_table(self, args):
+ super(GenericUpdateTestCommandsLoader, self).load_command_table(args)
- config = Configuration()
- app = Application()
- app.initialize(config)
+ def my_get():
+ return my_obj
- setattr(sys.modules[__name__], my_get.__name__, my_get)
- setattr(sys.modules[__name__], my_set.__name__, my_set)
- cli_generic_update_command(None, 'update-obj', '{}#{}'.format(__name__,
- my_get.__name__), '{}#{}'.format(__name__, my_set.__name__))
+ def my_set(**kwargs): # pylint:disable=unused-argument
+ return my_obj
+
+ setattr(sys.modules[__name__], my_get.__name__, my_get)
+ setattr(sys.modules[__name__], my_set.__name__, my_set)
+ with self.command_group('', operations_tmpl='{}#{{}}'.format(__name__)) as g:
+ g.generic_update_command('update-obj', 'my_get', 'my_set')
+
+ return self.command_table
+
+ cli = TestCli(commands_loader_cls=GenericUpdateTestCommandsLoader)
# Test simplest ways of setting properties
- app.execute('update-obj --set myProp=newValue'.split())
+ cli.invoke('update-obj --set myProp=newValue'.split())
self.assertEqual(my_obj.my_prop, 'newValue', 'set simple property')
- app.execute('update-obj --set myProp=val3'.split())
+ cli.invoke('update-obj --set myProp=val3'.split())
self.assertEqual(my_obj.my_prop, 'val3', 'set simple property again')
- app.execute('update-obj --set myProp="foo=bar"'.split())
+ cli.invoke('update-obj --set myProp="foo=bar"'.split())
self.assertEqual(my_obj.my_prop, 'foo=bar', 'use equal in value')
- app.execute('update-obj --set myList[0]=newValA'.split())
+ cli.invoke('update-obj --set myList[0]=newValA'.split())
self.assertEqual(my_obj.my_list[0], 'newValA', 'set simple list element')
- app.execute('update-obj --set myList[-4]=newValB'.split())
+ cli.invoke('update-obj --set myList[-4]=newValB'.split())
self.assertEqual(my_obj.my_list[0], 'newValB', 'set simple list element')
- app.execute('update-obj --set myDict.myCamelKey=success'.split())
+ cli.invoke('update-obj --set myDict.myCamelKey=success'.split())
self.assertEqual(my_obj.my_dict['myCamelKey'], 'success',
'set simple dict element with camel case key')
- app.execute('update-obj --set myDict.my_snake_key=success'.split())
+ cli.invoke('update-obj --set myDict.my_snake_key=success'.split())
self.assertEqual(my_obj.my_dict['my_snake_key'], 'success',
'set simple dict element with snake case key')
# Test the different ways of indexing into a list of objects or dictionaries by filter
- app.execute('update-obj --set myListOfCamelDicts[myKey=value_2].myKey="foo=bar"'.split())
+ cli.invoke('update-obj --set myListOfCamelDicts[myKey=value_2].myKey="foo=bar"'.split())
self.assertEqual(my_obj.my_list_of_camel_dicts[1]['myKey'],
'foo=bar',
'index into list of dictionaries by camel-case key and set value with =')
- app.execute('update-obj --set myListOfCamelDicts[myKey="foo=bar"].myKey=new_value'.split())
+ cli.invoke('update-obj --set myListOfCamelDicts[myKey="foo=bar"].myKey=new_value'.split())
self.assertEqual(my_obj.my_list_of_camel_dicts[1]['myKey'],
'new_value',
'index into list of dictionaries by camel-case key')
- app.execute('update-obj --set myListOfSnakeDicts[my_key=value2].my_key=new_value'.split())
+ cli.invoke('update-obj --set myListOfSnakeDicts[my_key=value2].my_key=new_value'.split())
self.assertEqual(my_obj.my_list_of_snake_dicts[1]['my_key'],
'new_value',
'index into list of dictionaries by snake-case key')
- app.execute('update-obj --set myListOfObjects[myString=1.2.3.4].myString=new_value'.split())
+ cli.invoke('update-obj --set myListOfObjects[myString=1.2.3.4].myString=new_value'.split())
self.assertEqual(my_obj.my_list_of_objects[1].my_string,
'new_value',
'index into list of objects by key')
# Test setting on elements nested within lists
- app.execute('update-obj --set myList[1][1]=newValue'.split())
+ cli.invoke('update-obj --set myList[1][1]=newValue'.split())
self.assertEqual(my_obj.my_list[1][1], 'newValue', 'set nested list element')
- app.execute('update-obj --set myList[2].myKey=newValue'.split())
+ cli.invoke('update-obj --set myList[2].myKey=newValue'.split())
self.assertEqual(my_obj.my_list[2]['myKey'], 'newValue', 'set nested dict element')
- app.execute('update-obj --set myList[3].myInt=50'.split())
+ cli.invoke('update-obj --set myList[3].myInt=50'.split())
self.assertEqual(my_obj.my_list[3].my_int, 50, 'set nested object element')
# Test overwriting and removing values
- app.execute('update-obj --set myProp={} myProp.foo=bar'.split())
+ cli.invoke('update-obj --set myProp={} myProp.foo=bar'.split())
self.assertEqual(my_obj.my_prop['foo'], 'bar', 'replace scalar with dict')
- app.execute(
+ cli.invoke(
'update-obj --set myProp=[] --add myProp key1=value1 --set myProp[0].key2=value2'.split())
self.assertEqual(my_obj.my_prop[0]['key1'], 'value1',
'replace scalar with new list and add a dict entry')
self.assertEqual(my_obj.my_prop[0]['key2'], 'value2',
'add a second value to the new dict entry')
- app.execute('update-obj --remove myProp --add myProp str1 str2 --remove myProp 0'.split())
+ cli.invoke('update-obj --remove myProp --add myProp str1 str2 --remove myProp 0'.split())
self.assertEqual(len(my_obj.my_prop), 1, 'nullify property, add two and remove one')
self.assertEqual(my_obj.my_prop[0], 'str2', 'nullify property, add two and remove one')
# Test various --add to lists
- app.execute('update-obj --set myList=[]'.split())
- app.execute(shlex.split(
+ cli.invoke('update-obj --set myList=[]'.split())
+ cli.invoke(shlex.split(
'update-obj --add myList key1=value1 key2=value2 foo "string in quotes" [] {} foo=bar'))
self.assertEqual(my_obj.my_list[0]['key1'], 'value1', 'add a value to a dictionary')
self.assertEqual(my_obj.my_list[0]['key2'], 'value2',
@@ -169,41 +179,49 @@ def my_set(**kwargs): # pylint:disable=unused-argument
# Test --remove
self.assertEqual(len(my_obj.my_list), 6, 'pre-verify length of list')
- app.execute('update-obj --remove myList -2'.split())
+ cli.invoke('update-obj --remove myList -2'.split())
self.assertEqual(len(my_obj.my_list), 5, 'verify one item removed')
self.assertEqual(my_obj.my_list[4]['foo'], 'bar', 'verify correct item removed')
self.assertEqual('key1' in my_obj.my_list[0], True, 'verify dict item exists')
- app.execute('update-obj --remove myList[0].key1'.split())
+ cli.invoke('update-obj --remove myList[0].key1'.split())
self.assertEqual('key1' not in my_obj.my_list[0], True, 'verify dict entry can be removed')
def test_generic_update_errors(self): # pylint: disable=no-self-use
+
my_obj = TestObject()
- def my_get(a1, a2): # pylint: disable=unused-argument
- return my_obj
+ class GenericUpdateTestCommandsLoader(AzCommandsLoader):
- def my_set(**kwargs): # pylint:disable=unused-argument
- return my_obj
+ def load_command_table(self, args):
+ super(GenericUpdateTestCommandsLoader, self).load_command_table(args)
- config = Configuration()
- app = Application()
- app.initialize(config)
+ def my_get(a1, a2):
+ return my_obj
- setattr(sys.modules[__name__], my_get.__name__, my_get)
- setattr(sys.modules[__name__], my_set.__name__, my_set)
- cli_generic_update_command(None, 'gencommand', '{}#{}'.format(
- __name__, my_get.__name__), '{}#{}'.format(__name__, my_set.__name__))
+ def my_set(**kwargs): # pylint:disable=unused-argument
+ return my_obj
+
+ setattr(sys.modules[__name__], my_get.__name__, my_get)
+ setattr(sys.modules[__name__], my_set.__name__, my_set)
+
+ with self.command_group('', operations_tmpl='{}#{{}}'.format(__name__)) as g:
+ g.generic_update_command('gencommand', 'my_get', 'my_set')
+
+ return self.command_table
+
+ cli = TestCli(commands_loader_cls=GenericUpdateTestCommandsLoader)
def _execute_with_error(command, error, message):
try:
- app.execute(command.split())
- except CLIError as err:
- if error not in str(err):
- raise AssertionError(
- '{}\nExpected: {}\nActual: {}'.format(message, error, str(err)))
- else:
- raise AssertionError('exception not thrown')
+ cli.invocation = cli.invocation_cls(cli_ctx=cli, parser_cls=cli.parser_cls,
+ commands_loader_cls=cli.commands_loader_cls, help_cls=cli.help_cls)
+ cli.invocation.execute(command.split())
+ except CLIError as ex:
+ if error not in str(ex):
+ raise AssertionError('{}\nExpected: {}\nActual: {}'.format(message, error, ex))
+ return
+ raise AssertionError("exception not raised for ''".format(message))
missing_remove_message = "Couldn't find 'doesntExist' in ''. Available options: ['myDict', 'myList', 'myListOfCamelDicts', 'myListOfObjects', 'myListOfSnakeDicts', 'myProp']"
_execute_with_error('gencommand --a1 1 --a2 2 --remove doesntExist',
@@ -238,7 +256,7 @@ def _execute_with_error(command, error, message):
'invalid syntax: --remove property.list OR --remove propertyToRemove',
'remove requires index to be space-separated')
- app.execute("gencommand --a1 1 --a2 2 --set myDict={'foo':'bar'}".split())
+ cli.invoke("gencommand --a1 1 --a2 2 --set myDict={'foo':'bar'}".split())
_execute_with_error('gencommand --a1 1 --a2 2 --set myDict.foo.doo=boo',
"Couldn't find 'doo' in 'myDict.foo'. 'myDict.foo' does not support further indexing.",
'Cannot dot index from a scalar value')
@@ -252,7 +270,7 @@ def _execute_with_error(command, error, message):
'Add only works with lists')
# add an entry which makes 'myKey' no longer unique
- app.execute('gencommand --a1 1 --a2 2 --add myListOfCamelDicts myKey=value_2'.split())
+ cli.invoke('gencommand --a1 1 --a2 2 --add myListOfCamelDicts myKey=value_2'.split())
_execute_with_error(
'gencommand --a1 1 --a2 2 --set myListOfCamelDicts[myKey=value_2].myKey=foo',
"non-unique key 'myKey' found multiple matches on myListOfCamelDicts. "
@@ -274,39 +292,45 @@ def test_generic_update_empty_nodes(self):
'dict3': {}
}
- def my_get():
- return my_obj
+ class GenericUpdateTestCommandsLoader(AzCommandsLoader):
+
+ def load_command_table(self, args):
+ super(GenericUpdateTestCommandsLoader, self).load_command_table(args)
+
+ def my_get():
+ return my_obj
+
+ def my_set(**kwargs): # pylint:disable=unused-argument
+ return my_obj
+
+ setattr(sys.modules[__name__], my_get.__name__, my_get)
+ setattr(sys.modules[__name__], my_set.__name__, my_set)
- def my_set(**kwargs): # pylint:disable=unused-argument
- return my_obj
+ with self.command_group('', operations_tmpl='{}#{{}}'.format(__name__)) as g:
+ g.generic_update_command('gencommand', 'my_get', 'my_set')
- config = Configuration()
- app = Application()
- app.initialize(config)
+ return self.command_table
- setattr(sys.modules[__name__], my_get.__name__, my_get)
- setattr(sys.modules[__name__], my_set.__name__, my_set)
- cli_generic_update_command(None, 'gencommand', '{}#{}'.format(
- __name__, my_get.__name__), '{}#{}'.format(__name__, my_set.__name__))
+ cli = TestCli(commands_loader_cls=GenericUpdateTestCommandsLoader)
# add to prop
- app.execute('gencommand --add prop a=b'.split())
+ cli.invoke('gencommand --add prop a=b'.split())
self.assertEqual(my_obj['prop'][0]['a'], 'b', 'verify object added to null list')
self.assertEqual(len(my_obj['prop'][0]), 1, 'verify only one object added to null list')
# add to list
- app.execute('gencommand --add list c=d'.split())
+ cli.invoke('gencommand --add list c=d'.split())
self.assertEqual(my_obj['list'][0]['c'], 'd', 'verify object added to empty list')
self.assertEqual(len(my_obj['list']), 1, 'verify only one object added to empty list')
# set dict2
- app.execute('gencommand --set dict.dict2.e=f'.split())
+ cli.invoke('gencommand --set dict.dict2.e=f'.split())
self.assertEqual(my_obj['dict']['dict2']['e'], 'f', 'verify object added to null dict')
self.assertEqual(len(my_obj['dict']['dict2']), 1,
'verify only one object added to null dict')
# set dict3
- app.execute('gencommand --set dict3.g=h'.split())
+ cli.invoke('gencommand --set dict3.g=h'.split())
self.assertEqual(my_obj['dict3']['g'], 'h', 'verify object added to empty dict')
self.assertEqual(len(my_obj['dict3']), 1, 'verify only one object added to empty dict')
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_help.py b/src/azure-cli-core/azure/cli/core/tests/test_help.py
index 6f8d837789f..1d6799c11a6 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_help.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_help.py
@@ -11,12 +11,16 @@
import mock
from six import StringIO
-import azure.cli.core._help as _help
-import azure.cli.core.help_files
-from azure.cli.core._help import ArgumentGroupRegistry
-from azure.cli.core.application import Application, Configuration
-from azure.cli.core.commands import \
- (CliCommand, cli_command, _update_command_definitions, command_table)
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.commands import AzCliCommand
+from azure.cli.core.parser import AzCliCommandParser
+from azure.cli.core._help import ArgumentGroupRegistry, CliCommandHelpFile
+
+from azure.cli.testsdk import TestCli
+
+from knack.commands import CLICommandsLoader
+from knack.help import HelpObject, GroupHelpFile, HelpAuthoringException
+import knack.help_files
io = {}
@@ -35,46 +39,6 @@ def wrapper(self):
return wrapper
-class HelpArgumentGroupRegistryTest(unittest.TestCase):
- def test_help_argument_group_registry(self):
- groups = [
- 'Resource Id Arguments',
- 'Z Arguments',
- 'B Arguments',
- 'Global Arguments',
- 'A Arguments',
- 'Generic Update Arguments',
- 'Resource Id Arguments'
- ]
- group_registry = ArgumentGroupRegistry(groups)
- self.assertEqual(group_registry.get_group_priority('A Arguments'), '000002')
- self.assertEqual(group_registry.get_group_priority('B Arguments'), '000003')
- self.assertEqual(group_registry.get_group_priority('Z Arguments'), '000004')
- self.assertEqual(group_registry.get_group_priority('Resource Id Arguments'), '000001')
- self.assertEqual(group_registry.get_group_priority('Generic Update Arguments'), '000998')
- self.assertEqual(group_registry.get_group_priority('Global Arguments'), '001000')
-
-
-class HelpObjectTest(unittest.TestCase):
- def test_short_summary_no_fullstop(self):
- obj = _help.HelpObject()
- original_summary = 'This summary has no fullstop'
- obj.short_summary = original_summary
- self.assertEqual(obj.short_summary, original_summary + '.')
-
- def test_short_summary_fullstop(self):
- obj = _help.HelpObject()
- original_summary = 'This summary has fullstop.'
- obj.short_summary = original_summary
- self.assertEqual(obj.short_summary, original_summary)
-
- def test_short_summary_exclamation_point(self):
- obj = _help.HelpObject()
- original_summary = 'This summary has exclamation point!'
- obj.short_summary = original_summary
- self.assertEqual(obj.short_summary, original_summary)
-
-
class HelpTest(unittest.TestCase):
@classmethod
def setUpClass(cls):
@@ -85,81 +49,6 @@ def setUpClass(cls):
def tearDownClass(cls):
logging.shutdown()
- @redirect_io
- def test_choice_list_with_ints(self):
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('arg', '--arg', '-a', required=False, choices=[1, 2, 3])
- command.add_argument('b', '-b', required=False, choices=['a', 'b', 'c'])
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application()
- app.initialize(config)
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
-
- @redirect_io
- def test_help_param(self):
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('arg', '--arg', '-a', required=False)
- command.add_argument('b', '-b', required=False)
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application()
- app.initialize(config)
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
-
- with self.assertRaises(SystemExit):
- app.execute('n1 --help'.split())
-
- @redirect_io
- def test_help_plain_short_description(self):
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler, description='the description')
- command.add_argument('arg', '--arg', '-a', required=False)
- command.add_argument('b', '-b', required=False)
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
- self.assertEqual(True, 'n1: The description.' in io.getvalue())
-
- @redirect_io
- def test_help_plain_long_description(self):
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('arg', '--arg', '-a', required=False)
- command.add_argument('b', '-b', required=False)
- command.help = 'long description'
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
- self.assertEqual(True, io.getvalue().startswith(
- '\nCommand\n az n1\n Long description.')) # pylint: disable=line-too-long
-
@redirect_io
def test_help_long_description_from_docstring(self):
""" Verifies that the first sentence of a docstring is extracted as the short description.
@@ -170,450 +59,61 @@ def test_handler():
"""Short Description. Long description with\nline break."""
pass
- setattr(sys.modules[__name__], test_handler.__name__, test_handler)
-
- cli_command(None, 'test', '{}#{}'.format(__name__, test_handler.__name__))
- _update_command_definitions(command_table)
-
- config = Configuration()
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('test -h'.split())
- self.assertEqual(True, io.getvalue().startswith(
- '\nCommand\n az test: Short Description.\n Long description with line break.')) # pylint: disable=line-too-long
-
- @redirect_io
- def test_help_long_description_and_short_description(self):
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler, description='short description')
- command.add_argument('arg', '--arg', '-a', required=False)
- command.add_argument('b', '-b', required=False)
- command.help = 'long description'
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
- self.assertEqual(True, io.getvalue().startswith(
- '\nCommand\n az n1: Short description.\n Long description.')) # pylint: disable=line-too-long
-
- @redirect_io
- def test_help_docstring_description_overrides_short_description(self):
- def test_handler():
- pass
+ class TestCommandsLoader(AzCommandsLoader):
- command = CliCommand('n1', test_handler, description='short description')
- command.add_argument('arg', '--arg', '-a', required=False)
- command.add_argument('b', '-b', required=False)
- command.help = 'short-summary: docstring summary'
- cmd_table = {'n1': command}
+ def load_command_table(self, args):
+ super(TestCommandsLoader, self).load_command_table(args)
+ with self.command_group('', operations_tmpl='{}#{{}}'.format(__name__)) as g:
+ g.command('test', 'test_handler')
+ return self.command_table
- config = Configuration()
- config.get_command_table = lambda args: cmd_table
- app = Application(config)
+ def load_arguments(self, command):
+ super(TestCommandsLoader, self).load_arguments(command)
+ with self.argument_context('test register sample-vm-get') as c:
+ c.argument('vm_name', options_list=('--wonky-name', '-n'), metavar='VMNAME', help='Completely WONKY name...', required=False)
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
- self.assertEqual(True, 'n1: Docstring summary.' in io.getvalue())
-
- @redirect_io
- def test_help_long_description_multi_line(self):
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('arg', '--arg', '-a', required=False)
- command.add_argument('b', '-b', required=False)
- command.help = """
- long-summary: |
- line1
- line2
- """
- cmd_table = {'n1': command}
+ setattr(sys.modules[__name__], test_handler.__name__, test_handler)
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application(config)
+ cli = TestCli(commands_loader_cls=TestCommandsLoader)
+ loader = TestCommandsLoader(cli)
+ loader.load_command_table(None)
+ loader.load_arguments('test')
+ loader._update_command_definitions()
with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
-
+ cli.invoke('test -h'.split())
self.assertEqual(True, io.getvalue().startswith(
- '\nCommand\n az n1\n Line1\n line2.')) # pylint: disable=line-too-long
-
- @redirect_io
- @mock.patch('azure.cli.core.application.Application.register', return_value=None)
- def test_help_params_documentations(self, _):
- app = Application(Configuration())
-
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('foobar', '--foobar', '-fb', required=False)
- command.add_argument('foobar2', '--foobar2', '-fb2', required=True)
- command.add_argument('foobar3', '--foobar3', '-fb3', required=False, help='the foobar3')
- command.help = """
- parameters:
- - name: --foobar -fb
- type: string
- required: false
- short-summary: one line partial sentence
- long-summary: text, markdown, etc.
- populator-commands:
- - az vm list
- - default
- - name: --foobar2 -fb2
- type: string
- required: true
- short-summary: one line partial sentence
- long-summary: paragraph(s)
- """
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
- s = """
-Command
- az n1
-
-Arguments
- --foobar2 -fb2 [Required]: One line partial sentence.
- Paragraph(s).
- --foobar -fb : One line partial sentence. Values from: az vm list, default.
- Text, markdown, etc.
- --foobar3 -fb3 : The foobar3.
-
-Global Arguments
- --help -h : Show this help message and exit.
-"""
- self.assertEqual(s, io.getvalue())
-
- @redirect_io
- @mock.patch('azure.cli.core.application.Application.register', return_value=None)
- def test_help_full_documentations(self, _):
- app = Application(Configuration())
-
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('foobar', '--foobar', '-fb', required=False)
- command.add_argument('foobar2', '--foobar2', '-fb2', required=True)
- command.help = """
- short-summary: this module does xyz one-line or so
- long-summary: |
- this module.... kjsdflkj... klsfkj paragraph1
- this module.... kjsdflkj... klsfkj paragraph2
- parameters:
- - name: --foobar -fb
- type: string
- required: false
- short-summary: one line partial sentence
- long-summary: text, markdown, etc.
- populator-commands:
- - az vm list
- - default
- - name: --foobar2 -fb2
- type: string
- required: true
- short-summary: one line partial sentence
- long-summary: paragraph(s)
- examples:
- - name: foo example
- text: example details
- """
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda args: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
- s = """
-Command
- az n1: This module does xyz one-line or so.
- This module.... kjsdflkj... klsfkj paragraph1
- this module.... kjsdflkj... klsfkj paragraph2.
-
-Arguments
- --foobar2 -fb2 [Required]: One line partial sentence.
- Paragraph(s).
- --foobar -fb : One line partial sentence. Values from: az vm list, default.
- Text, markdown, etc.
-
-Global Arguments
- --help -h : Show this help message and exit.
-
-Examples
- foo example
- example details
-"""
- self.assertEqual(s, io.getvalue())
-
- @redirect_io
- @mock.patch('azure.cli.core.application.Application.register', return_value=None)
- def test_help_with_param_specified(self, _):
- app = Application(Configuration())
-
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('arg', '--arg', '-a', required=False)
- command.add_argument('b', '-b', required=False)
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('n1 --arg foo -h'.split())
-
- s = """
-Command
- az n1
-
-Arguments
- --arg -a
- -b
-
-Global Arguments
- --help -h: Show this help message and exit.
-"""
-
- self.assertEqual(s, io.getvalue())
-
- @redirect_io
- def test_help_group_children(self):
- app = Application(Configuration())
-
- def test_handler():
- pass
-
- def test_handler2():
- pass
-
- command = CliCommand('group1 group3 n1', test_handler)
- command.add_argument('foobar', '--foobar', '-fb', required=False)
- command.add_argument('foobar2', '--foobar2', '-fb2', required=True)
-
- command2 = CliCommand('group1 group2 n1', test_handler2)
- command2.add_argument('foobar', '--foobar', '-fb', required=False)
- command2.add_argument('foobar2', '--foobar2', '-fb2', required=True)
-
- cmd_table = {'group1 group3 n1': command, 'group1 group2 n1': command2}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('group1 -h'.split())
- s = '\nGroup\n az group1\n\nSubgroups:\n group2\n group3\n\n'
- self.assertEqual(s, io.getvalue())
-
- @redirect_io
- def test_help_extra_missing_params(self):
- app = Application(Configuration())
-
- def test_handler(foobar2, foobar=None): # pylint: disable=unused-argument
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('foobar', '--foobar', '-fb', required=False)
- command.add_argument('foobar2', '--foobar2', '-fb2', required=True)
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda args: cmd_table
- app = Application(config)
+ '\nCommand\n az test: Short Description.\n Long description with line break.')) # pylint: disable=line-too-long
- # work around an argparse behavior where output is not printed and SystemExit
- # is not raised on Python 2.7.9
- if sys.version_info < (2, 7, 10):
+ def test_help_loads(self):
+ from azure.cli.core.commands.arm import add_id_parameters
+ import knack.events as events
+
+ cli = TestCli()
+ parser_dict = {}
+ cli = TestCli()
+ try:
+ cli.invoke(['-h'])
+ except SystemExit:
+ pass
+ cmd_tbl = cli.invocation.commands_loader.command_table
+ cli.invocation.parser.load_command_table(cmd_tbl)
+ for cmd in cmd_tbl:
try:
- app.execute('n1 -fb a --foobar value'.split())
- except SystemExit:
+ cmd_tbl[cmd].loader.load_arguments(cmd)
+ except KeyError:
pass
+ cli.register_event(events.EVENT_INVOKER_CMD_TBL_LOADED, add_id_parameters)
+ cli.raise_event(events.EVENT_INVOKER_CMD_TBL_LOADED, command_table=cmd_tbl)
+ cli.invocation.parser.load_command_table(cmd_tbl)
+ _store_parsers(cli.invocation.parser, parser_dict)
+ for name, parser in parser_dict.items():
try:
- app.execute('n1 -fb a --foobar2 value --foobar3 extra'.split())
- except SystemExit:
- pass
- else:
- with self.assertRaises(SystemExit):
- app.execute('n1 -fb a --foobar value'.split())
- with self.assertRaises(SystemExit):
- app.execute('n1 -fb a --foobar2 value --foobar3 extra'.split())
-
- self.assertTrue('required' in io.getvalue() and
- '--foobar/-fb' not in io.getvalue() and
- '--foobar2/-fb2' in io.getvalue() and
- 'unrecognized arguments: --foobar3 extra' in io.getvalue())
-
- @redirect_io
- def test_help_group_help(self):
- app = Application(Configuration())
-
- def test_handler():
- pass
-
- azure.cli.core.help_files.helps['test_group1 test_group2'] = """
- type: group
- short-summary: this module does xyz one-line or so
- long-summary: |
- this module.... kjsdflkj... klsfkj paragraph1
- this module.... kjsdflkj... klsfkj paragraph2
- examples:
- - name: foo example
- text: example details
- """
-
- command = CliCommand('test_group1 test_group2 n1', test_handler)
- command.add_argument('foobar', '--foobar', '-fb', required=False)
- command.add_argument('foobar2', '--foobar2', '-fb2', required=True)
- command.help = """
- short-summary: this module does xyz one-line or so
- long-summary: |
- this module.... kjsdflkj... klsfkj paragraph1
- this module.... kjsdflkj... klsfkj paragraph2
- parameters:
- - name: --foobar -fb
- type: string
- required: false
- short-summary: one line partial sentence
- long-summary: text, markdown, etc.
- populator-commands:
- - az vm list
- - default
- - name: --foobar2 -fb2
- type: string
- required: true
- short-summary: one line partial sentence
- long-summary: paragraph(s)
- examples:
- - name: foo example
- text: example details
- """
- cmd_table = {'test_group1 test_group2 n1': command}
-
- config = Configuration()
- config.get_command_table = lambda argv: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('test_group1 test_group2 --help'.split())
- s = """
-Group
- az test_group1 test_group2: This module does xyz one-line or so.
- This module.... kjsdflkj... klsfkj paragraph1
- this module.... kjsdflkj... klsfkj paragraph2.
-
-Commands:
- n1: This module does xyz one-line or so.
-
-
-Examples
- foo example
- example details
-"""
- self.assertEqual(s, io.getvalue())
-
- del azure.cli.core.help_files.helps['test_group1 test_group2']
-
- @redirect_io
- @mock.patch('azure.cli.core.application.Application.register', return_value=None)
- @mock.patch('azure.cli.core.extensions.register_extensions', return_value=None)
- def test_help_global_params(self, mock_register_extensions, _):
- def register_globals(global_group):
- global_group.add_argument('--query2', dest='_jmespath_query', metavar='JMESPATH',
- help='JMESPath query string. See http://jmespath.org/ '
- 'for more information and examples.')
-
- mock_register_extensions.return_value = None
-
- def _register_global_parser(appl):
- # noqa pylint: disable=protected-access
- appl._event_handlers[appl.GLOBAL_PARSER_CREATED].append(register_globals)
-
- mock_register_extensions.side_effect = _register_global_parser
-
- def test_handler():
- pass
-
- command = CliCommand('n1', test_handler)
- command.add_argument('arg', '--arg', '-a', required=False)
- command.add_argument('b', '-b', required=False)
- command.help = """
- long-summary: |
- line1
- line2
- """
- cmd_table = {'n1': command}
-
- config = Configuration()
- config.get_command_table = lambda args: cmd_table
- app = Application(config)
-
- with self.assertRaises(SystemExit):
- app.execute('n1 -h'.split())
-
- s = """
-Command
- az n1
- Line1
- line2.
-
-Arguments
- --arg -a
- -b
-
-Global Arguments
- --help -h: Show this help message and exit.
- --query2 : JMESPath query string. See http://jmespath.org/ for more information and examples.
-"""
-
- self.assertEqual(s, io.getvalue())
-
- def test_help_loads(self):
- app = Application()
- app.initialize(Configuration())
- with mock.patch('azure.cli.core.commands.arm.APPLICATION', app):
- from azure.cli.core.commands.arm import add_id_parameters
- parser_dict = {}
- cmd_tbl = app.configuration.get_command_table()
- app.parser.load_command_table(cmd_tbl)
- for cmd in cmd_tbl:
- try:
- app.configuration.load_params(cmd)
- except KeyError:
- pass
- app.register(app.COMMAND_TABLE_PARAMS_LOADED, add_id_parameters)
- app.raise_event(app.COMMAND_TABLE_PARAMS_LOADED, command_table=cmd_tbl)
- app.parser.load_command_table(cmd_tbl)
- _store_parsers(app.parser, parser_dict)
-
- for name, parser in parser_dict.items():
- try:
- help_file = _help.GroupHelpFile(name, parser) \
- if _is_group(parser) \
- else _help.CommandHelpFile(name, parser)
- help_file.load(parser)
- except Exception as ex:
- raise _help.HelpAuthoringException('{}, {}'.format(name, ex))
+ help_file = GroupHelpFile(name, parser) if _is_group(parser) else CliCommandHelpFile(name, parser)
+ help_file.load(parser)
+ except Exception as ex:
+ raise HelpAuthoringException('{}, {}'.format(name, ex))
def _store_parsers(parser, d):
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_logging.py b/src/azure-cli-core/azure/cli/core/tests/test_logging.py
deleted file mode 100644
index c3ef965c211..00000000000
--- a/src/azure-cli-core/azure/cli/core/tests/test_logging.py
+++ /dev/null
@@ -1,71 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-import unittest
-from azure.cli.core import get_az_logger
-from azure.cli.core.azlogging import AzLoggingLevelManager
-
-
-class TestLogging(unittest.TestCase):
-
- # When running verbose level tests, we check that argv is empty
- # as we expect determine_verbose_level to remove consumed arguments.
-
- def test_determine_verbose_level_default(self):
- argv = []
- actual_level = AzLoggingLevelManager.determine_verbose_level(argv) # pylint: disable=protected-access
- expected_level = 0
- self.assertEqual(actual_level, expected_level)
- self.assertFalse(argv)
-
- def test_determine_verbose_level_verbose(self):
- argv = ['--verbose']
- actual_level = AzLoggingLevelManager.determine_verbose_level(argv) # pylint: disable=protected-access
- expected_level = 1
- self.assertEqual(actual_level, expected_level)
- self.assertFalse(argv)
-
- def test_determine_verbose_level_debug(self):
- argv = ['--debug']
- actual_level = AzLoggingLevelManager.determine_verbose_level(argv) # pylint: disable=protected-access
- expected_level = 2
- self.assertEqual(actual_level, expected_level)
- self.assertFalse(argv)
-
- def test_determine_verbose_level_v_v_v_default(self):
- argv = ['--verbose', '--debug']
- actual_level = AzLoggingLevelManager.determine_verbose_level(argv) # pylint: disable=protected-access
- expected_level = 2
- self.assertEqual(actual_level, expected_level)
- # We still consumed the arguments
- self.assertFalse(argv)
-
- def test_determine_verbose_level_other_args_verbose(self):
- argv = ['account', '--verbose']
- actual_level = AzLoggingLevelManager.determine_verbose_level(argv) # pylint: disable=protected-access
- expected_level = 1
- self.assertEqual(actual_level, expected_level)
- # We consumed 1 argument
- self.assertEqual(argv, ['account'])
-
- def test_determine_verbose_level_other_args_debug(self):
- argv = ['account', '--debug']
- actual_level = AzLoggingLevelManager.determine_verbose_level(argv) # pylint: disable=protected-access
- expected_level = 2
- self.assertEqual(actual_level, expected_level)
- # We consumed 1 argument
- self.assertEqual(argv, ['account'])
-
- def test_get_az_logger(self):
- az_logger = get_az_logger()
- self.assertEqual(az_logger.name, 'az')
-
- def test_get_az_logger_module(self):
- az_module_logger = get_az_logger('azure.cli.module')
- self.assertEqual(az_module_logger.name, 'az.azure.cli.module')
-
-
-if __name__ == '__main__':
- unittest.main()
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_output.py b/src/azure-cli-core/azure/cli/core/tests/test_output.py
index 192b4a042ae..2379b1be3bc 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_output.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_output.py
@@ -9,8 +9,10 @@
from collections import OrderedDict
from six import StringIO
-from azure.cli.core._output import OutputProducer, format_json, format_table, format_tsv, CommandResultItem
-import azure.cli.core.util as util
+from azure.cli.core._output import OutputProducer
+
+from knack.output import format_json, format_table, format_tsv
+from knack.util import CommandResultItem, normalize_newlines
class TestCoreCLIOutput(unittest.TestCase):
@@ -24,7 +26,7 @@ def test_out_json_valid(self):
# The JSON output when the input is a dict should be the dict serialized to JSON
output_producer = OutputProducer(formatter=format_json, file=self.io)
output_producer.out(CommandResultItem({'active': True, 'id': '0b1f6472'}))
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""{
"active": true,
"id": "0b1f6472"
@@ -35,7 +37,7 @@ def test_out_json_from_ordered_dict(self):
# The JSON output when the input is OrderedDict should be serialized to JSON
output_producer = OutputProducer(formatter=format_json, file=self.io)
output_producer.out(CommandResultItem(OrderedDict({'active': True, 'id': '0b1f6472'})))
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""{
"active": true,
"id": "0b1f6472"
@@ -45,7 +47,7 @@ def test_out_json_from_ordered_dict(self):
def test_out_json_byte(self):
output_producer = OutputProducer(formatter=format_json, file=self.io)
output_producer.out(CommandResultItem({'active': True, 'contents': b'0b1f6472'}))
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""{
"active": true,
"contents": "0b1f6472"
@@ -55,7 +57,7 @@ def test_out_json_byte(self):
def test_out_json_byte_empty(self):
output_producer = OutputProducer(formatter=format_json, file=self.io)
output_producer.out(CommandResultItem({'active': True, 'contents': b''}))
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""{
"active": true,
"contents": ""
@@ -70,7 +72,7 @@ def test_out_table(self):
obj['active'] = True
obj['val'] = '0b1f6472'
output_producer.out(CommandResultItem(obj))
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""Active Val
-------- --------
True 0b1f6472
@@ -80,7 +82,7 @@ def test_out_table_list_of_lists(self):
output_producer = OutputProducer(formatter=format_table, file=self.io)
obj = [['a', 'b'], ['c', 'd']]
output_producer.out(CommandResultItem(obj))
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""Column1 Column2
--------- ---------
a b
@@ -95,7 +97,7 @@ def test_out_table_complex_obj(self):
obj['sub'] = {'1'}
result_item = CommandResultItem(obj)
output_producer.out(result_item)
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""Name Val
------ --------------
qwerty 0b1f6472qwerty
@@ -107,7 +109,7 @@ def test_out_table_no_query_no_transformer_order(self):
result_item = CommandResultItem(obj, table_transformer=None, is_query_active=False)
output_producer.out(result_item)
# Should be alphabetical order as no table transformer and query is not active.
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""Active Name Sub Val
-------- ------ -------- --------------
True qwerty 0b1f6472 0b1f6472qwerty
@@ -124,7 +126,7 @@ def transformer(r):
result_item = CommandResultItem(obj, table_transformer=transformer, is_query_active=False)
output_producer.out(result_item)
# Should be table transformer order
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""Name Val Active Sub
------ -------------- -------- --------
qwerty 0b1f6472qwerty True 0b1f6472
@@ -137,7 +139,7 @@ def test_out_table_no_query_yes_jmespath_table_transformer(self):
result_item = CommandResultItem(obj, table_transformer='{Name:name, Val:val, Active:active}', is_query_active=False)
output_producer.out(result_item)
# Should be table transformer order
- self.assertEqual(util.normalize_newlines(self.io.getvalue()), util.normalize_newlines(
+ self.assertEqual(normalize_newlines(self.io.getvalue()), normalize_newlines(
"""Name Val Active
------ -------------- --------
qwerty 0b1f6472qwerty True
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_parser.py b/src/azure-cli-core/azure/cli/core/tests/test_parser.py
index b931a14311c..01e8eae1533 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_parser.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_parser.py
@@ -3,11 +3,16 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+import mock
import unittest
from six import StringIO
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.commands import AzCliCommand
from azure.cli.core.parser import AzCliCommandParser
-from azure.cli.core.commands import CliCommand
-from azure.cli.core.commands.parameters import enum_choice_list
+
+from azure.cli.testsdk import TestCli
+
+from knack.arguments import enum_choice_list
class TestParser(unittest.TestCase):
@@ -25,11 +30,15 @@ def test_handler1():
def test_handler2():
pass
- command = CliCommand('command the-name', test_handler1)
- command2 = CliCommand('sub-command the-second-name', test_handler2)
+ cli = TestCli()
+ cli.loader = mock.MagicMock()
+ cli.loader.cli_ctx = cli
+
+ command = AzCliCommand(cli.loader, 'command the-name', test_handler1)
+ command2 = AzCliCommand(cli.loader, 'sub-command the-second-name', test_handler2)
cmd_table = {'command the-name': command, 'sub-command the-second-name': command2}
- parser = AzCliCommandParser()
+ parser = AzCliCommandParser(cli)
parser.load_command_table(cmd_table)
args = parser.parse_args('command the-name'.split())
self.assertIs(args.func, command)
@@ -45,11 +54,15 @@ def test_required_parameter(self):
def test_handler(args): # pylint: disable=unused-argument
pass
- command = CliCommand('test command', test_handler)
+ cli = TestCli()
+ cli.loader = mock.MagicMock()
+ cli.loader.cli_ctx = cli
+
+ command = AzCliCommand(cli.loader, 'test command', test_handler)
command.add_argument('req', '--req', required=True)
cmd_table = {'test command': command}
- parser = AzCliCommandParser()
+ parser = AzCliCommandParser(cli)
parser.load_command_table(cmd_table)
args = parser.parse_args('test command --req yep'.split())
@@ -63,11 +76,15 @@ def test_nargs_parameter(self):
def test_handler():
pass
- command = CliCommand('test command', test_handler)
+ cli = TestCli()
+ cli.loader = mock.MagicMock()
+ cli.loader.cli_ctx = cli
+
+ command = AzCliCommand(cli.loader, 'test command', test_handler)
command.add_argument('req', '--req', required=True, nargs=2)
cmd_table = {'test command': command}
- parser = AzCliCommandParser()
+ parser = AzCliCommandParser(cli)
parser.load_command_table(cmd_table)
args = parser.parse_args('test command --req yep nope'.split())
@@ -89,11 +106,15 @@ class TestEnum(Enum): # pylint: disable=too-few-public-methods
def test_handler():
pass
- command = CliCommand('test command', test_handler)
+ cli = TestCli()
+ cli.loader = mock.MagicMock()
+ cli.loader.cli_ctx = cli
+
+ command = AzCliCommand(cli.loader, 'test command', test_handler)
command.add_argument('opt', '--opt', required=True, **enum_choice_list(TestEnum))
cmd_table = {'test command': command}
- parser = AzCliCommandParser()
+ parser = AzCliCommandParser(cli)
parser.load_command_table(cmd_table)
args = parser.parse_args('test command --opt alL_cAps'.split())
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_profile.py b/src/azure-cli-core/azure/cli/core/tests/test_profile.py
index 827cc33f257..e3fee9ccba2 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_profile.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_profile.py
@@ -13,14 +13,17 @@
from copy import deepcopy
from adal import AdalError
-from azure.mgmt.resource.subscriptions.models import (SubscriptionState, Subscription,
- SubscriptionPolicies, SpendingLimit)
-from azure.cli.core._profile import (Profile, CredsCache, SubscriptionFinder,
- ServicePrincipalAuth, CLOUD, _AUTH_CTX_FACTORY)
-from azure.cli.core.util import CLIError
+from azure.mgmt.resource.subscriptions.models import \
+ (SubscriptionState, Subscription, SubscriptionPolicies, SpendingLimit)
+from azure.cli.core._profile import Profile, CredsCache, SubscriptionFinder, ServicePrincipalAuth, _AUTH_CTX_FACTORY
-class Test_Profile(unittest.TestCase):
+from azure.cli.testsdk import TestCli
+
+from knack.util import CLIError
+
+
+class TestProfile(unittest.TestCase):
@classmethod
def setUpClass(cls):
@@ -58,7 +61,10 @@ def setUpClass(cls):
cls.tenant_id)
def test_normalize(self):
- consolidated = Profile._normalize_properties(self.user1,
+ cli = TestCli()
+ storage_mock = {'subscriptions': None}
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
expected = {
@@ -78,11 +84,12 @@ def test_normalize(self):
self.assertIsNotNone(json.dumps(consolidated[0]))
def test_update_add_two_different_subscriptions(self):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
# add the first and verify
- consolidated = Profile._normalize_properties(self.user1,
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -103,7 +110,7 @@ def test_update_add_two_different_subscriptions(self):
})
# add the second and verify
- consolidated = Profile._normalize_properties(self.user2,
+ consolidated = profile._normalize_properties(self.user2,
[self.subscription2],
False)
profile._set_subscriptions(consolidated)
@@ -129,11 +136,12 @@ def test_update_add_two_different_subscriptions(self):
self.assertFalse(storage_mock['subscriptions'][0]['isDefault'])
def test_update_with_same_subscription_added_twice(self):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
# add one twice and verify we will have one but with new token
- consolidated = Profile._normalize_properties(self.user1,
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -142,7 +150,7 @@ def test_update_with_same_subscription_added_twice(self):
self.display_name1,
self.state1,
self.tenant_id)
- consolidated = Profile._normalize_properties(self.user1,
+ consolidated = profile._normalize_properties(self.user1,
[new_subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -151,10 +159,11 @@ def test_update_with_same_subscription_added_twice(self):
self.assertTrue(storage_mock['subscriptions'][0]['isDefault'])
def test_set_active_subscription(self):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1,
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -171,8 +180,9 @@ def test_set_active_subscription(self):
self.assertTrue(storage_mock['subscriptions'][0]['isDefault'])
def test_default_active_subscription_to_non_disabled_one(self):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
subscriptions = profile._normalize_properties(
self.user2, [self.subscription2, self.subscription1], False)
@@ -184,10 +194,11 @@ def test_default_active_subscription_to_non_disabled_one(self):
self.assertTrue(storage_mock['subscriptions'][1]['isDefault'])
def test_get_subscription(self):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1,
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -202,10 +213,11 @@ def test_get_subscription(self):
self.assertRaises(CLIError, profile.get_subscription, "random_id")
def test_get_auth_info_fail_on_user_account(self):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1,
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -213,34 +225,27 @@ def test_get_auth_info_fail_on_user_account(self):
# testing dump of existing logged in account
self.assertRaises(CLIError, profile.get_sp_auth_info)
- @mock.patch('azure.cli.core._profile.CLOUD', autospec=True)
@mock.patch('azure.cli.core.profiles.get_api_version', autospec=True)
- def test_subscription_finder_constructor(self, get_api_mock, cloud_mock):
+ def test_subscription_finder_constructor(self, get_api_mock):
+ cli = TestCli()
get_api_mock.return_value = '2016-06-01'
- cloud_mock.endpoints.resource_manager = 'http://foo_arm'
- finder = SubscriptionFinder(None, None, arm_client_factory=None)
+ cli.cloud.endpoints.resource_manager = 'http://foo_arm'
+ finder = SubscriptionFinder(cli, None, None, arm_client_factory=None)
result = finder._arm_client_factory(mock.MagicMock())
self.assertEquals(result.config.base_url, 'http://foo_arm')
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_get_auth_info_for_logged_in_service_principal(self, mock_auth_context):
+ cli = TestCli()
mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1
mock_arm_client = mock.MagicMock()
mock_arm_client.subscriptions.list.return_value = [self.subscription1]
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
storage_mock = {'subscriptions': []}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
profile._management_resource_uri = 'https://management.core.windows.net/'
- profile.find_subscriptions_on_login(False,
- '1234',
- 'my-secret',
- True,
- self.tenant_id,
- False,
- finder)
+ profile.find_subscriptions_on_login(False, '1234', 'my-secret', True, self.tenant_id, False, finder)
# action
extended_info = profile.get_sp_auth_info()
# assert
@@ -251,9 +256,10 @@ def test_get_auth_info_for_logged_in_service_principal(self, mock_auth_context):
self.assertEqual('https://management.azure.com/', extended_info['resourceManagerEndpointUrl'])
def test_get_auth_info_for_newly_created_service_principal(self):
+ cli = TestCli()
storage_mock = {'subscriptions': []}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1, [self.subscription1], False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1, [self.subscription1], False)
profile._set_subscriptions(consolidated)
# action
extended_info = profile.get_sp_auth_info(name='1234', cert_file='/tmp/123.pem')
@@ -269,14 +275,13 @@ def test_get_auth_info_for_newly_created_service_principal(self):
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_create_account_without_subscriptions_thru_service_principal(self, mock_auth_context):
mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1
+ cli = TestCli()
mock_arm_client = mock.MagicMock()
mock_arm_client.subscriptions.list.return_value = []
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
storage_mock = {'subscriptions': []}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
profile._management_resource_uri = 'https://management.core.windows.net/'
# action
@@ -299,6 +304,7 @@ def test_create_account_without_subscriptions_thru_service_principal(self, mock_
def test_create_account_without_subscriptions_thru_common_tenant(self, mock_auth_context):
mock_auth_context.acquire_token.return_value = self.token_entry1
mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1
+ cli = TestCli()
tenant_object = mock.MagicMock()
tenant_object.id = "foo-bar"
tenant_object.tenant_id = self.tenant_id
@@ -306,12 +312,10 @@ def test_create_account_without_subscriptions_thru_common_tenant(self, mock_auth
mock_arm_client.subscriptions.list.return_value = []
mock_arm_client.tenants.list.return_value = (x for x in [tenant_object])
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
storage_mock = {'subscriptions': []}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
profile._management_resource_uri = 'https://management.core.windows.net/'
# action
@@ -332,10 +336,11 @@ def test_create_account_without_subscriptions_thru_common_tenant(self, mock_auth
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_create_account_without_subscriptions_without_tenant(self, mock_auth_context):
+ cli = TestCli()
finder = mock.MagicMock()
finder.find_through_interactive_flow.return_value = []
storage_mock = {'subscriptions': []}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
# action
result = profile.find_subscriptions_on_login(True,
@@ -351,12 +356,13 @@ def test_create_account_without_subscriptions_without_tenant(self, mock_auth_con
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
def test_get_current_account_user(self, mock_read_cred_file):
+ cli = TestCli()
# setup
- mock_read_cred_file.return_value = [Test_Profile.token_entry1]
+ mock_read_cred_file.return_value = [TestProfile.token_entry1]
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1,
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -368,16 +374,18 @@ def test_get_current_account_user(self, mock_read_cred_file):
@mock.patch('azure.cli.core._profile._load_tokens_from_file', return_value=None)
def test_create_token_cache(self, mock_read_file):
+ cli = TestCli()
mock_read_file.return_value = []
- profile = Profile(use_global_creds_cache=False)
+ profile = Profile(cli, use_global_creds_cache=False)
cache = profile._creds_cache.adal_token_cache
self.assertFalse(cache.read_items())
self.assertTrue(mock_read_file.called)
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
def test_load_cached_tokens(self, mock_read_file):
- mock_read_file.return_value = [Test_Profile.token_entry1]
- profile = Profile(use_global_creds_cache=False)
+ cli = TestCli()
+ mock_read_file.return_value = [TestProfile.token_entry1]
+ profile = Profile(cli, use_global_creds_cache=False)
cache = profile._creds_cache.adal_token_cache
matched = cache.find({
"_authority": "https://login.microsoftonline.com/common",
@@ -390,13 +398,14 @@ def test_load_cached_tokens(self, mock_read_file):
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
@mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True)
def test_get_login_credentials(self, mock_get_token, mock_read_cred_file):
+ cli = TestCli()
some_token_type = 'Bearer'
- mock_read_cred_file.return_value = [Test_Profile.token_entry1]
- mock_get_token.return_value = (some_token_type, Test_Profile.raw_token1)
+ mock_read_cred_file.return_value = [TestProfile.token_entry1]
+ mock_get_token.return_value = (some_token_type, TestProfile.raw_token1)
# setup
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1,
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -417,17 +426,18 @@ def test_get_login_credentials(self, mock_get_token, mock_read_cred_file):
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
@mock.patch('requests.post', autospec=True)
def test_get_login_credentials_msi(self, mock_post, mock_read_cred_file):
+ cli = TestCli()
mock_read_cred_file.return_value = []
# setup an existing msi subscription
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
test_subscription_id = '12345678-1bf0-4dda-aec3-cb9272f09590'
test_tenant_id = '12345678-38d6-4fb2-bad9-b7b93a3e1234'
test_port = '12345'
test_user = 'VM'
msi_subscription = SubscriptionStub('/subscriptions/' + test_subscription_id, 'MSI@' + str(test_port), self.state1, test_tenant_id)
- consolidated = Profile._normalize_properties(test_user,
+ consolidated = profile._normalize_properties(test_user,
[msi_subscription],
True)
profile._set_subscriptions(consolidated)
@@ -488,14 +498,15 @@ def test_msi_token_request_retries(self, mock_sleep, mock_post):
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
@mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True)
def test_get_raw_token(self, mock_get_token, mock_read_cred_file):
+ cli = TestCli()
some_token_type = 'Bearer'
- mock_read_cred_file.return_value = [Test_Profile.token_entry1]
- mock_get_token.return_value = (some_token_type, Test_Profile.raw_token1,
- Test_Profile.token_entry1)
+ mock_read_cred_file.return_value = [TestProfile.token_entry1]
+ mock_get_token.return_value = (some_token_type, TestProfile.raw_token1,
+ TestProfile.token_entry1)
# setup
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1,
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -516,18 +527,19 @@ def test_get_raw_token(self, mock_get_token, mock_read_cred_file):
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
@mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True)
def test_get_login_credentials_for_graph_client(self, mock_get_token, mock_read_cred_file):
+ cli = TestCli()
some_token_type = 'Bearer'
- mock_read_cred_file.return_value = [Test_Profile.token_entry1]
- mock_get_token.return_value = (some_token_type, Test_Profile.raw_token1)
+ mock_read_cred_file.return_value = [TestProfile.token_entry1]
+ mock_get_token.return_value = (some_token_type, TestProfile.raw_token1)
# setup
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1, [self.subscription1],
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1, [self.subscription1],
False)
profile._set_subscriptions(consolidated)
# action
cred, _, tenant_id = profile.get_login_credentials(
- resource=CLOUD.endpoints.active_directory_graph_resource_id)
+ resource=cli.cloud.endpoints.active_directory_graph_resource_id)
_, _ = cred._token_retriever()
# verify
mock_get_token.assert_called_once_with(mock.ANY, self.user1, self.tenant_id,
@@ -541,6 +553,7 @@ def test_cloud_console_login(self):
from azure.cli.core.util import get_file_json
from azure.cli.core._session import Session
+ cli = TestCli()
test_account = Session()
test_dir = tempfile.mkdtemp()
test_account_file = os.path.join(test_dir, 'azureProfile.json')
@@ -560,7 +573,7 @@ def test_cloud_console_login(self):
setattr(test_sub, 'tenant_id', '54826b22-38d6-4fb2-bad9-b7b93a3e9c5a')
with mock.patch('azure.cli.core._profile.SubscriptionFinder._find_using_specific_tenant', autospec=True, return_value=[test_sub]):
- profile = Profile(use_global_creds_cache=False, storage=test_account)
+ profile = Profile(cli, use_global_creds_cache=False, storage=test_account)
result_accounts = profile.find_subscriptions_in_cloud_console([arm_token, kv_token])
# verify the local account
@@ -619,18 +632,19 @@ def test_cloud_console_login(self):
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
@mock.patch('azure.cli.core._profile.CredsCache.retrieve_token_for_user', autospec=True)
def test_get_login_credentials_for_data_lake_client(self, mock_get_token, mock_read_cred_file):
+ cli = TestCli()
some_token_type = 'Bearer'
- mock_read_cred_file.return_value = [Test_Profile.token_entry1]
- mock_get_token.return_value = (some_token_type, Test_Profile.raw_token1)
+ mock_read_cred_file.return_value = [TestProfile.token_entry1]
+ mock_get_token.return_value = (some_token_type, TestProfile.raw_token1)
# setup
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1, [self.subscription1],
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1, [self.subscription1],
False)
profile._set_subscriptions(consolidated)
# action
cred, _, tenant_id = profile.get_login_credentials(
- resource=CLOUD.endpoints.active_directory_data_lake_resource_id)
+ resource=cli.cloud.endpoints.active_directory_data_lake_resource_id)
_, _ = cred._token_retriever()
# verify
mock_get_token.assert_called_once_with(mock.ANY, self.user1, self.tenant_id,
@@ -640,12 +654,13 @@ def test_get_login_credentials_for_data_lake_client(self, mock_get_token, mock_r
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
@mock.patch('azure.cli.core._profile.CredsCache.persist_cached_creds', autospec=True)
def test_logout(self, mock_persist_creds, mock_read_cred_file):
+ cli = TestCli()
# setup
- mock_read_cred_file.return_value = [Test_Profile.token_entry1]
+ mock_read_cred_file.return_value = [TestProfile.token_entry1]
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1,
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
profile._set_subscriptions(consolidated)
@@ -660,13 +675,14 @@ def test_logout(self, mock_persist_creds, mock_read_cred_file):
@mock.patch('azure.cli.core._profile._delete_file', autospec=True)
def test_logout_all(self, mock_delete_cred_file):
+ cli = TestCli()
# setup
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1,
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1,
[self.subscription1],
False)
- consolidated2 = Profile._normalize_properties(self.user2,
+ consolidated2 = profile._normalize_properties(self.user2,
[self.subscription2],
False)
profile._set_subscriptions(consolidated + consolidated2)
@@ -681,14 +697,13 @@ def test_logout_all(self, mock_delete_cred_file):
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_find_subscriptions_thru_username_password(self, mock_auth_context):
+ cli = TestCli()
mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1
mock_auth_context.acquire_token.return_value = self.token_entry1
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)]
mock_arm_client.subscriptions.list.return_value = [self.subscription1]
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
mgmt_resource = 'https://management.core.windows.net/'
# action
subs = finder.find_from_user_account(self.user1, 'bar', None, mgmt_resource)
@@ -707,13 +722,13 @@ def test_find_subscriptions_in_vm_with_msi(self, mock_get_client_class, mock_pos
class ClientStub:
def __init__(self, *args, **kwargs):
self.subscriptions = mock.MagicMock()
- self.subscriptions.list.return_value = [Test_Profile.subscription1]
+ self.subscriptions.list.return_value = [TestProfile.subscription1]
self.config = mock.MagicMock()
mock_get_client_class.return_value = ClientStub
-
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
test_token_entry = {
'token_type': 'Bearer',
@@ -738,16 +753,16 @@ def __init__(self, *args, **kwargs):
@mock.patch('adal.AuthenticationContext.acquire_token_with_username_password', autospec=True)
@mock.patch('adal.AuthenticationContext.acquire_token', autospec=True)
- @mock.patch('azure.cli.core._profile.CLOUD', autospec=True)
- def test_find_subscriptions_thru_username_password_adfs(self, mock_get_cloud, mock_acquire_token,
+ def test_find_subscriptions_thru_username_password_adfs(self, mock_acquire_token,
mock_acquire_token_username_password):
+ cli = TestCli()
TEST_ADFS_AUTH_URL = 'https://adfs.local.azurestack.external/adfs'
def test_acquire_token(self, resource, username, password, client_id):
global acquire_token_invoked
acquire_token_invoked = True
if (self.authority.url == TEST_ADFS_AUTH_URL and self.authority.is_adfs_authority):
- return Test_Profile.token_entry1
+ return TestProfile.token_entry1
else:
raise ValueError('AuthContext was not initialized correctly for ADFS')
@@ -756,10 +771,8 @@ def test_acquire_token(self, resource, username, password, client_id):
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)]
mock_arm_client.subscriptions.list.return_value = [self.subscription1]
- mock_get_cloud.endpoints.active_directory = TEST_ADFS_AUTH_URL
- finder = SubscriptionFinder(_AUTH_CTX_FACTORY,
- None,
- lambda _: mock_arm_client)
+ cli.cloud.endpoints.active_directory = TEST_ADFS_AUTH_URL
+ finder = SubscriptionFinder(cli, _AUTH_CTX_FACTORY, None, lambda _: mock_arm_client)
mgmt_resource = 'https://management.core.windows.net/'
# action
subs = finder.find_from_user_account(self.user1, 'bar', None, mgmt_resource)
@@ -770,15 +783,13 @@ def test_acquire_token(self, resource, username, password, client_id):
@mock.patch('adal.AuthenticationContext', autospec=True)
@mock.patch('azure.cli.core._profile.logger', autospec=True)
- def test_find_subscriptions_thru_username_password_with_account_disabled(self, mock_logger,
- mock_auth_context):
+ def test_find_subscriptions_thru_username_password_with_account_disabled(self, mock_logger, mock_auth_context):
+ cli = TestCli()
mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1
mock_auth_context.acquire_token.side_effect = AdalError('Account is disabled')
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)]
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
mgmt_resource = 'https://management.core.windows.net/'
# action
subs = finder.find_from_user_account(self.user1, 'bar', None, mgmt_resource)
@@ -792,13 +803,12 @@ def test_find_subscriptions_from_particular_tenent(self, mock_auth_context):
def just_raise(ex):
raise ex
+ cli = TestCli()
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.side_effect = lambda: just_raise(
ValueError("'tenants.list' should not occur"))
mock_arm_client.subscriptions.list.return_value = [self.subscription1]
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
# action
subs = finder.find_from_user_account(self.user1, 'bar', 'NiceTenant', 'http://someresource')
@@ -807,15 +817,14 @@ def just_raise(ex):
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_find_subscriptions_through_interactive_flow(self, mock_auth_context):
+ cli = TestCli()
test_nonsense_code = {'message': 'magic code for you'}
mock_auth_context.acquire_user_code.return_value = test_nonsense_code
mock_auth_context.acquire_token_with_device_code.return_value = self.token_entry1
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)]
mock_arm_client.subscriptions.list.return_value = [self.subscription1]
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
mgmt_resource = 'https://management.core.windows.net/'
# action
subs = finder.find_through_interactive_flow(None, mgmt_resource)
@@ -834,13 +843,12 @@ def test_find_subscriptions_interactive_from_particular_tenent(self, mock_auth_c
def just_raise(ex):
raise ex
+ cli = TestCli()
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.side_effect = lambda: just_raise(
ValueError("'tenants.list' should not occur"))
mock_arm_client.subscriptions.list.return_value = [self.subscription1]
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
# action
subs = finder.find_through_interactive_flow('NiceTenant', 'http://someresource')
@@ -849,12 +857,11 @@ def just_raise(ex):
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_find_subscriptions_from_service_principal_id(self, mock_auth_context):
+ cli = TestCli()
mock_auth_context.acquire_token_with_client_credentials.return_value = self.token_entry1
mock_arm_client = mock.MagicMock()
mock_arm_client.subscriptions.list.return_value = [self.subscription1]
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
mgmt_resource = 'https://management.core.windows.net/'
# action
subs = finder.find_from_service_principal_id('my app', ServicePrincipalAuth('my secret'),
@@ -869,12 +876,11 @@ def test_find_subscriptions_from_service_principal_id(self, mock_auth_context):
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_find_subscriptions_from_service_principal_using_cert(self, mock_auth_context):
+ cli = TestCli()
mock_auth_context.acquire_token_with_client_certificate.return_value = self.token_entry1
mock_arm_client = mock.MagicMock()
mock_arm_client.subscriptions.list.return_value = [self.subscription1]
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
mgmt_resource = 'https://management.core.windows.net/'
curr_dir = os.path.dirname(os.path.realpath(__file__))
@@ -893,18 +899,17 @@ def test_find_subscriptions_from_service_principal_using_cert(self, mock_auth_co
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_refresh_accounts_one_user_account(self, mock_auth_context):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False)
profile._set_subscriptions(consolidated)
mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1
mock_auth_context.acquire_token.return_value = self.token_entry1
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)]
mock_arm_client.subscriptions.list.return_value = deepcopy([self.subscription1, self.subscription2])
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
# action
profile.refresh_accounts(finder)
@@ -917,11 +922,12 @@ def test_refresh_accounts_one_user_account(self, mock_auth_context):
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_refresh_accounts_one_user_account_one_sp_account(self, mock_auth_context):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
sp_subscription1 = SubscriptionStub('sp-sub/3', 'foo-subname', self.state1, 'foo_tenant.onmicrosoft.com')
- consolidated = Profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False)
- consolidated += Profile._normalize_properties('http://foo', [sp_subscription1], True)
+ consolidated = profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False)
+ consolidated += profile._normalize_properties('http://foo', [sp_subscription1], True)
profile._set_subscriptions(consolidated)
mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1
mock_auth_context.acquire_token.return_value = self.token_entry1
@@ -929,9 +935,7 @@ def test_refresh_accounts_one_user_account_one_sp_account(self, mock_auth_contex
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)]
mock_arm_client.subscriptions.list.side_effect = deepcopy([[self.subscription1], [self.subscription2, sp_subscription1]])
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
profile._creds_cache.retrieve_secret_of_service_principal = lambda _: 'verySecret'
profile._creds_cache.flush_to_disk = lambda _: ''
# action
@@ -947,18 +951,17 @@ def test_refresh_accounts_one_user_account_one_sp_account(self, mock_auth_contex
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_refresh_accounts_with_nothing(self, mock_auth_context):
+ cli = TestCli()
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
- consolidated = Profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
+ consolidated = profile._normalize_properties(self.user1, deepcopy([self.subscription1]), False)
profile._set_subscriptions(consolidated)
mock_auth_context.acquire_token_with_username_password.return_value = self.token_entry1
mock_auth_context.acquire_token.return_value = self.token_entry1
mock_arm_client = mock.MagicMock()
mock_arm_client.tenants.list.return_value = [TenantStub(self.tenant_id)]
mock_arm_client.subscriptions.list.return_value = []
- finder = SubscriptionFinder(lambda _, _2: mock_auth_context,
- None,
- lambda _: mock_arm_client)
+ finder = SubscriptionFinder(cli, lambda _, _1, _2: mock_auth_context, None, lambda _: mock_arm_client)
# action
profile.refresh_accounts(finder)
@@ -968,6 +971,7 @@ def test_refresh_accounts_with_nothing(self, mock_auth_context):
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
def test_credscache_load_tokens_and_sp_creds_with_secret(self, mock_read_file):
+ cli = TestCli()
test_sp = {
"servicePrincipalId": "myapp",
"servicePrincipalTenant": "mytenant",
@@ -976,7 +980,7 @@ def test_credscache_load_tokens_and_sp_creds_with_secret(self, mock_read_file):
mock_read_file.return_value = [self.token_entry1, test_sp]
# action
- creds_cache = CredsCache(async_persist=False)
+ creds_cache = CredsCache(cli, async_persist=False)
# assert
token_entries = [entry for _, entry in creds_cache.load_adal_token_cache().read_items()]
@@ -985,6 +989,7 @@ def test_credscache_load_tokens_and_sp_creds_with_secret(self, mock_read_file):
@mock.patch('azure.cli.core._profile._load_tokens_from_file', autospec=True)
def test_credscache_load_tokens_and_sp_creds_with_cert(self, mock_read_file):
+ cli = TestCli()
test_sp = {
"servicePrincipalId": "myapp",
"servicePrincipalTenant": "mytenant",
@@ -993,7 +998,7 @@ def test_credscache_load_tokens_and_sp_creds_with_cert(self, mock_read_file):
mock_read_file.return_value = [test_sp]
# action
- creds_cache = CredsCache(async_persist=False)
+ creds_cache = CredsCache(cli, async_persist=False)
creds_cache.load_adal_token_cache()
# assert
@@ -1003,6 +1008,7 @@ def test_credscache_load_tokens_and_sp_creds_with_cert(self, mock_read_file):
@mock.patch('os.fdopen', autospec=True)
@mock.patch('os.open', autospec=True)
def test_credscache_add_new_sp_creds(self, _, mock_open_for_write, mock_read_file):
+ cli = TestCli()
test_sp = {
"servicePrincipalId": "myapp",
"servicePrincipalTenant": "mytenant",
@@ -1015,7 +1021,7 @@ def test_credscache_add_new_sp_creds(self, _, mock_open_for_write, mock_read_fil
}
mock_open_for_write.return_value = FileHandleStub()
mock_read_file.return_value = [self.token_entry1, test_sp]
- creds_cache = CredsCache(async_persist=False)
+ creds_cache = CredsCache(cli, async_persist=False)
# action
creds_cache.save_service_principal_cred(test_sp2)
@@ -1030,6 +1036,7 @@ def test_credscache_add_new_sp_creds(self, _, mock_open_for_write, mock_read_fil
@mock.patch('os.fdopen', autospec=True)
@mock.patch('os.open', autospec=True)
def test_credscache_add_preexisting_sp_creds(self, _, mock_open_for_write, mock_read_file):
+ cli = TestCli()
test_sp = {
"servicePrincipalId": "myapp",
"servicePrincipalTenant": "mytenant",
@@ -1037,7 +1044,7 @@ def test_credscache_add_preexisting_sp_creds(self, _, mock_open_for_write, mock_
}
mock_open_for_write.return_value = FileHandleStub()
mock_read_file.return_value = [test_sp]
- creds_cache = CredsCache(async_persist=False)
+ creds_cache = CredsCache(cli, async_persist=False)
# action
creds_cache.save_service_principal_cred(test_sp)
@@ -1049,6 +1056,7 @@ def test_credscache_add_preexisting_sp_creds(self, _, mock_open_for_write, mock_
@mock.patch('os.fdopen', autospec=True)
@mock.patch('os.open', autospec=True)
def test_credscache_remove_creds(self, _, mock_open_for_write, mock_read_file):
+ cli = TestCli()
test_sp = {
"servicePrincipalId": "myapp",
"servicePrincipalTenant": "mytenant",
@@ -1056,7 +1064,7 @@ def test_credscache_remove_creds(self, _, mock_open_for_write, mock_read_file):
}
mock_open_for_write.return_value = FileHandleStub()
mock_read_file.return_value = [self.token_entry1, test_sp]
- creds_cache = CredsCache(async_persist=False)
+ creds_cache = CredsCache(cli, async_persist=False)
# action #1, logout a user
creds_cache.remove_cached_creds(self.user1)
@@ -1079,6 +1087,7 @@ def test_credscache_remove_creds(self, _, mock_open_for_write, mock_read_file):
@mock.patch('os.open', autospec=True)
@mock.patch('adal.AuthenticationContext', autospec=True)
def test_credscache_new_token_added_by_adal(self, mock_adal_auth_context, _, mock_open_for_write, mock_read_file): # pylint: disable=line-too-long
+ cli = TestCli()
token_entry2 = {
"accessToken": "new token",
"tokenType": "Bearer",
@@ -1089,14 +1098,14 @@ def acquire_token_side_effect(*args): # pylint: disable=unused-argument
creds_cache.adal_token_cache.has_state_changed = True
return token_entry2
- def get_auth_context(authority, **kwargs): # pylint: disable=unused-argument
+ def get_auth_context(_, authority, **kwargs): # pylint: disable=unused-argument
mock_adal_auth_context.cache = kwargs['cache']
return mock_adal_auth_context
mock_adal_auth_context.acquire_token.side_effect = acquire_token_side_effect
mock_open_for_write.return_value = FileHandleStub()
mock_read_file.return_value = [self.token_entry1]
- creds_cache = CredsCache(auth_ctx_factory=get_auth_context, async_persist=False)
+ creds_cache = CredsCache(cli, auth_ctx_factory=get_auth_context, async_persist=False)
# action
mgmt_resource = 'https://management.core.windows.net/'
@@ -1115,9 +1124,10 @@ def get_auth_context(authority, **kwargs): # pylint: disable=unused-argument
@mock.patch('azure.cli.core._profile.get_file_json', autospec=True)
def test_credscache_good_error_on_file_corruption(self, mock_read_file):
mock_read_file.side_effect = ValueError('a bad error for you')
+ cli = TestCli()
# action
- creds_cache = CredsCache(async_persist=False)
+ creds_cache = CredsCache(cli, async_persist=False)
# assert
with self.assertRaises(CLIError) as context:
@@ -1147,27 +1157,27 @@ def test_service_principal_auth_client_cert(self):
'thumbprint': 'F0:6A:53:84:8B:BE:71:4A:42:90:D6:9D:33:52:79:C1:D0:10:73:FD'
})
- @mock.patch('azure.cli.core._profile.CLOUD', autospec=True)
- def test_detect_adfs_authority_url(self, mock_get_cloud):
+ def test_detect_adfs_authority_url(self):
+ cli = TestCli()
adfs_url_1 = 'https://adfs.redmond.ext-u15f2402.masd.stbtest.microsoft.com/adfs/'
- mock_get_cloud.endpoints.active_directory = adfs_url_1
+ cli.cloud.endpoints.active_directory = adfs_url_1
storage_mock = {'subscriptions': None}
- profile = Profile(storage_mock, use_global_creds_cache=False)
+ profile = Profile(cli, storage_mock, use_global_creds_cache=False)
# test w/ trailing slash
- r = profile.auth_ctx_factory('common', None)
+ r = profile.auth_ctx_factory(cli, 'common', None)
self.assertEqual(r.authority.url, adfs_url_1)
# test w/o trailing slash
adfs_url_2 = 'https://adfs.redmond.ext-u15f2402.masd.stbtest.microsoft.com/adfs'
- mock_get_cloud.endpoints.active_directory = adfs_url_2
- r = profile.auth_ctx_factory('common', None)
+ cli.cloud.endpoints.active_directory = adfs_url_2
+ r = profile.auth_ctx_factory(cli, 'common', None)
self.assertEqual(r.authority.url, adfs_url_2)
# test w/ regular aad
aad_url = 'https://login.microsoftonline.com'
- mock_get_cloud.endpoints.active_directory = aad_url
- r = profile.auth_ctx_factory('common', None)
+ cli.cloud.endpoints.active_directory = aad_url
+ r = profile.auth_ctx_factory(cli, 'common', None)
self.assertEqual(r.authority.url, aad_url + '/common')
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_util.py b/src/azure-cli-core/azure/cli/core/tests/test_util.py
index 8a8ec1a63bc..4b7c9ed4cc0 100644
--- a/src/azure-cli-core/azure/cli/core/tests/test_util.py
+++ b/src/azure-cli-core/azure/cli/core/tests/test_util.py
@@ -10,69 +10,11 @@
from datetime import date, time, datetime
from azure.cli.core.util import \
- (get_file_json, todict, to_snake_case, truncate_text, shell_safe_json_parse, b64_to_hex,
- hash_string, random_string)
+ (get_file_json, truncate_text, shell_safe_json_parse, b64_to_hex, hash_string, random_string)
class TestUtils(unittest.TestCase):
- def test_application_todict_none(self):
- the_input = None
- actual = todict(the_input)
- expected = None
- self.assertEqual(actual, expected)
-
- def test_application_todict_dict_empty(self):
- the_input = {}
- actual = todict(the_input)
- expected = {}
- self.assertEqual(actual, expected)
-
- def test_application_todict_dict(self):
- the_input = {'a': 'b'}
- actual = todict(the_input)
- expected = {'a': 'b'}
- self.assertEqual(actual, expected)
-
- def test_application_todict_list(self):
- the_input = [{'a': 'b'}]
- actual = todict(the_input)
- expected = [{'a': 'b'}]
- self.assertEqual(actual, expected)
-
- def test_application_todict_obj(self):
- MyObject = namedtuple('MyObject', 'a b')
- the_input = MyObject('x', 'y')
- actual = todict(the_input)
- expected = {'a': 'x', 'b': 'y'}
- self.assertEqual(actual, expected)
-
- def test_application_todict_dict_with_obj(self):
- MyObject = namedtuple('MyObject', 'a b')
- mo = MyObject('x', 'y')
- the_input = {'a': mo}
- actual = todict(the_input)
- expected = {'a': {'a': 'x', 'b': 'y'}}
- self.assertEqual(actual, expected)
-
- def test_application_todict_dict_with_date(self):
- the_input = date(2017, 10, 13)
- actual = todict(the_input)
- expected = the_input.isoformat()
- self.assertEqual(actual, expected)
-
- def test_application_todict_dict_with_datetime(self):
- the_input = datetime(2017, 10, 13, 1, 23, 45)
- actual = todict(the_input)
- expected = the_input.isoformat()
- self.assertEqual(actual, expected)
-
- def test_application_todict_dict_with_time(self):
- the_input = time(1, 23, 45)
- actual = todict(the_input)
- expected = the_input.isoformat()
- self.assertEqual(actual, expected)
-
def test_load_json_from_file(self):
_, pathname = tempfile.mkstemp()
@@ -92,24 +34,6 @@ def test_load_json_from_file(self):
self.assertTrue(str(ex).find(
'contains error: Expecting value: line 1 column 1 (char 0)'))
- def test_to_snake_case_from_camel(self):
- the_input = 'thisIsCamelCase'
- expected = 'this_is_camel_case'
- actual = to_snake_case(the_input)
- self.assertEqual(expected, actual)
-
- def test_to_snake_case_empty(self):
- the_input = ''
- expected = ''
- actual = to_snake_case(the_input)
- self.assertEqual(expected, actual)
-
- def test_to_snake_case_already_snake(self):
- the_input = 'this_is_snake_cased'
- expected = 'this_is_snake_cased'
- actual = to_snake_case(the_input)
- self.assertEqual(expected, actual)
-
def test_truncate_text(self):
expected = 'stri [...]'
actual = truncate_text('string to shorten', width=10)
diff --git a/src/azure-cli-core/azure/cli/core/tests/test_vcr_security.py b/src/azure-cli-core/azure/cli/core/tests/test_vcr_security.py
deleted file mode 100644
index 2cc5f0713bb..00000000000
--- a/src/azure-cli-core/azure/cli/core/tests/test_vcr_security.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-# pylint: disable=line-too-long
-import unittest
-
-
-class Test_vcr_security(unittest.TestCase):
- def test_deployment_name_scrub(self):
- from azure.cli.testsdk.vcr_test_base import _scrub_deployment_name as scrub_deployment_name
- uri1 = 'https://www.contoso.com/deployments/azurecli1466174372.33571889479?api-version=2015-11-01'
- uri2 = 'https://www.contoso.com/deployments/azurecli1466174372.33571889479/more'
-
- uri1 = scrub_deployment_name(uri1)
- uri2 = scrub_deployment_name(uri2)
-
- self.assertEqual(
- uri1, 'https://www.contoso.com/deployments/mock-deployment?api-version=2015-11-01')
- self.assertEqual(uri2, 'https://www.contoso.com/deployments/mock-deployment/more')
-
-
-if __name__ == '__main__':
- unittest.main()
diff --git a/src/azure-cli-core/azure/cli/core/util.py b/src/azure-cli-core/azure/cli/core/util.py
index 6d2de0ec18f..6d3084268f1 100644
--- a/src/azure-cli-core/azure/cli/core/util.py
+++ b/src/azure-cli-core/azure/cli/core/util.py
@@ -4,30 +4,20 @@
# --------------------------------------------------------------------------------------------
from __future__ import print_function
-import re
import sys
import json
import base64
import binascii
-from datetime import date, time, datetime, timedelta
-from enum import Enum
+from knack.log import get_logger
+from knack.util import CLIError, to_snake_case
import six
-import azure.cli.core.azlogging as azlogging
+
+logger = get_logger(__name__)
CLI_PACKAGE_NAME = 'azure-cli'
COMPONENT_PREFIX = 'azure-cli-'
-logger = azlogging.get_az_logger(__name__)
-
-
-class CLIError(Exception):
- """Base class for exceptions that occur during
- normal operation of the application.
- Typically due to user error and can be resolved by the user.
- """
- pass
-
def handle_exception(ex):
# For error code, follow guidelines at https://docs.python.org/2/library/sys.html#sys.exit,
@@ -49,10 +39,6 @@ def empty_on_404(ex):
raise ex
-def normalize_newlines(str_to_normalize):
- return str_to_normalize.replace('\r\n', '\n')
-
-
def truncate_text(str_to_shorten, width=70, placeholder=' [...]'):
if width <= 0:
raise ValueError('width must be greater than 0.')
@@ -60,10 +46,12 @@ def truncate_text(str_to_shorten, width=70, placeholder=' [...]'):
return str_to_shorten[:s_len] + (str_to_shorten[s_len:] and placeholder)
-def show_version_info_exit(out_file):
+def get_az_version_string():
import platform
from pip import get_installed_distributions
from azure.cli.core.extension import get_extensions, EXTENSIONS_DIR
+
+ output = six.StringIO()
installed_dists = get_installed_distributions(local_only=True)
cli_info = None
@@ -73,32 +61,32 @@ def show_version_info_exit(out_file):
break
if cli_info:
- print('{} ({})'.format(cli_info['name'], cli_info['version']), file=out_file)
+ print('{} ({})'.format(cli_info['name'], cli_info['version']), file=output)
component_version_info = sorted([{'name': dist.key.replace(COMPONENT_PREFIX, ''),
'version': dist.version}
for dist in installed_dists
if dist.key.startswith(COMPONENT_PREFIX)],
key=lambda x: x['name'])
-
- print(file=out_file)
+ print(file=output)
print('\n'.join(['{} ({})'.format(c['name'], c['version']) for c in component_version_info]),
- file=out_file)
- print(file=out_file)
+ file=output)
+ print(file=output)
extensions = get_extensions()
if extensions:
- print('Extensions:', file=out_file)
+ print('Extensions:', file=output)
print('\n'.join(['{} ({})'.format(c.name, c.version) for c in extensions]),
- file=out_file)
- print(file=out_file)
- print("Python location '{}'".format(sys.executable), file=out_file)
- print("Extensions directory '{}'".format(EXTENSIONS_DIR), file=out_file)
- print(file=out_file)
- print('Python ({}) {}'.format(platform.system(), sys.version), file=out_file)
- print(file=out_file)
- print('Legal docs and information: aka.ms/AzureCliLegal', file=out_file)
- print(file=out_file)
- sys.exit(0)
+ file=output)
+ print(file=output)
+ print("Python location '{}'".format(sys.executable), file=output)
+ print("Extensions directory '{}'".format(EXTENSIONS_DIR), file=output)
+ print(file=output)
+ print('Python ({}) {}'.format(platform.system(), sys.version), file=output)
+ print(file=output)
+ print('Legal docs and information: aka.ms/AzureCliLegal', file=output)
+ print(file=output)
+ version_string = output.getvalue()
+ return version_string
def get_json_object(json_string):
@@ -162,39 +150,6 @@ def shell_safe_json_parse(json_or_dict_string, preserve_order=False):
raise CLIError(json_ex)
-def todict(obj): # pylint: disable=too-many-return-statements
-
- if isinstance(obj, dict):
- return {k: todict(v) for (k, v) in obj.items()}
- elif isinstance(obj, list):
- return [todict(a) for a in obj]
- elif isinstance(obj, Enum):
- return obj.value
- elif isinstance(obj, (date, time, datetime)):
- return obj.isoformat()
- elif isinstance(obj, timedelta):
- return str(obj)
- elif hasattr(obj, '_asdict'):
- return todict(obj._asdict())
- elif hasattr(obj, '__dict__'):
- return dict([(to_camel_case(k), todict(v))
- for k, v in obj.__dict__.items()
- if not callable(v) and not k.startswith('_')])
- return obj
-
-
-KEYS_CAMELCASE_PATTERN = re.compile('(?!^)_([a-zA-Z])')
-
-
-def to_camel_case(s):
- return re.sub(KEYS_CAMELCASE_PATTERN, lambda x: x.group(1).upper(), s)
-
-
-def to_snake_case(s):
- s1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', s)
- return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s1).lower()
-
-
def b64encode(s):
"""
Encodes a string to base64 on 2.x and 3.x
diff --git a/src/azure-cli-core/setup.py b/src/azure-cli-core/setup.py
index a1093202734..a02cf04cd41 100644
--- a/src/azure-cli-core/setup.py
+++ b/src/azure-cli-core/setup.py
@@ -56,6 +56,7 @@
'colorama',
'humanfriendly',
'jmespath',
+ 'knack',
'msrest>=0.4.4',
'msrestazure>=0.4.7',
'paramiko',
diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py b/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py
index 462ae106837..8929946f1d0 100644
--- a/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py
+++ b/src/azure-cli-testsdk/azure/cli/testsdk/__init__.py
@@ -3,8 +3,12 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCli
+
from azure_devtools.scenario_tests import live_only, record_only, get_sha1_hash
+from knack.commands import CLICommandsLoader
+
from .base import ScenarioTest, LiveScenarioTest
from .preparers import (StorageAccountPreparer, ResourceGroupPreparer, RoleBasedServicePrincipalPreparer,
KeyVaultPreparer)
@@ -19,4 +23,43 @@
'live_only', 'record_only', 'StringCheck', 'StringContainCheck', 'get_sha1_hash', 'KeyVaultPreparer',
'JMESPathCheckGreaterThan', 'api_version_constraint', 'get_active_api_profile', 'create_random_name']
+
+class TestCli(AzCli):
+
+ def __init__(self, commands_loader_cls=None, **kwargs):
+ import os
+
+ from azure.cli.core import MainCommandsLoader, AzCli
+ from azure.cli.core.commands import AzCliCommandInvoker
+ from azure.cli.core.azlogging import AzCliLogging
+ from azure.cli.core.cloud import get_active_cloud
+ from azure.cli.core.parser import AzCliCommandParser
+ from azure.cli.core._config import GLOBAL_CONFIG_DIR, ENV_VAR_PREFIX
+ from azure.cli.core._help import AzCliHelp
+ from azure.cli.core._profile import Profile
+
+ from knack.completion import ARGCOMPLETE_ENV_NAME
+ from knack.log import get_logger
+
+ super(TestCli, self).__init__(
+ cli_name='az',
+ config_dir=GLOBAL_CONFIG_DIR,
+ config_env_var_prefix=ENV_VAR_PREFIX,
+ commands_loader_cls=commands_loader_cls or MainCommandsLoader,
+ parser_cls=AzCliCommandParser,
+ logging_cls=AzCliLogging,
+ help_cls=AzCliHelp,
+ invocation_cls=AzCliCommandInvoker)
+
+ self.data['headers'] = {} # the x-ms-client-request-id is generated before a command is to execute
+ self.data['command'] = 'unknown'
+ self.data['completer_active'] = ARGCOMPLETE_ENV_NAME in os.environ
+ self.data['query_active'] = False
+ self.cloud = get_active_cloud(self)
+
+ def get_cli_version(self):
+ from azure.cli.core.util import get_az_version_string
+ return get_az_version_string()
+
+
__version__ = '0.1.0'
diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/base.py b/src/azure-cli-testsdk/azure/cli/testsdk/base.py
index caeac677759..5c437e2063c 100644
--- a/src/azure-cli-testsdk/azure/cli/testsdk/base.py
+++ b/src/azure-cli-testsdk/azure/cli/testsdk/base.py
@@ -9,6 +9,7 @@
import shlex
import logging
import inspect
+import unittest
from azure_devtools.scenario_tests import (IntegrationTestBase, ReplayableTest, SubscriptionRecordingProcessor,
OAuthRequestResponsesFilter, GeneralNameReplacer, LargeRequestBodyProcessor,
@@ -25,11 +26,43 @@
logger = logging.getLogger('azure.cli.testsdk')
+class CheckerMixin(object):
-class ScenarioTest(ReplayableTest):
+ def _apply_kwargs(self, val):
+ try:
+ return val.format(**self.kwargs)
+ except Exception as ex:
+ return val
+
+ def check(self, query, expected_results):
+ from azure.cli.testsdk.checkers import JMESPathCheck
+ query = self._apply_kwargs(query)
+ expected_results = self._apply_kwargs(expected_results)
+ return JMESPathCheck(query, expected_results)
+
+ def exists(self, query):
+ from azure.cli.testsdk.checkers import JMESPathCheckExists
+ query = self._apply_kwargs(query)
+ return JMESPathCheckExists(query)
+
+ def greater_than(self, query, expected_results):
+ from azure.cli.testsdk.checkers import JMESPathCheckGreaterThan
+ query = self._apply_kwargs(query)
+ expected_results = self._apply_kwargs(expected_results)
+ return JMESPathCheckGreaterThan(query, expected_results)
+
+ def is_empty(self):
+ from azure.cli.testsdk.checkers import NoneCheck
+ return NoneCheck()
+
+
+class ScenarioTest(ReplayableTest, CheckerMixin, unittest.TestCase):
def __init__(self, method_name, config_file=None, recording_name=None,
recording_processors=None, replay_processors=None, recording_patches=None, replay_patches=None):
+ from azure.cli.testsdk import TestCli
+ self.cli_ctx = TestCli()
self.name_replacer = GeneralNameReplacer()
+ self.kwargs = {}
super(ScenarioTest, self).__init__(
method_name,
config_file=config_file,
@@ -56,7 +89,7 @@ def __init__(self, method_name, config_file=None, recording_name=None,
patch_retrieve_token_for_user,
patch_progress_controller,
],
- recording_dir=find_recording_dir(inspect.getfile(self.__class__)),
+ recording_dir=find_recording_dir(self.cli_ctx, inspect.getfile(self.__class__)),
recording_name=recording_name
)
@@ -71,9 +104,12 @@ def create_random_name(self, prefix, length):
return moniker
- @classmethod
- def cmd(cls, command, checks=None, expect_failure=False):
- return execute(command, expect_failure=expect_failure).assert_with_checks(checks)
+ def cmd(self, command, checks=None, expect_failure=False):
+ try:
+ command = command.format(**self.kwargs)
+ except KeyError as ex:
+ pass
+ return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
def get_subscription_id(self):
if self.in_recording or self.is_live:
@@ -84,21 +120,34 @@ def get_subscription_id(self):
@live_only()
-class LiveScenarioTest(IntegrationTestBase):
- @classmethod
- def cmd(cls, command, checks=None, expect_failure=False):
- return execute(command, expect_failure=expect_failure).assert_with_checks(checks)
+class LiveScenarioTest(IntegrationTestBase, CheckerMixin, unittest.TestCase):
+
+ def __init__(self, method_name):
+ super(LiveScenarioTest, self).__init__(method_name)
+ from azure.cli.testsdk import TestCli
+ self.cli_ctx = TestCli()
+ self.kwargs = {}
+
+ def cmd(self, command, checks=None, expect_failure=False):
+ try:
+ command = command.format(**self.kwargs)
+ except KeyError as ex:
+ pass
+ return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
+
+ def get_subscription_id(self):
+ return self.cmd('account list --query "[?isDefault].id" -o tsv').output.strip()
class ExecutionResult(object):
- def __init__(self, command, expect_failure=False, in_process=True):
+ def __init__(self, cli_ctx, command, expect_failure=False, in_process=True):
self.output = ''
self.applog = ''
if in_process:
- self._in_process_execute(command, expect_failure=expect_failure)
+ self._in_process_execute(cli_ctx, command, expect_failure=expect_failure)
else:
- self._out_of_process_execute(command)
+ self._out_of_process_execute(cli_ctx, command)
if expect_failure and self.exit_code == 0:
logger.error('Command "%s" => %d. (It did not fail as expected) Output: %s. %s', command,
@@ -138,8 +187,7 @@ def get_output_in_json(self):
return self.json_value
- def _in_process_execute(self, command, expect_failure=False):
- from azure.cli.main import main as cli_main
+ def _in_process_execute(self, cli_ctx, command, expect_failure=False):
from six import StringIO
from vcr.errors import CannotOverwriteExistingCassetteException
@@ -151,7 +199,7 @@ def _in_process_execute(self, command, expect_failure=False):
try:
# issue: stderr cannot be redirect in this form, as a result some failure information
# is lost when command fails.
- self.exit_code = cli_main(shlex.split(command), output=stdout_buf, logging_stream=logging_buf) or 0
+ self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0
self.output = stdout_buf.getvalue()
self.applog = logging_buf.getvalue()
diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/checkers.py b/src/azure-cli-testsdk/azure/cli/testsdk/checkers.py
index eb2a8dd66c5..1236e289dab 100644
--- a/src/azure-cli-testsdk/azure/cli/testsdk/checkers.py
+++ b/src/azure-cli-testsdk/azure/cli/testsdk/checkers.py
@@ -17,7 +17,7 @@ def __call__(self, execution_result):
json_value = execution_result.get_output_in_json()
actual_result = jmespath.search(self._query, json_value,
jmespath.Options(collections.OrderedDict))
- if not actual_result == self._expected_result:
+ if not str(actual_result) == str(self._expected_result):
if actual_result:
raise JMESPathCheckAssertionError(self._query, self._expected_result, actual_result,
execution_result.output)
diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/decorators.py b/src/azure-cli-testsdk/azure/cli/testsdk/decorators.py
index 686dfef3003..87a953117b8 100644
--- a/src/azure-cli-testsdk/azure/cli/testsdk/decorators.py
+++ b/src/azure-cli-testsdk/azure/cli/testsdk/decorators.py
@@ -5,9 +5,10 @@
import unittest
-from azure.cli.core.profiles import supported_api_version
-
def api_version_constraint(resource_type, **kwargs):
- return unittest.skipUnless(supported_api_version(resource_type, **kwargs),
+ from azure.cli.core.profiles import supported_api_version
+ from azure.cli.testsdk import TestCli
+ cli_ctx = TestCli()
+ return unittest.skipUnless(supported_api_version(cli_ctx, resource_type, **kwargs),
"Test not supported by current profile.")
diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/patches.py b/src/azure-cli-testsdk/azure/cli/testsdk/patches.py
index ef67f454c72..a266d59f5ce 100644
--- a/src/azure-cli-testsdk/azure/cli/testsdk/patches.py
+++ b/src/azure-cli-testsdk/azure/cli/testsdk/patches.py
@@ -34,7 +34,7 @@ def _handle_main_exception(ex):
raise CliExecutionError(ex)
- mock_in_unit_test(unit_test, 'azure.cli.main.handle_exception', _handle_main_exception)
+ mock_in_unit_test(unit_test, 'azure.cli.core.util.handle_exception', _handle_main_exception)
def patch_load_cached_subscriptions(unit_test):
diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py b/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py
index bff951d7954..29162cc3664 100644
--- a/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py
+++ b/src/azure-cli-testsdk/azure/cli/testsdk/preparers.py
@@ -19,11 +19,14 @@ def __init__(self, name_prefix='clitest.rg',
parameter_name_for_location='resource_group_location', location='westus',
dev_setting_name='AZURE_CLI_TEST_DEV_RESOURCE_GROUP_NAME',
dev_setting_location='AZURE_CLI_TEST_DEV_RESOURCE_GROUP_LOCATION',
- random_name_length=75):
+ random_name_length=75, key='rg'):
super(ResourceGroupPreparer, self).__init__(name_prefix, random_name_length)
+ from azure.cli.testsdk import TestCli
+ self.cli_ctx = TestCli()
self.location = location
self.parameter_name = parameter_name
self.parameter_name_for_location = parameter_name_for_location
+ self.key = key
self.dev_setting_name = os.environ.get(dev_setting_name, None)
self.dev_setting_location = os.environ.get(dev_setting_location, location)
@@ -33,13 +36,15 @@ def create_resource(self, name, **kwargs):
return {self.parameter_name: self.dev_setting_name,
self.parameter_name_for_location: self.dev_setting_location}
+
template = 'az group create --location {} --name {} --tag use=az-test'
- execute(template.format(self.location, name))
+ execute(self.cli_ctx, template.format(self.location, name))
+ self.test_class_instance.kwargs[self.key] = name
return {self.parameter_name: name, self.parameter_name_for_location: self.location}
def remove_resource(self, name, **kwargs):
if not self.dev_setting_name:
- execute('az group delete --name {} --yes --no-wait'.format(name))
+ execute(self.cli_ctx, 'az group delete --name {} --yes --no-wait'.format(name))
# Storage Account Preparer and its shorthand decorator
@@ -47,14 +52,16 @@ def remove_resource(self, name, **kwargs):
class StorageAccountPreparer(AbstractPreparer, SingleValueReplacer):
def __init__(self, name_prefix='clitest', sku='Standard_LRS', location='westus', parameter_name='storage_account',
resource_group_parameter_name='resource_group', skip_delete=True,
- dev_setting_name='AZURE_CLI_TEST_DEV_STORAGE_ACCOUNT_NAME'):
+ dev_setting_name='AZURE_CLI_TEST_DEV_STORAGE_ACCOUNT_NAME', key='sa'):
super(StorageAccountPreparer, self).__init__(name_prefix, 24)
+ from azure.cli.testsdk import TestCli
+ self.cli_ctx = TestCli()
self.location = location
self.sku = sku
self.resource_group_parameter_name = resource_group_parameter_name
self.skip_delete = skip_delete
self.parameter_name = parameter_name
-
+ self.key = key
self.dev_setting_name = os.environ.get(dev_setting_name, None)
def create_resource(self, name, **kwargs):
@@ -66,14 +73,15 @@ def create_resource(self, name, **kwargs):
else:
name = self.dev_setting_name
- account_key = execute('storage account keys list -n {} -g {} --query "[0].value" -otsv'
+ account_key = execute(self.cli_ctx, 'storage account keys list -n {} -g {} --query "[0].value" -otsv'
.format(name, group)).output
+ self.test_class_instance.kwargs[self.key] = name
return {self.parameter_name: name, self.parameter_name + '_info': (name, account_key)}
def remove_resource(self, name, **kwargs):
if not self.skip_delete and not self.dev_setting_name:
group = self._get_resource_group(**kwargs)
- execute('az storage account delete -n {} -g {} --yes'.format(name, group))
+ execute(self.cli_ctx, 'az storage account delete -n {} -g {} --yes'.format(name, group))
def _get_resource_group(self, **kwargs):
try:
@@ -89,29 +97,32 @@ def _get_resource_group(self, **kwargs):
class KeyVaultPreparer(AbstractPreparer, SingleValueReplacer):
def __init__(self, name_prefix='clitest', sku='standard', location='westus', parameter_name='key_vault',
resource_group_parameter_name='resource_group', skip_delete=True,
- dev_setting_name='AZURE_CLI_TEST_DEV_KEY_VAULT_NAME'):
+ dev_setting_name='AZURE_CLI_TEST_DEV_KEY_VAULT_NAME', key='kv'):
super(KeyVaultPreparer, self).__init__(name_prefix, 24)
+ from azure.cli.testsdk import TestCli
+ self.cli_ctx = TestCli()
self.location = location
self.sku = sku
self.resource_group_parameter_name = resource_group_parameter_name
self.skip_delete = skip_delete
self.parameter_name = parameter_name
-
+ self.key = key
self.dev_setting_name = os.environ.get(dev_setting_name, None)
def create_resource(self, name, **kwargs):
if not self.dev_setting_name:
group = self._get_resource_group(**kwargs)
template = 'az keyvault create -n {} -g {} -l {} --sku {}'
- execute(template.format(name, group, self.location, self.sku))
+ execute(self.cli_ctx, template.format(name, group, self.location, self.sku))
return {self.parameter_name: name}
+ self.test_class_instance.kwargs[self.key] = name
return {self.parameter_name: self.dev_setting_name}
def remove_resource(self, name, **kwargs):
if not self.skip_delete and not self.dev_setting_name:
group = self._get_resource_group(**kwargs)
- execute('az keyvault delete -n {} -g {} --yes'.format(name, group))
+ execute(self.cli_ctx, 'az keyvault delete -n {} -g {} --yes'.format(name, group))
def _get_resource_group(self, **kwargs):
try:
@@ -128,28 +139,34 @@ class RoleBasedServicePrincipalPreparer(AbstractPreparer, SingleValueReplacer):
def __init__(self, name_prefix='http://clitest',
skip_assignment=True, parameter_name='sp_name', parameter_password='sp_password',
dev_setting_sp_name='AZURE_CLI_TEST_DEV_SP_NAME',
- dev_setting_sp_password='AZURE_CLI_TEST_DEV_SP_PASSWORD'):
+ dev_setting_sp_password='AZURE_CLI_TEST_DEV_SP_PASSWORD', key='sp'):
super(RoleBasedServicePrincipalPreparer, self).__init__(name_prefix, 24)
+ from azure.cli.testsdk import TestCli
+ self.cli_ctx = TestCli()
self.skip_assignment = skip_assignment
self.result = {}
self.parameter_name = parameter_name
self.parameter_password = parameter_password
self.dev_setting_sp_name = os.environ.get(dev_setting_sp_name, None)
self.dev_setting_sp_password = os.environ.get(dev_setting_sp_password, None)
+ self.key = key
def create_resource(self, name, **kwargs):
if not self.dev_setting_sp_name:
command = 'az ad sp create-for-rbac -n {}{}' \
.format(name, ' --skip-assignment' if self.skip_assignment else '')
- self.result = execute(command).get_output_in_json()
+ self.result = execute(self.cli_ctx, command).get_output_in_json()
+ self.test_class_instance.kwargs[self.key] = name
+ self.test_class_instance.kwargs['{}_pass'.format(self.key)] = self.parameter_password
return {self.parameter_name: name, self.parameter_password: self.result['password']}
-
+ self.test_class_instance.kwargs[self.key] = self.dev_setting_sp_name
+ self.test_class_instance.kwargs['{}_pass'.format(self.key)] = self.dev_setting_sp_password
return {self.parameter_name: self.dev_setting_sp_name,
self.parameter_password: self.dev_setting_sp_password}
def remove_resource(self, name, **kwargs):
if not self.dev_setting_sp_name:
- execute('az ad sp delete --id {}'.format(self.result['appId']))
+ execute(self.cli_ctx, 'az ad sp delete --id {}'.format(self.result['appId']))
# Utility
diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py b/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py
index a0f83667ef7..e6b9e46def9 100644
--- a/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py
+++ b/src/azure-cli-testsdk/azure/cli/testsdk/utilities.py
@@ -13,18 +13,28 @@ def create_random_name(prefix='clitest', length=24):
return create_random_name_base(prefix=prefix, length=length)
-def find_recording_dir(test_file):
+def find_recording_dir(cli_ctx, test_file):
""" Find the directory containing the recording of given test file based on current profile. """
- from azure.cli.core._profile import get_active_cloud
- api_profile = get_active_cloud().profile
+ from azure.cli.core._profile import init_known_clouds
+ from azure.cli.core.cloud import CloudNotRegisteredException
+ try:
+ api_profile = cli_ctx.cloud.profile
+ except CloudNotRegisteredException:
+ init_known_clouds()
+ api_profile = cli_ctx.cloud.profile
base_dir = os.path.join(os.path.dirname(test_file), 'recordings')
return os.path.join(base_dir, api_profile)
-def get_active_api_profile():
- from azure.cli.core._profile import get_active_cloud
- return get_active_cloud().profile
+def get_active_api_profile(cli_ctx):
+ from azure.cli.core._profile import init_known_clouds
+ from azure.cli.core.cloud import CloudNotRegisteredException
+ try:
+ return cli_ctx.cloud.profile
+ except CloudNotRegisteredException:
+ init_known_clouds()
+ return cli_ctx.cloud.profile
@contextmanager
diff --git a/src/azure-cli-testsdk/azure/cli/testsdk/vcr_test_base.py b/src/azure-cli-testsdk/azure/cli/testsdk/vcr_test_base.py
index 2ec18f822a9..27cd7b1bb53 100644
--- a/src/azure-cli-testsdk/azure/cli/testsdk/vcr_test_base.py
+++ b/src/azure-cli-testsdk/azure/cli/testsdk/vcr_test_base.py
@@ -28,17 +28,13 @@
import vcr
import jmespath
+from knack.util import CLIError
from azure_devtools.scenario_tests.const import ENV_LIVE_TEST
-# TODO Should not depend on azure.cli.main package here.
-# Will be ok if this test file is not part of azure.cli.core.utils
-from azure.cli.main import main as cli_main
-
from azure.cli.core import __version__ as core_version
import azure.cli.core._debug as _debug
-from azure.cli.core._profile import Profile, CLOUD
-from azure.cli.core.util import CLIError
+from azure.cli.core._profile import Profile
from .base import find_recording_dir
@@ -63,21 +59,23 @@ def patch_vcr_connection_request(*args, **kwargs):
vcr.stubs.VCRConnection.request = patch_vcr_connection_request
-def _mock_get_mgmt_service_client(client_type,
+def _mock_get_mgmt_service_client(cli_ctx,
+ client_type,
subscription_bound=True,
subscription_id=None,
api_version=None,
base_url_bound=None,
- resource=CLOUD.endpoints.active_directory_resource_id,
+ resource=None,
**kwargs):
# version of _get_mgmt_service_client to use when recording or playing tests
- profile = Profile()
+ profile = Profile(cli_ctx)
+ resource = resource or cli_ctx.cloud.endpoints.active_directory_resource_id
cred, subscription_id, _ = profile.get_login_credentials(subscription_id=subscription_id,
resource=resource)
client_kwargs = {}
if base_url_bound:
- client_kwargs = {'base_url': CLOUD.endpoints.resource_manager}
+ client_kwargs = {'base_url': cli_ctx.cloud.endpoints.resource_manager}
if api_version:
client_kwargs['api_version'] = api_version
if kwargs:
diff --git a/src/azure-cli/azure/cli/__main__.py b/src/azure-cli/azure/cli/__main__.py
index f69bad6672b..dea8c88cee5 100644
--- a/src/azure-cli/azure/cli/__main__.py
+++ b/src/azure-cli/azure/cli/__main__.py
@@ -3,24 +3,42 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-import sys
import os
+import sys
+
+from azure.cli.core import MainCommandsLoader, AzCli
+from azure.cli.core.azlogging import AzCliLogging
+from azure.cli.core.commands import AzCliCommandInvoker
+from azure.cli.core.parser import AzCliCommandParser
+from azure.cli.core._config import GLOBAL_CONFIG_DIR, ENV_VAR_PREFIX
+from azure.cli.core._help import AzCliHelp
-import azure.cli.main
import azure.cli.core.telemetry as telemetry
+from knack.completion import ARGCOMPLETE_ENV_NAME
+from knack.log import get_logger
+
+logger = get_logger(__name__)
+
+def cli_main(cli, args):
+ return cli.invoke(args)
+
+az_cli = AzCli(cli_name='az',
+ config_dir=GLOBAL_CONFIG_DIR,
+ config_env_var_prefix=ENV_VAR_PREFIX,
+ commands_loader_cls=MainCommandsLoader,
+ invocation_cls=AzCliCommandInvoker,
+ parser_cls=AzCliCommandParser,
+ logging_cls=AzCliLogging,
+ help_cls=AzCliHelp)
+
+telemetry.set_application(az_cli, ARGCOMPLETE_ENV_NAME)
+
try:
telemetry.start()
- args = sys.argv[1:]
-
- # Check if we are in argcomplete mode - if so, we
- # need to pick up our args from environment variables
- if os.environ.get('_ARGCOMPLETE'):
- comp_line = os.environ.get('COMP_LINE')
- if comp_line:
- args = comp_line.split()[1:]
- exit_code = azure.cli.main.main(args)
+ exit_code = cli_main(az_cli, sys.argv[1:])
+
if exit_code and exit_code != 0:
telemetry.set_failure()
else:
diff --git a/src/azure-cli/azure/cli/main.py b/src/azure-cli/azure/cli/main.py
deleted file mode 100644
index 29881644e97..00000000000
--- a/src/azure-cli/azure/cli/main.py
+++ /dev/null
@@ -1,52 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-import os
-import sys
-
-from azure.cli.core import configure_logging, get_az_logger
-from azure.cli.core.application import APPLICATION, Configuration
-from azure.cli.core._session import ACCOUNT, CONFIG, SESSION
-from azure.cli.core.util import (show_version_info_exit, handle_exception)
-from azure.cli.core._environment import get_config_dir
-import azure.cli.core.telemetry as telemetry
-
-
-def main(args, output=sys.stdout, logging_stream=None):
- configure_logging(args, logging_stream)
-
- logger = get_az_logger(__name__)
- logger.debug('Command arguments %s', args)
-
- if args and (args[0] == '--version' or args[0] == '-v'):
- show_version_info_exit(output)
-
- azure_folder = get_config_dir()
- if not os.path.exists(azure_folder):
- os.makedirs(azure_folder)
- ACCOUNT.load(os.path.join(azure_folder, 'azureProfile.json'))
- CONFIG.load(os.path.join(azure_folder, 'az.json'))
- SESSION.load(os.path.join(azure_folder, 'az.sess'), max_age=3600)
-
- APPLICATION.initialize(Configuration())
-
- try:
- cmd_result = APPLICATION.execute(args)
-
- # Commands can return a dictionary/list of results
- # If they do, we print the results.
- if cmd_result and cmd_result.result is not None:
- from azure.cli.core._output import OutputProducer
- formatter = OutputProducer.get_formatter(APPLICATION.configuration.output_format)
- OutputProducer(formatter=formatter, file=output).out(cmd_result)
-
- except Exception as ex: # pylint: disable=broad-except
-
- # TODO: include additional details of the exception in telemetry
- telemetry.set_exception(ex, 'outer-exception', 'Unexpected exception caught during application execution.')
- telemetry.set_failure()
-
- error_code = handle_exception(ex)
- return error_code
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_docker_utils.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_docker_utils.py
index 61e3a3c335e..760d3dc22d2 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_docker_utils.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_docker_utils.py
@@ -12,8 +12,7 @@
from json import loads
import requests
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.core.prompting import prompt, prompt_pass, NoTTYException
from ._constants import MANAGED_REGISTRY_SKU
@@ -21,10 +20,10 @@
from .credential import acr_credential_show
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
-def _get_aad_token(login_server, only_refresh_token, repository=None, permission='*'):
+def _get_aad_token(cli_ctx, login_server, only_refresh_token, repository=None, permission='*'):
"""Obtains refresh and access tokens for an AAD-enabled registry.
:param str login_server: The registry login server URL to log in to
:param bool only_refresh_token: Whether to ask for only refresh token, or for both refresh and access tokens
@@ -52,7 +51,7 @@ def _get_aad_token(login_server, only_refresh_token, repository=None, permission
authhost = urlunparse((authurl[0], authurl[1], '/oauth2/exchange', '', '', ''))
from azure.cli.core._profile import Profile
- profile = Profile()
+ profile = Profile(cli_ctx)
sp_id, refresh, access, tenant = profile.get_refresh_token()
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_help.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_help.py
index 5447d6f2b06..0589abfbfd2 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_help.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['acr'] = """
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_params.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_params.py
index 96bc86a2da1..e299c353abf 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_params.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_params.py
@@ -8,7 +8,7 @@
from azure.cli.core.commands import register_cli_argument
from azure.cli.core.commands.parameters import (
resource_group_name_type,
- location_type,
+ get_location_type,
tags_type,
deployment_name_type,
get_resource_name_completion_list,
@@ -32,7 +32,7 @@
register_cli_argument('acr', 'password_name', help='The name of password to regenerate', choices=['password', 'password2'])
register_cli_argument('acr', 'resource_group_name', resource_group_name_type)
-register_cli_argument('acr', 'location', location_type)
+register_cli_argument('acr', 'location', get_location_type)
register_cli_argument('acr', 'tags', tags_type)
register_cli_argument('acr create', 'admin_enabled', nargs='?', required=False, const='true', default='false', help='Indicates whether the admin user is enabled', choices=['true', 'false'])
register_cli_argument('acr update', 'admin_enabled', help='Indicates whether the admin user is enabled', choices=['true', 'false'])
@@ -45,7 +45,7 @@
register_cli_argument('acr create', 'registry_name', completer=None, validator=validate_registry_name)
register_cli_argument('acr create', 'deployment_name', deployment_name_type, validator=None)
-register_cli_argument('acr create', 'location', location_type, validator=get_default_location_from_resource_group)
+register_cli_argument('acr create', 'location', get_location_type, validator=get_default_location_from_resource_group)
register_cli_argument('acr check-name', 'registry_name', completer=None)
register_cli_argument('acr webhook', 'registry_name', options_list=('--registry', '-r'), help='The name of the container registry. You can configure the default registry name using `az configure --defaults acr=`', completer=get_resource_name_completion_list(REGISTRY_RESOURCE_TYPE), configured_default='acr')
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_utils.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_utils.py
index e0bbaa158d7..0a787ebea70 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_utils.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_utils.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.core.commands.parameters import get_resources_in_subscription
from azure.mgmt.containerregistry.v2017_10_01.models import SkuName, Sku
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_validators.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_validators.py
index 3f7abbb0724..3e4a3233e2e 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_validators.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/_validators.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from ._factory import get_acr_service_client
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/commands.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/commands.py
index d096c6df343..096e51fd95e 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/commands.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/commands.py
@@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
from azure.cli.core.commands import cli_command
-from azure.cli.core.commands.arm import cli_generic_update_command
+from azure.cli.core.commands.arm import _cli_generic_update_command
from azure.cli.core.util import empty_on_404
from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
@@ -31,7 +31,7 @@
cli_command(__name__, 'acr login', 'azure.cli.command_modules.acr.custom#acr_login')
cli_command(__name__, 'acr show-usage', 'azure.cli.command_modules.acr.custom#acr_show_usage',
table_transformer=output_format)
- cli_generic_update_command(
+ _cli_generic_update_command(
__name__,
'acr update',
'azure.cli.command_modules.acr.custom#acr_update_get',
@@ -70,7 +70,7 @@
cli_command(__name__, 'acr webhook ping',
'azure.cli.command_modules.acr.webhook#acr_webhook_ping',
table_transformer=output_format)
- cli_generic_update_command(
+ _cli_generic_update_command(
__name__,
'acr webhook update',
'azure.cli.command_modules.acr.webhook#acr_webhook_update_get',
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/credential.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/credential.py
index 00edcc03f69..887c424466f 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/credential.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/credential.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from ._factory import get_acr_service_client
from ._utils import get_registry_by_name
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/custom.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/custom.py
index 3976aaca3d4..069a7f6e9d0 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/custom.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/custom.py
@@ -4,8 +4,6 @@
# --------------------------------------------------------------------------------------------
from azure.cli.core.commands import LongRunningOperation
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
from azure.mgmt.containerregistry.v2017_10_01.models import (
RegistryUpdateParameters,
@@ -14,8 +12,11 @@
Sku
)
-from ._factory import get_acr_service_client
+from knack.prompting import prompt, prompt_pass, NoTTYException
+from knack.util import CLIError
+
from ._constants import MANAGED_REGISTRY_SKU
+from ._factory import get_acr_service_client
from ._utils import (
arm_deploy_template_new_storage,
arm_deploy_template_existing_storage,
@@ -30,9 +31,6 @@
from ._docker_utils import get_login_credentials
-logger = azlogging.get_az_logger(__name__)
-
-
def acr_check_name(registry_name):
"""Checks whether the container registry name is available for use.
:param str registry_name: The name of container registry
diff --git a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/repository.py b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/repository.py
index 5133e308002..3b5e7910e68 100644
--- a/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/repository.py
+++ b/src/command_modules/azure-cli-acr/azure/cli/command_modules/acr/repository.py
@@ -8,17 +8,16 @@
import requests
from requests.utils import to_native_string
-from azure.cli.core.prompting import NoTTYException, prompt_y_n
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
+from knack.prompting import prompt, prompt_pass, NoTTYException, prompt_y_n
+from knack.util import CLIError
from ._utils import validate_managed_registry
from ._docker_utils import get_access_credentials
-logger = azlogging.get_az_logger(__name__)
-DELETE_NOT_SUPPORTED = 'Delete is only supported for managed registries.'
-LIST_MANIFESTS_NOT_SUPPORTED = 'List manifests is only supported for managed registries.'
+
+DELETE_NOT_SUPPORTED = 'Delete is not supported for registries in Basic SKU.'
+LIST_MANIFESTS_NOT_SUPPORTED = 'List manifests is not supported for registries in Basic SKU.'
def _get_basic_auth_str(username, password):
diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_actions.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_actions.py
index 7b3c9179f07..db76b9bdf6c 100644
--- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_actions.py
+++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_actions.py
@@ -36,5 +36,5 @@ def _handle_container_ssh_file(**kwargs):
logger.warning('Created SSH key files: %s,%s', private_key_filepath, public_key_filepath)
args.ssh_key_value = content
-
-APPLICATION.register(APPLICATION.COMMAND_PARSER_PARSED, _handle_container_ssh_file)
+# TODO: Move this into the AcsCommandsLoader file...
+#AZ_CLI.register(AZ_CLI.COMMAND_PARSER_PARSED, _handle_container_ssh_file)
diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_client_factory.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_client_factory.py
index cdeeb1cf206..6494ca8794c 100644
--- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_client_factory.py
+++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_client_factory.py
@@ -16,11 +16,11 @@ def _auth_client_factory(scope=None):
return get_mgmt_service_client(AuthorizationManagementClient, subscription_id=subscription_id)
-def _graph_client_factory(**_):
+def _graph_client_factory(cli_ctx, **_):
from azure.cli.core._profile import Profile, CLOUD
from azure.cli.core.commands.client_factory import configure_common_settings
from azure.graphrbac import GraphRbacManagementClient
- profile = Profile()
+ profile = Profile(cli_ctx)
cred, _, tenant_id = profile.get_login_credentials(
resource=CLOUD.endpoints.active_directory_graph_resource_id)
client = GraphRbacManagementClient(cred,
diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py
index 6ad10a7e866..48874e5cc95 100644
--- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py
+++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['acs'] = """
type: group
diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_params.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_params.py
index ffc1a2b02de..41a1717694d 100644
--- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_params.py
+++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_params.py
@@ -9,10 +9,7 @@
from argcomplete.completers import FilesCompleter
-from azure.cli.core.commands import (
- CliArgumentType,
- register_cli_argument,
- register_extra_cli_argument)
+from azure.cli.core.commands import register_cli_argument, register_extra_cli_argument
from azure.cli.core.commands.parameters import tags_type
from azure.cli.core.commands.validators import validate_file_or_dict
from azure.cli.core.commands.parameters import (
@@ -26,6 +23,8 @@
from azure.cli.command_modules.acs._validators import validate_k8s_version
from azure.cli.command_modules.acs._validators import validate_linux_host_name
+from knack.arguments import CLIArgumentType
+
def _compute_client_factory(**_):
from azure.cli.core.profiles import ResourceType
diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/acs_client.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/acs_client.py
index 3ab31488753..33753c0d411 100644
--- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/acs_client.py
+++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/acs_client.py
@@ -14,8 +14,8 @@
from sshtunnel import SSHTunnelForwarder
from scp import SCPClient
-from azure.cli.core.util import CLIError
-from azure.cli.core.prompting import prompt_pass
+from knack.prompting import prompt_pass
+from knack.util import CLIError
def _load_key(key_filename):
diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/commands.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/commands.py
index aa9f17fc323..40abc3df8a4 100644
--- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/commands.py
+++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/commands.py
@@ -78,7 +78,7 @@ def aks_get_versions_table_format(result):
# Per conversation with ACS team, hide the update till we have something meaningful to tweak
# from azure.cli.command_modules.acs.custom import update_acs
- # cli_generic_update_command(__name__, 'acs update', ContainerServicesOperations.get, ContainerServicesOperations.create_or_update, cf_acs)
+ # _cli_generic_update_command(__name__, 'acs update', ContainerServicesOperations.get, ContainerServicesOperations.create_or_update, cf_acs)
# custom commands
cli_command(__name__, 'acs list-locations', 'azure.cli.command_modules.acs.custom#list_acs_locations')
diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/custom.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/custom.py
index 8fe57f6c086..02ff4c70d1e 100644
--- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/custom.py
+++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/custom.py
@@ -32,8 +32,6 @@
from msrestazure.azure_exceptions import CloudError
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.application import APPLICATION
from azure.cli.command_modules.acs import acs_client, proxy
from azure.cli.command_modules.acs._params import regionsInPreview, regionsInProd
from azure.cli.core.util import CLIError, shell_safe_json_parse, truncate_text
@@ -59,9 +57,10 @@
GetObjectsParameters)
from azure.mgmt.authorization.models import RoleAssignmentProperties
+from knack.util import CLIError
+
from ._client_factory import (_auth_client_factory, _graph_client_factory)
-logger = azlogging.get_az_logger(__name__)
# pylint:disable=too-many-lines
@@ -359,8 +358,8 @@ def _add_role_assignment(role, service_principal, delay=2):
return True
-def _get_subscription_id():
- _, sub_id, _ = Profile().get_login_credentials(subscription_id=None)
+def _get_subscription_id(cli_ctx):
+ _, sub_id, _ = Profile(cli_ctx).get_login_credentials(subscription_id=None)
return sub_id
@@ -505,7 +504,7 @@ def _generate_properties(api_version, orchestrator_type, orchestrator_version, m
# pylint: disable=too-many-locals
-def acs_create(resource_group_name, deployment_name, name, ssh_key_value, dns_name_prefix=None,
+def acs_create(cmd, resource_group_name, deployment_name, name, ssh_key_value, dns_name_prefix=None,
location=None, admin_username="azureuser", api_version=None, master_profile=None,
master_vm_size="Standard_D2_v2", master_osdisk_size=0, master_count=1, master_vnet_subnet_id="",
master_first_consecutive_static_ip="10.240.255.5", master_storage_profile="",
@@ -599,7 +598,7 @@ def acs_create(resource_group_name, deployment_name, name, ssh_key_value, dns_na
if ssh_key_value is not None and not is_valid_ssh_rsa_public_key(ssh_key_value):
raise CLIError('Provided ssh key ({}) is invalid or non-existent'.format(ssh_key_value))
- subscription_id = _get_subscription_id()
+ subscription_id = _get_subscription_id(cmd.cli_ctx)
if not dns_name_prefix:
dns_name_prefix = _get_default_dns_prefix(name, resource_group_name, subscription_id)
diff --git a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/tests/test_service_principals.py b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/tests/test_service_principals.py
index aa89dac7650..d241e368dd6 100644
--- a/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/tests/test_service_principals.py
+++ b/src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/tests/test_service_principals.py
@@ -8,7 +8,7 @@
import unittest
import mock
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.acs.custom import (
load_acs_service_principal,
store_acs_service_principal,
diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_client_factory.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_client_factory.py
index e993f47b6b1..6a995f25a26 100644
--- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_client_factory.py
+++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_client_factory.py
@@ -7,7 +7,7 @@
def ex_handler_factory(creating_plan=False, no_throw=False):
def _polish_bad_errors(ex):
import json
- from azure.cli.core.util import CLIError
+ from knack.util import CLIError
try:
detail = json.loads(ex.response.text)['Message']
if creating_plan:
diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_help.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_help.py
index d29940c7d04..f02ab65a46b 100644
--- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_help.py
+++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['appservice'] = """
diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_params.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_params.py
index 8f4fbf9cc51..fbeef8cb312 100644
--- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_params.py
+++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_params.py
@@ -6,9 +6,14 @@
from argcomplete.completers import FilesCompleter
from azure.cli.core.commands import register_cli_argument
-from azure.cli.core.commands.parameters import (resource_group_name_type, location_type,
- get_resource_name_completion_list, file_type,
- CliArgumentType, ignore_type, enum_choice_list)
+from azure.cli.core.commands.parameters import (resource_group_name_type, get_location_type,
+ get_resource_name_completion_list, file_type)
+from azure.mgmt.web.models import DatabaseType, ConnectionStringType
+
+from knack.arguments import (CLIArgumentType, ignore_type, enum_choice_list,
+ get_resource_name_completion_list, file_type,
+ CliArgumentType, ignore_type, enum_choice_list)
+
from azure.mgmt.web.models import DatabaseType, ConnectionStringType, BuiltInAuthenticationProvider
from ._client_factory import web_client_factory
from ._validators import validate_existing_function_app, validate_existing_web_app
@@ -76,7 +81,7 @@ def get_hostname_completion_list(prefix, action, parsed_args, **kwargs): # pyli
register_cli_argument('functionapp', 'slot', ignore_type)
register_cli_argument('appservice', 'resource_group_name', arg_type=resource_group_name_type)
-register_cli_argument('appservice', 'location', arg_type=location_type)
+register_cli_argument('appservice', 'location', arg_type=get_location_type)
register_cli_argument('appservice list-locations', 'linux_workers_enabled', action='store_true', help='get regions which support hosting webapps on Linux workers')
register_cli_argument('appservice list-locations', 'sku', arg_type=sku_arg_type)
@@ -90,7 +95,7 @@ def get_hostname_completion_list(prefix, action, parsed_args, **kwargs): # pyli
register_cli_argument('appservice plan', 'admin_site_name', help='The name of the admin web app.')
register_cli_argument('webapp', 'resource_group_name', arg_type=resource_group_name_type)
-register_cli_argument('webapp', 'location', arg_type=location_type)
+register_cli_argument('webapp', 'location', arg_type=get_location_type)
register_cli_argument('webapp', 'slot', options_list=('--slot', '-s'), help="the name of the slot. Default to the productions slot if not specified")
register_cli_argument('webapp', 'name', configured_default='web',
diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_validators.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_validators.py
index cb03ac460bd..fccb46ac34a 100644
--- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_validators.py
+++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/_validators.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from ._client_factory import web_client_factory
diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/commands.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/commands.py
index cb63aac2b31..aae36df2564 100644
--- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/commands.py
+++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/commands.py
@@ -4,9 +4,8 @@
# --------------------------------------------------------------------------------------------
# pylint: disable=line-too-long
-from azure.cli.core.application import APPLICATION
from azure.cli.core.commands import cli_command
-from azure.cli.core.commands.arm import cli_generic_update_command
+from azure.cli.core.commands.arm import _cli_generic_update_command
from azure.cli.core.util import empty_on_404
from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
@@ -15,11 +14,11 @@
def deprecate(argv):
if len(argv) > 1 and argv[0] == 'appservice' and argv[1] == 'web':
- from azure.cli.core.util import CLIError
+ from knack.util import CLIError
raise CLIError("All 'appservice web' commands have been renamed to 'webapp'")
-APPLICATION.register(APPLICATION.COMMAND_PARSER_PARSING, deprecate)
+AZ_CLI.register(AZ_CLI.COMMAND_PARSER_PARSING, deprecate)
def output_slots_in_table(slots):
@@ -45,7 +44,7 @@ def transform_web_list_output(webs):
def ex_handler_factory(creating_plan=False):
def _polish_bad_errors(ex):
import json
- from azure.cli.core.util import CLIError
+ from knack.util import CLIError
try:
detail = json.loads(ex.response.text)['Message']
if creating_plan:
@@ -151,7 +150,7 @@ def _polish_bad_errors(ex):
cli_command(__name__, 'appservice plan delete', 'azure.mgmt.web.operations.app_service_plans_operations#AppServicePlansOperations.delete', cf_plans, confirmation=True)
cli_command(__name__, 'appservice plan list', custom_path + 'list_app_service_plans')
cli_command(__name__, 'appservice plan show', 'azure.mgmt.web.operations.app_service_plans_operations#AppServicePlansOperations.get', cf_plans, exception_handler=empty_on_404)
- cli_generic_update_command(__name__, 'appservice plan update', 'azure.mgmt.web.operations.app_service_plans_operations#AppServicePlansOperations.get',
+ _cli_generic_update_command(__name__, 'appservice plan update', 'azure.mgmt.web.operations.app_service_plans_operations#AppServicePlansOperations.get',
'azure.mgmt.web.operations.app_service_plans_operations#AppServicePlansOperations.create_or_update',
custom_function_op=custom_path + 'update_app_service_plan',
setter_arg_name='app_service_plan', factory=cf_plans)
diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/custom.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/custom.py
index 9db3a3ff86d..dde7fe12a73 100644
--- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/custom.py
+++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/custom.py
@@ -25,16 +25,14 @@
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.commands import LongRunningOperation
-from azure.cli.core.prompting import prompt_pass, NoTTYException
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
+from knack.prompting import prompt_pass, NoTTYException
+from knack.util import CLIError
+
from .vsts_cd_provider import VstsContinuousDeliveryProvider
from ._params import _generic_site_operation, _generic_settings_operation, AUTH_TYPES
from ._client_factory import web_client_factory, ex_handler_factory
-logger = azlogging.get_az_logger(__name__)
-
# pylint:disable=no-member,too-many-lines,too-many-locals
diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/tests/test_webapp_commands_thru_mock.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/tests/test_webapp_commands_thru_mock.py
index b61cd323bbe..b78c51e4dd2 100644
--- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/tests/test_webapp_commands_thru_mock.py
+++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/tests/test_webapp_commands_thru_mock.py
@@ -11,7 +11,7 @@
AddressResponse, HostingEnvironmentProfile)
from azure.mgmt.web import WebSiteManagementClient
from azure.cli.core.adal_authentication import AdalAuthentication
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.appservice.custom import (set_deployment_user,
update_git_token, add_hostname,
update_site_configs,
diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/vsts_cd_provider.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/vsts_cd_provider.py
index 2e277fd8931..f27ddc42aee 100644
--- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/vsts_cd_provider.py
+++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/vsts_cd_provider.py
@@ -13,7 +13,7 @@ class VstsContinuousDeliveryProvider(object):
def __init__(self):
self._progress_last_message = ''
- def setup_continuous_delivery(self,
+ def setup_continuous_delivery(self, cli_ctx,
resource_group_name, name, repo_url, branch, git_token,
slot, cd_app_type_details, cd_project_url, cd_create_account, location,
test, private_repo_username, private_repo_password, webapp_list):
@@ -22,7 +22,7 @@ def setup_continuous_delivery(self,
"""
# Gather information about the Azure connection
- profile = Profile()
+ profile = Profile(cli_ctx)
subscription = profile.get_subscription()
user = profile.get_current_account_user()
cred, _, _ = profile.get_login_credentials(subscription_id=None)
diff --git a/src/command_modules/azure-cli-backup/azure/cli/command_modules/backup/_help.py b/src/command_modules/azure-cli-backup/azure/cli/command_modules/backup/_help.py
index 1ed44b246d0..2b18926accf 100644
--- a/src/command_modules/azure-cli-backup/azure/cli/command_modules/backup/_help.py
+++ b/src/command_modules/azure-cli-backup/azure/cli/command_modules/backup/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['backup'] = """
type: group
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/__init__.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/__init__.py
index 0489effbe60..216daee2556 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/__init__.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/__init__.py
@@ -4,10 +4,10 @@
# --------------------------------------------------------------------------------------------
import azure.cli.command_modules.batch._help # pylint: disable=unused-import
-import azure.cli.core.azlogging as azlogging
+from knack.log import get_logger
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
def load_params(_):
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_client_factory.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_client_factory.py
index 57648418857..53a06296084 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_client_factory.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_client_factory.py
@@ -63,7 +63,7 @@ def batch_client_factory(**_):
return get_mgmt_service_client(BatchManagementClient)
-def batch_data_service_factory(kwargs):
+def batch_data_service_factory(cli_ctx, kwargs):
import azure.batch.batch_service_client as batch
import azure.batch.batch_auth as batchauth
@@ -75,7 +75,7 @@ def batch_data_service_factory(kwargs):
credentials = None
if not account_key:
from azure.cli.core._profile import Profile, CLOUD
- profile = Profile()
+ profile = Profile(cli_ctx)
credentials, _, _ = profile.get_login_credentials(
resource=CLOUD.endpoints.batch_resource_id)
else:
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_command_type.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_command_type.py
index 598a27e821b..1ef487c2989 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_command_type.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_command_type.py
@@ -12,16 +12,14 @@
from azure.cli.command_modules.batch import _validators as validators
from azure.cli.command_modules.batch import _format as transformers
+from azure.cli.core import CONFIRM_PARAM_NAME
from azure.cli.core.commands import (
- CONFIRM_PARAM_NAME,
command_table,
command_module_map,
- CliCommand,
- CliCommandArgument,
- get_op_handler)
-from azure.cli.core.commands._introspection import (
- extract_full_summary_from_signature,
- extract_args_from_signature)
+ CliCommand)
+
+from knack.arguments import CLICommandArgument, IgnoreAction
+from knack.introspection import extract_full_summary_from_signature, extract_args_from_signature
_CLASS_NAME = re.compile(r"<(.*?)>") # Strip model name from class docstring
_UNDERSCORE_CASE = re.compile('(?!^)([A-Z]+)') # Convert from CamelCase to underscore_case
@@ -359,7 +357,7 @@ def queue_argument(self, name=None, path=None, root=None,
:param str name: The name of the command line argument.
:param str path: The complex object path to the parameter.
:param str root: The original name of the parameter.
- :param dict options: The kwargs to be used to instantiate CliCommandArgument.
+ :param dict options: The kwargs to be used to instantiate CLICommandArgument.
:param list dependencies: A list of complete paths to other parameters that
are required if this parameter is set.
"""
@@ -379,7 +377,7 @@ def dequeue_argument(self, name):
return self._arg_tree.pop(name, {})
def compile_args(self):
- """Generator to convert pending arguments into CliCommandArgument
+ """Generator to convert pending arguments into CLICommandArgument
objects.
"""
for name, details in self._arg_tree.items():
@@ -399,12 +397,11 @@ def compile_args(self):
self._help(name, "Expected format is an ISO-8601 duration.")
elif self._is_silent(name):
import argparse
- from azure.cli.core.commands.parameters import IgnoreAction
details['options']['nargs'] = '?'
details['options']['help'] = argparse.SUPPRESS
details['options']['required'] = False
details['options']['action'] = IgnoreAction
- yield (name, CliCommandArgument(dest=name, **details['options']))
+ yield (name, CLICommandArgument(dest=name, **details['options']))
def existing(self, name):
"""Whether the argument name is already used by a pending
@@ -512,8 +509,7 @@ def _execute_command(kwargs):
from msrest.paging import Paged
from msrest.exceptions import ValidationError, ClientRequestError
from azure.batch.models import BatchErrorException
- from azure.cli.core.util import CLIError
- from azure.cli.core._config import az_config
+ from knack.util import CLIError
from azure.cli.core.commands import _user_confirmed
if self._cancel_operation(kwargs, az_config, _user_confirmed):
@@ -690,12 +686,12 @@ def _process_options(self):
options['help'] = f_docstring
options['options_list'] = [arg_name(f_param)]
options['validator'] = validators.validate_options
- yield (f_param, CliCommandArgument(f_param, **options))
+ yield (f_param, CLICommandArgument(f_param, **options))
else:
options['default'] = getattr(self._options_model, param)
options['help'] = find_param_help(self._options_model, param)
options['options_list'] = [arg_name(param)]
- yield (param, CliCommandArgument(param, **options))
+ yield (param, CLICommandArgument(param, **options))
def _resolve_conflict(self,
arg, param, path, options, typestr, dependencies, conflicting):
@@ -703,7 +699,7 @@ def _resolve_conflict(self,
:param str arg: Name of the command line argument.
:param str param: Original request parameter name.
:param str path: Request parameter namespace.
- :param dict options: The kwargs to be used to instantiate CliCommandArgument.
+ :param dict options: The kwargs to be used to instantiate CLICommandArgument.
:param list dependencies: A list of complete paths to other parameters that are required
if this parameter is set.
:param list conflicting: A list of the argument names that have already conflicted.
@@ -811,7 +807,7 @@ def _load_transformed_arguments(self, handler):
choices = docstring[values_index + 25:].split(', ')
choices = [c for c in choices if c != "'unmapped'"]
docstring = docstring[0:values_index]
- yield (arg[0], CliCommandArgument(arg[0],
+ yield (arg[0], CLICommandArgument(arg[0],
options_list=[arg_name(arg[0])],
required=False,
default=None,
@@ -828,7 +824,7 @@ def _load_transformed_arguments(self, handler):
docstring = "A file containing the {} specification in JSON format. " \
"If this parameter is specified, all '{} Arguments'" \
" are ignored.".format(arg[0].replace('_', ' '), group_title(arg[0]))
- yield (param, CliCommandArgument(param,
+ yield (param, CLICommandArgument(param,
options_list=[arg_name(param)],
required=False,
default=None,
@@ -841,7 +837,7 @@ def _load_transformed_arguments(self, handler):
if return_type == 'Generator':
param = 'destination'
docstring = "The path to the destination file or directory."
- yield (param, CliCommandArgument(param,
+ yield (param, CLICommandArgument(param,
options_list=[arg_name(param)],
required=True,
default=None,
@@ -854,7 +850,7 @@ def _load_transformed_arguments(self, handler):
if self.confirmation:
param = CONFIRM_PARAM_NAME
docstring = 'Do not prompt for confirmation.'
- yield (param, CliCommandArgument(param,
+ yield (param, CLICommandArgument(param,
options_list=['--yes', '-y'],
required=False,
action='store_true',
@@ -865,7 +861,6 @@ def validate_client_parameters(namespace):
"""Retrieves Batch connection parameters from environment variables"""
from azure.mgmt.batch import BatchManagementClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- from azure.cli.core._config import az_config
# simply try to retrieve the remaining variables from environment variables
if not namespace.account_name:
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_help.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_help.py
index 0a1f64279fe..d5b8471f525 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_help.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['batch'] = """
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_params.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_params.py
index 2abd29b1fe0..94f24fb198a 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_params.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_params.py
@@ -9,11 +9,9 @@
from azure.batch.models.batch_service_client_enums import \
(ComputeNodeDeallocationOption)
-from azure.cli.core.commands import \
- (register_cli_argument, CliArgumentType, register_extra_cli_argument)
+from azure.cli.core.commands import register_cli_argument, register_extra_cli_argument
from azure.cli.core.commands.parameters import \
- (tags_type, location_type, resource_group_name_type, ignore_type,
- get_resource_name_completion_list, enum_choice_list, file_type)
+ (tags_type, location_type, resource_group_name_type, get_resource_name_completion_list, file_type)
from azure.cli.command_modules.batch._validators import \
(application_enabled, datetime_format, storage_account_id, application_package_reference_format,
@@ -23,10 +21,12 @@
from azure.cli.command_modules.batch._command_type import validate_client_parameters
+from knack.arguments import ignore_type, enum_choice_list, CLIArgumentType
+
# pylint: disable=line-too-long
# ARGUMENT DEFINITIONS
-batch_name_type = CliArgumentType(help='Name of the Batch account.', options_list=('--account-name',), completer=get_resource_name_completion_list('Microsoft.Batch/batchAccounts'), id_part=None)
+batch_name_type = CLIArgumentType(help='Name of the Batch account.', options_list=('--account-name',), completer=get_resource_name_completion_list('Microsoft.Batch/batchAccounts'), id_part=None)
# PARAMETER REGISTRATIONS
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_validators.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_validators.py
index 73b7e8d0c28..7520a42be96 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_validators.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/_validators.py
@@ -6,12 +6,10 @@
import os
import json
-
def load_node_agent_skus(prefix, **kwargs): # pylint: disable=unused-argument
from msrest.exceptions import ClientRequestError
from azure.batch.models import BatchErrorException
from azure.cli.command_modules.batch._client_factory import account_client_factory
- from azure.cli.core._config import az_config
all_images = []
client_creds = {}
client_creds['account_name'] = az_config.get('batch', 'account', None)
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/custom.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/custom.py
index a01b9312719..10e5d89736e 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/custom.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/custom.py
@@ -19,10 +19,10 @@
TaskAddParameter, TaskConstraints, PoolUpdatePropertiesParameter,
StartTask, BatchErrorException)
-from azure.cli.core.util import CLIError
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import get_sdk, ResourceType
-import azure.cli.core.azlogging as azlogging
+
+from knack.util import CLIError
logger = azlogging.get_az_logger(__name__)
MAX_TASKS_PER_REQUEST = 100
@@ -76,7 +76,6 @@ def update_account(client, resource_group_name, account_name,
def login_account(client, resource_group_name, account_name, shared_key_auth=False):
- from azure.cli.core._config import az_config, set_global_config
account = client.get(resource_group_name=resource_group_name,
account_name=account_name)
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_commands.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_commands.py
index ad74fcf3c0a..a06201a1491 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_commands.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_commands.py
@@ -12,7 +12,7 @@
from msrest.exceptions import ValidationError, ClientRequestError
from azure.batch import models, operations, BatchServiceClient
from azure.batch.batch_auth import SharedKeyCredentials
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.batch import _validators
from azure.cli.command_modules.batch import _command_type
@@ -555,7 +555,6 @@ def test_batch_options(self):
self.assertEqual(len(options), 4)
def test_batch_cancel_operation(self):
- from azure.cli.core._config import az_config as config
from azure.cli.core.commands import _user_confirmed as user
self.assertFalse(self.command_job._cancel_operation({}, config, user))
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_data_plane_commands.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_data_plane_commands.py
index 6d8716b5a0e..d733a38227f 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_data_plane_commands.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_data_plane_commands.py
@@ -6,7 +6,7 @@
import os
import datetime
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, JMESPathCheck
from .batch_preparers import BatchAccountPreparer, BatchScenarioMixin
diff --git a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_mgmt_commands.py b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_mgmt_commands.py
index b3469351f13..fa3321d14ca 100644
--- a/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_mgmt_commands.py
+++ b/src/command_modules/azure-cli-batch/azure/cli/command_modules/batch/tests/test_batch_mgmt_commands.py
@@ -7,17 +7,15 @@
import os
import mock
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, JMESPathCheck, NoneCheck
from .batch_preparers import BatchAccountPreparer, BatchScenarioMixin
-from azure.cli.core._config import az_config, CONFIG_FILE_NAME
from azure.mgmt.keyvault.models import SecretPermissions, KeyPermissions
# Key Vault permissions
ALL_SECRET_PERMISSIONS = ' '.join([perm.value for perm in SecretPermissions])
ALL_KEY_PERMISSIONS = ' '.join([perm.value for perm in KeyPermissions])
-
class BatchMgmtScenarioTests(ScenarioTest): # pylint: disable=too-many-instance-attributes
@ResourceGroupPreparer(location='northeurope')
diff --git a/src/command_modules/azure-cli-batchai/azure/cli/command_modules/batchai/_help.py b/src/command_modules/azure-cli-batchai/azure/cli/command_modules/batchai/_help.py
index 2f9c7960fd9..b4236a552b3 100644
--- a/src/command_modules/azure-cli-batchai/azure/cli/command_modules/batchai/_help.py
+++ b/src/command_modules/azure-cli-batchai/azure/cli/command_modules/batchai/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['batchai'] = """
type: group
diff --git a/src/command_modules/azure-cli-billing/azure/cli/command_modules/billing/_exception_handler.py b/src/command_modules/azure-cli-billing/azure/cli/command_modules/billing/_exception_handler.py
index 108f0d432f3..c71b94dcedf 100644
--- a/src/command_modules/azure-cli-billing/azure/cli/command_modules/billing/_exception_handler.py
+++ b/src/command_modules/azure-cli-billing/azure/cli/command_modules/billing/_exception_handler.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
def billing_exception_handler(ex):
diff --git a/src/command_modules/azure-cli-billing/azure/cli/command_modules/billing/_help.py b/src/command_modules/azure-cli-billing/azure/cli/command_modules/billing/_help.py
index d94675baab5..97eb045a4e0 100644
--- a/src/command_modules/azure-cli-billing/azure/cli/command_modules/billing/_help.py
+++ b/src/command_modules/azure-cli-billing/azure/cli/command_modules/billing/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['billing'] = """
type: group
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/__init__.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/__init__.py
index 9124f21eaeb..2f57e49070b 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/__init__.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/__init__.py
@@ -5,10 +5,29 @@
# pylint: disable=unused-import
import azure.cli.command_modules.cdn._help
+from azure.cli.core import AzCommandsLoader
-def load_params(_):
- import azure.cli.command_modules.cdn._params # pylint: disable=redefined-outer-name, unused-variable
+class CdnCommandsLoader(AzCommandsLoader):
-def load_commands():
- import azure.cli.command_modules.cdn.commands # pylint: disable=redefined-outer-name, unused-variable
+ def __init__(self, cli_ctx=None):
+ from azure.cli.core.sdk.util import CliCommandType
+ cdn_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.cdn.custom#{}')
+ super(CdnCommandsLoader, self).__init__(cli_ctx=cli_ctx,
+ min_profile='2017-03-10-profile',
+ custom_command_type=cdn_custom)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(CdnCommandsLoader, self).load_command_table(args)
+ from azure.cli.command_modules.cdn.commands import load_command_table
+ load_command_table(self, args)
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(CdnCommandsLoader, self).load_arguments(command)
+ from azure.cli.command_modules.cdn._params import load_arguments
+ load_arguments(self, command)
+
+
+COMMAND_LOADER_CLS = CdnCommandsLoader
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_client_factory.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_client_factory.py
index 9d1d81811df..77f684d6f13 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_client_factory.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_client_factory.py
@@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
-def cf_cdn(_):
+def cf_cdn(cli_ctx, _):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.cdn import CdnManagementClient
- return get_mgmt_service_client(CdnManagementClient)
+ return get_mgmt_service_client(cli_ctx, CdnManagementClient)
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_help.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_help.py
index 1af78061492..7b51497f612 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_help.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['cdn'] = """
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_params.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_params.py
index 7b579f27fbc..d0ae9850c96 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_params.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_params.py
@@ -4,11 +4,13 @@
# --------------------------------------------------------------------------------------------
import argparse
-from azure.mgmt.cdn.models import (QueryStringCachingBehavior, SkuName)
+from azure.mgmt.cdn.models import QueryStringCachingBehavior, SkuName
-from azure.cli.core.commands import (register_cli_argument, CliArgumentType)
-from azure.cli.core.commands.parameters import enum_choice_list, three_state_flag, tags_type
+from azure.cli.core.commands.parameters import get_three_state_flag, tags_type, get_enum_type
from azure.cli.core.commands.validators import get_default_location_from_resource_group
+
+from knack.arguments import CLIArgumentType
+
from ._validators import validate_origin
@@ -34,74 +36,67 @@ def get_origin(self, values, option_string):
return deep_created_origin
-name_arg_type = CliArgumentType(options_list=('--name', '-n'), metavar='NAME')
-
-register_cli_argument('cdn', 'name', name_arg_type, id_part='name')
-register_cli_argument('cdn', 'tags', tags_type)
-
-# Profile #
-
-register_cli_argument('cdn profile create',
- 'sku',
- **enum_choice_list([item.value for item in list(SkuName)]))
-register_cli_argument('cdn profile create', 'location',
- validator=get_default_location_from_resource_group)
-profile_name_help = 'Name of the CDN profile which is unique within the resource group.'
-register_cli_argument('cdn profile', 'profile_name', name_arg_type, id_part='name',
- help=profile_name_help)
-register_cli_argument('cdn profile create', 'name', name_arg_type, id_part='name',
- help=profile_name_help)
-# Endpoint #
-
-register_cli_argument('cdn endpoint', 'endpoint_name', name_arg_type, id_part='name',
- help='Name of the CDN endpoint.')
-register_cli_argument('cdn endpoint create', 'name', name_arg_type, id_part='name',
- help='Name of the CDN endpoint.')
-cdn_endpoint = 'cdn endpoint'
-register_cli_argument(cdn_endpoint, 'location',
- validator=get_default_location_from_resource_group)
-register_cli_argument(cdn_endpoint,
- 'origins',
- options_list='--origin',
- nargs='+',
- action=OriginType,
- validator=validate_origin,
- help='Endpoint origin specified by the following space delimited 3 '
- 'tuple: `www.example.com http_port https_port`. The HTTP and HTTPs'
- 'ports are optional and will default to 80 and 443 respectively.')
-register_cli_argument(cdn_endpoint, 'is_http_allowed',
- options_list='--no-http',
- help='Indicates whether HTTP traffic is not allowed on the endpoint. '
- 'Default is to allow HTTP traffic.',
- **three_state_flag(invert=True))
-register_cli_argument(cdn_endpoint, 'is_https_allowed',
- options_list='--no-https',
- help='Indicates whether HTTPS traffic is not allowed on the endpoint. '
- 'Default is to allow HTTPS traffic.',
- **three_state_flag(invert=True))
-register_cli_argument(cdn_endpoint, 'is_compression_enabled',
- options_list='--enable-compression',
- help='If compression is enabled, content will be served as compressed if '
- 'user requests for a compressed version. Content won\'t be compressed '
- 'on CDN when requested content is smaller than 1 byte or larger than 1 '
- 'MB.',
- **three_state_flag())
-caching_behavior = [item.value for item in list(QueryStringCachingBehavior)]
-register_cli_argument(cdn_endpoint,
- 'query_string_caching_behavior',
- options_list='--query-string-caching',
- **enum_choice_list(caching_behavior))
-register_cli_argument(cdn_endpoint, 'content_types_to_compress', nargs='+')
-register_cli_argument('cdn endpoint load', 'content_paths', nargs='+')
-register_cli_argument('cdn endpoint purge', 'content_paths', nargs='+')
-
-# Custom Domain #
-
-register_cli_argument('cdn custom-domain', 'custom_domain_name', name_arg_type, id_part=None,
- help='Name of the custom domain.')
-register_cli_argument('cdn custom-domain create', 'location',
- validator=get_default_location_from_resource_group)
-
-# Origin #
-
-register_cli_argument('cdn origin', 'origin_name', name_arg_type, id_part='name')
+def load_arguments(self, _):
+
+ name_arg_type = CLIArgumentType(options_list=('--name', '-n'), metavar='NAME')
+ profile_name_help = 'Name of the CDN profile which is unique within the resource group.'
+
+ with self.argument_context('cdn') as c:
+ c.argument('name', name_arg_type, id_part='name')
+ c.argument('tags', tags_type)
+
+ # Profile #
+ with self.argument_context('cdn profile') as c:
+ c.argument('profile_name', name_arg_type, id_part='name', help=profile_name_help)
+
+ with self.argument_context('cdn profile create') as c:
+ c.argument('sku', arg_type=get_enum_type([item.value for item in list(SkuName)]))
+ c.argument('location', validator=get_default_location_from_resource_group)
+ c.argument('name', name_arg_type, id_part='name', help=profile_name_help)
+
+ # Endpoint #
+
+ with self.argument_context('cdn endpoint') as c:
+ c.argument('endpoint_name', name_arg_type, id_part='name', help='Name of the CDN endpoint.')
+ c.argument('location', validator=get_default_location_from_resource_group)
+ c.argument('origins', options_list='--origin', nargs='+', action=OriginType, validator=validate_origin,
+ help='Endpoint origin specified by the following space delimited 3 '
+ 'tuple: `www.example.com http_port https_port`. The HTTP and HTTPs'
+ 'ports are optional and will default to 80 and 443 respectively.')
+ c.argument('is_http_allowed', arg_type=get_three_state_flag(invert=True), options_list='--no-http',
+ help='Indicates whether HTTP traffic is not allowed on the endpoint. '
+ 'Default is to allow HTTP traffic.')
+ c.argument('is_https_allowed', arg_type=get_three_state_flag(invert=True), options_list='--no-https',
+ help='Indicates whether HTTPS traffic is not allowed on the endpoint. '
+ 'Default is to allow HTTPS traffic.')
+ c.argument('is_compression_enabled', arg_type=get_three_state_flag(), options_list='--enable-compression',
+ help='If compression is enabled, content will be served as compressed if '
+ 'user requests for a compressed version. Content won\'t be compressed '
+ 'on CDN when requested content is smaller than 1 byte or larger than 1 '
+ 'MB.')
+
+ caching_behavior = [item.value for item in list(QueryStringCachingBehavior)]
+ c.argument('query_string_caching_behavior', options_list='--query-string-caching',
+ arg_type=get_enum_type(caching_behavior))
+ c.argument('content_types_to_compress', nargs='+')
+
+ with self.argument_context('cdn endpoint create') as c:
+ c.argument('name', name_arg_type, id_part='name', help='Name of the CDN endpoint.')
+
+ with self.argument_context('cdn endpoint load') as c:
+ c.argument('content_paths', nargs='+')
+
+ with self.argument_context('cdn endpoint purge') as c:
+ c.argument('content_paths', nargs='+')
+
+ # Custom Domain #
+
+ with self.argument_context('cdn custom-domain') as c:
+ c.argument('custom_domain_name', name_arg_type, id_part=None, help='Name of the custom domain.')
+
+ with self.argument_context('cdn custom-domain create') as c:
+ c.argument('location', validator=get_default_location_from_resource_group)
+
+ # Origin #
+ with self.argument_context('cdn origin') as c:
+ c.argument('origin_name', name_arg_type, id_part='name')
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_validators.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_validators.py
index 199ca6ea6b2..9dfc2a7db72 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_validators.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/_validators.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
def validate_origin(namespace):
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/commands.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/commands.py
index b09871f4f04..d9d655c50e1 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/commands.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/commands.py
@@ -3,15 +3,17 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
-from azure.cli.core.sdk.util import ServiceGroup, create_service_adapter
+from azure.cli.core.sdk.util import CliCommandType
+
from ._client_factory import cf_cdn
-if not supported_api_version(PROFILE_TYPE, max_api='2017-03-09-profile'):
+
+def load_command_table(self, _):
+
def _not_found(message):
def _inner_not_found(ex):
from azure.mgmt.cdn.models.error_response import ErrorResponseException
- from azure.cli.core.util import CLIError
+ from knack.util import CLIError
if isinstance(ex, ErrorResponseException) \
and ex.response is not None \
@@ -27,63 +29,73 @@ def _inner_not_found(ex):
cd_not_found_msg = not_found_msg.format('Custom Domain')
origin_not_found_msg = not_found_msg.format('Origin')
- custom_operations = 'azure.cli.command_modules.cdn.custom#{}'
-
- mgmt_operations = create_service_adapter('azure.mgmt.cdn', 'CdnManagementClient')
- with ServiceGroup(__name__, cf_cdn, mgmt_operations, custom_operations) as s:
- with s.group('cdn') as c:
- c.command('name-exists', 'check_name_availability')
- c.command('usage', 'check_resource_usage')
-
- endpoint_operations = create_service_adapter('azure.mgmt.cdn.operations.endpoints_operations',
- 'EndpointsOperations')
- with ServiceGroup(__name__, cf_cdn, endpoint_operations, custom_operations,
- exception_handler=_not_found(endpoint_not_found_msg)) as s:
- with s.group('cdn endpoint') as c:
- for name in ['start', 'stop', 'delete']:
- c.command(name, name)
- c.command('show', 'get')
- c.command('list', 'list_by_profile')
- c.command('load', 'load_content')
- c.command('purge', 'purge_content')
- c.command('validate-custom-domain', 'validate_custom_domain')
- c.custom_command('create', 'create_endpoint')
- c.generic_update_command('update', 'get', 'update', custom_func_name='update_endpoint',
- setter_arg_name='endpoint_update_properties')
-
- profile_operations = create_service_adapter('azure.mgmt.cdn.operations.profiles_operations',
- 'ProfilesOperations')
- with ServiceGroup(__name__, cf_cdn, profile_operations, custom_operations,
- exception_handler=_not_found(profile_not_found_msg)) as s:
-
- with s.group('cdn profile') as c:
- c.command('show', 'get')
- c.command('usage', 'list_resource_usage')
- c.command('delete', 'delete')
- c.custom_command('list', 'list_profiles')
- c.custom_command('create', 'create_profile')
- c.generic_update_command('update', 'get', 'update', custom_func_name='update_profile')
-
- domain_operations = create_service_adapter('azure.mgmt.cdn.operations.custom_domains_operations',
- 'CustomDomainsOperations')
- with ServiceGroup(__name__, cf_cdn, domain_operations, custom_operations,
- exception_handler=_not_found(cd_not_found_msg)) as s:
- with s.group('cdn custom-domain') as c:
- c.command('show', 'get')
- c.command('delete', 'delete')
- c.command('list', 'list_by_endpoint')
- c.custom_command('create', 'create_custom_domain')
-
- origin_operations = create_service_adapter('azure.mgmt.cdn.operations.origins_operations',
- 'OriginsOperations')
- with ServiceGroup(__name__, cf_cdn, origin_operations, custom_operations,
- exception_handler=_not_found(origin_not_found_msg)) as s:
- with s.group('cdn origin') as c:
- c.command('show', 'get')
- c.command('list', 'list_by_endpoint')
-
- edge_operations = create_service_adapter('azure.mgmt.cdn.operations.edge_nodes_operations',
- 'EdgeNodesOperations')
- with ServiceGroup(__name__, cf_cdn, edge_operations, custom_operations) as s:
- with s.group('cdn edge-node') as c:
- c.command('list', 'list')
+ cdn_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.cdn#CdnManagementClient.{}',
+ client_factory=cf_cdn
+ )
+
+ cdn_endpoints_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.cdn.operations.endpoints_operations#EndpointsOperations.{}',
+ client_factory=cf_cdn,
+ exception_handler=_not_found(endpoint_not_found_msg)
+ )
+
+ cdn_profiles_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.cdn.operations.profiles_operations#ProfilesOperations.{}',
+ client_factory=cf_cdn,
+ exception_handler=_not_found(profile_not_found_msg)
+ )
+
+ cdn_domain_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.cdn.operations.custom_domains_operations#CustomDomainsOperations.{}',
+ client_factory=cf_cdn,
+ exception_handler=_not_found(cd_not_found_msg)
+ )
+
+ cdn_origin_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.cdn.operations.origins_operations#OriginsOperations.{}',
+ client_factory=cf_cdn,
+ exception_handler=_not_found(origin_not_found_msg)
+ )
+
+ cdn_edge_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.cdn.operations.edge_nodes_operations#EdgeNodesOperations.{}',
+ client_factory=cf_cdn
+ )
+
+ with self.command_group('cdn', cdn_sdk) as g:
+ g.command('name-exists', 'check_name_availability')
+ g.command('usage', 'list_resource_usage')
+
+ with self.command_group('cdn endpoint', cdn_endpoints_sdk) as g:
+ for name in ['start', 'stop', 'delete']:
+ g.command(name, name)
+ g.command('show', 'get')
+ g.command('list', 'list_by_profile')
+ g.command('load', 'load_content')
+ g.command('purge', 'purge_content')
+ g.command('validate-custom-domain', 'validate_custom_domain')
+ g.custom_command('create', 'create_endpoint', client_factory=cf_cdn, doc_string_source='azure.mgmt.cdn.models#Endpoint')
+ g.generic_update_command('update', setter_name='update', setter_arg_name='endpoint_update_properties',
+ custom_func_name='update_endpoint', doc_string_source='azure.mgmt.cdn.models#EndpointUpdateParameters')
+
+ with self.command_group('cdn profile', cdn_profiles_sdk) as g:
+ g.command('show', 'get')
+ g.command('usage', 'list_resource_usage')
+ g.command('delete', 'delete')
+ g.custom_command('list', 'list_profiles', client_factory=cf_cdn)
+ g.custom_command('create', 'create_profile', client_factory=cf_cdn)
+ g.generic_update_command('update', setter_name='update', custom_func_name='update_profile', doc_string_source='azure.mgmt.cdn.models#ProfileUpdateParameters')
+
+ with self.command_group('cdn custom-domain', cdn_domain_sdk) as g:
+ g.command('show', 'get')
+ g.command('delete', 'delete')
+ g.command('list', 'list_by_endpoint')
+ g.custom_command('create', 'create_custom_domain')
+
+ with self.command_group('cdn origin', cdn_origin_sdk) as g:
+ g.command('show', 'get')
+ g.command('list', 'list_by_endpoint')
+
+ with self.command_group('cdn edge-node', cdn_edge_sdk) as g:
+ g.command('list', 'list')
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/custom.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/custom.py
index db9e7d25578..4972ce8e8c1 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/custom.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/custom.py
@@ -18,13 +18,6 @@ def default_content_types():
"application/xml"]
-def list_profiles(client, resource_group_name=None):
- profiles = client.profiles
- profile_list = profiles.list_by_resource_group(resource_group_name=resource_group_name) \
- if resource_group_name else profiles.list()
- return list(profile_list)
-
-
def _update_mapper(existing, new, keys):
for key in keys:
existing_value = getattr(existing, key)
@@ -32,7 +25,17 @@ def _update_mapper(existing, new, keys):
setattr(new, key, new_value if new_value is not None else existing_value)
-def update_endpoint(instance,
+# region Custom Commands
+# pylint: disable=unused-argument
+def list_profiles(cmd, client, resource_group_name=None):
+ profiles = client.profiles
+ profile_list = profiles.list_by_resource_group(resource_group_name=resource_group_name) \
+ if resource_group_name else profiles.list()
+ return list(profile_list)
+
+
+# pylint: disable=unused-argument
+def update_endpoint(cmd, instance,
origin_host_header=None,
origin_path=None,
content_types_to_compress=None,
@@ -68,10 +71,8 @@ def update_endpoint(instance,
return params
-update_endpoint.__doc__ = EndpointUpdateParameters.__doc__
-
-
-def create_endpoint(client, resource_group_name, profile_name, name, origins, location=None,
+# pylint: disable=unused-argument
+def create_endpoint(cmd, client, resource_group_name, profile_name, name, origins, location=None,
origin_host_header=None, origin_path=None, content_types_to_compress=None,
is_compression_enabled=None, is_http_allowed=None, is_https_allowed=None,
query_string_caching_behavior=QueryStringCachingBehavior.ignore_query_string.
@@ -95,10 +96,9 @@ def create_endpoint(client, resource_group_name, profile_name, name, origins, lo
return client.endpoints.create(resource_group_name, profile_name, name, endpoint)
-create_endpoint.__doc__ = Endpoint.__doc__
-
-
-def create_custom_domain(client, resource_group_name, profile_name, endpoint_name, name, hostname):
+# pylint: disable=unused-argument
+def create_custom_domain(cmd, client, resource_group_name, profile_name, endpoint_name, name, hostname,
+ location=None, tags=None):
return client.custom_domains.create(resource_group_name,
profile_name,
endpoint_name,
@@ -106,18 +106,19 @@ def create_custom_domain(client, resource_group_name, profile_name, endpoint_nam
hostname)
-def update_profile(instance, tags=None):
+# pylint: disable=unused-argument
+def update_profile(cmd, instance, tags=None):
params = ProfileUpdateParameters(tags=tags)
_update_mapper(instance, params, ['tags'])
return params
-update_profile.__doc__ = ProfileUpdateParameters.__doc__
-
-
-def create_profile(client, resource_group_name, name,
+# pylint: disable=unused-argument
+def create_profile(cmd, client, resource_group_name, name,
sku=SkuName.standard_akamai.value,
location=None, tags=None):
from azure.mgmt.cdn.models import (Profile, Sku)
profile = Profile(location, Sku(name=sku), tags=tags)
return client.profiles.create(resource_group_name, name, profile)
+
+# endregion
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_custom_domain_list.yaml b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_custom_domain_list.yaml
index bdd60d82e4a..3b33d3193fd 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_custom_domain_list.yaml
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_custom_domain_list.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -20,7 +20,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 22:55:12 GMT']
+ date: ['Tue, 03 Oct 2017 20:37:50 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -31,12 +31,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 22:55:13 GMT']
+ date: ['Tue, 03 Oct 2017 20:37:50 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,34 +57,34 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['58']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\
+ \r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/a0f802c4-3513-450e-a76f-86f10c664c1b?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/631a4b12-a965-4c60-9b5e-626c9f64c263?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['419']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:55:15 GMT']
+ date: ['Tue, 03 Oct 2017 20:37:52 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -92,22 +92,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/a0f802c4-3513-450e-a76f-86f10c664c1b?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/631a4b12-a965-4c60-9b5e-626c9f64c263?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:55:26 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:02 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -123,24 +123,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\
+ \r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['418']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:55:27 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:03 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -156,12 +157,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -171,50 +172,54 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 22:55:27 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:04 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"isHttpsAllowed": true, "queryStringCachingBehavior": "IgnoreQueryString",
- "origins": [{"properties": {"httpPort": 80, "hostName": "www.example.com", "httpsPort":
- 443}, "name": "origin-0"}], "isHttpAllowed": true, "isCompressionEnabled": false},
- "location": "westus"}'
+ body: '{"location": "westus", "properties": {"queryStringCachingBehavior": "IgnoreQueryString",
+ "origins": [{"name": "origin-0", "properties": {"httpsPort": 443, "httpPort":
+ 80, "hostName": "www.example.com"}}], "isCompressionEnabled": false, "isHttpsAllowed":
+ true, "isHttpAllowed": true}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['283']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\":\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\"\
+ :\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/20269c82-5b6e-4d27-9c48-08b42039e6de?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/68b7b014-f1e4-445d-b29d-065d6d464a7b?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:55:29 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:06 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1190']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -222,22 +227,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/20269c82-5b6e-4d27-9c48-08b42039e6de?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/68b7b014-f1e4-445d-b29d-065d6d464a7b?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:55:39 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:17 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -253,26 +258,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:55:40 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:18 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -288,11 +298,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn custom-domain list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/customDomains?api-version=2016-10-02
@@ -302,7 +312,7 @@ interactions:
cache-control: [no-cache]
content-length: ['28']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:55:41 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:19 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -318,13 +328,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -333,12 +343,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Wed, 03 May 2017 22:55:41 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:20 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdaVU02WTQzTk0yTjJIQklXQ1dNWVZQQVlaWldTV080VlY2V3xCQjFDOEJGNDNFNTMzRUQzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdCRFFITzdMUEdUTVBZMlZMSllZUVZPQTNOSElFRTJaNE9GRnwwQ0IxQzlBN0JDQUE2RUVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
- retry-after: ['15']
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1181']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_edge_node_crud.yaml b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_edge_node_crud.yaml
index bb56f3cb928..f4f5de76ad5 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_edge_node_crud.yaml
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_edge_node_crud.yaml
@@ -4,972 +4,1344 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn edge-node list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/providers/Microsoft.Cdn/edgenodes?api-version=2016-10-02
response:
- body: {string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"Standard_Verizon\",\"id\":\"/providers/Microsoft.Cdn/edgenodes/Standard_Verizon\",\"type\":\"Microsoft.Cdn/edgenodes\",\"properties\":{\r\n
- \ \"ipAddressGroups\":[\r\n {\r\n \"deliveryRegion\":\"All\",\"ipv4Addresses\":[\r\n
- \ {\r\n \"baseIpAddress\":\"192.229.176.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"180.240.184.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"61.49.52.0\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"61.49.62.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.174.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.247.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.176.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.154.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"180.240.184.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"61.221.181.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"203.74.4.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.175.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.177.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.103.183.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.116.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.117.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"121.156.59.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"121.189.46.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"121.189.47.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"101.226.203.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"120.132.137.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"120.132.137.192\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.236.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.190.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.177.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.233.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.56.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.57.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.26.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.114.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.115.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.136.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.137.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.4.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.5.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.166.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.179.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.235.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.72.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.208.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.209.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.217.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.52.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.53.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"194.255.210.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"194.255.242.160\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.102.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.103.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.64.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.159.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.134.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.135.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.89.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.212.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.213.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.144.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.145.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"88.194.45.128\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"88.194.47.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.74.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.75.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.210.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.96.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.98.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.99.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.97.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.140.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.141.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.90.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.211.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.29.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.136.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.137.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.14.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.15.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.68.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.164.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.165.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.66.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.67.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"195.67.219.64\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"213.64.234.0\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"213.65.58.192\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.69.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.68.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.242.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.128\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.160\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.66.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.67.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.36.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.83.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.254.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.185.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.24.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.25.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.82.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.83.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.88.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.93.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.252.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.46.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.47.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.244.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.245.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.76.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.38.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.87.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.2.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.3.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.128.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.129.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.187.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.18.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.19.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.39.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.86.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.244.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.124.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.125.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.74.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.75.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.250.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.251.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.132.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.29.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.130.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.131.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.10.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.10.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.96\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.241.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.241.208\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.253.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.60.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.69.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.40.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.84.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.94.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.218.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.76.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.77.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.122.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.123.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.78.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.79.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.248.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.51.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.88.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.89.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.90.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.91.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.64.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.6.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.7.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.161.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.120.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.121.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.20.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.37.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.18.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.19.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.146.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.147.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.156.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.157.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.84.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.85.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.86.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.87.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.78.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.79.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.128.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.129.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.94.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.95.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.85.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.246.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.54.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.55.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.25.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.1.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.24.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.213.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.212.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.228.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.229.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.41.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.42.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.27.0\",\"prefixLength\":24\r\n
- \ }\r\n ],\"ipv6Addresses\":[\r\n {\r\n
- \ \"baseIpAddress\":\"2606:2800:60f2::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2405:8f00:edcb::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f0::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6010::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6040::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6041::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2405:8f00:edca::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:b032:c101::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f1::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f3::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6028::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:602c::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6000::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6020::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6023::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:602b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6027::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6026::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6022::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6033::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6030::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5040::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5041::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2011:c002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a6::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5070::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5020::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5101::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2060:bffb::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a0::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a2::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a1::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a3::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5011::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5080::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5100::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5031::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5032::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2040:c006::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5060::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5050::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5090::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4207::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4200::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4202::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4229::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4220::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4248::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4260::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4210::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4217::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4216::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4212::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4100::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4106::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4107::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4102::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4110::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4048::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4000::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4062::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4063::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4060::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4061::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4004::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4008:e::\",\"prefixLength\":127\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4267::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4268::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4269::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4230::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4232::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4264::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4265::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4242::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4244::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4246::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424f::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424c::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424d::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4250::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4016::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4017::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4019::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4011::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4025::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4020::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4022::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4023::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4024::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700a::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:420d::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:420b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700c::\",\"prefixLength\":48\r\n
- \ }\r\n ]\r\n }\r\n ]\r\n }\r\n
- \ },{\r\n \"name\":\"Premium_Verizon\",\"id\":\"/providers/Microsoft.Cdn/edgenodes/Premium_Verizon\",\"type\":\"Microsoft.Cdn/edgenodes\",\"properties\":{\r\n
- \ \"ipAddressGroups\":[\r\n {\r\n \"deliveryRegion\":\"All\",\"ipv4Addresses\":[\r\n
- \ {\r\n \"baseIpAddress\":\"192.229.176.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"180.240.184.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"61.49.52.0\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"61.49.62.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.174.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.247.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.176.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.154.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"180.240.184.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"61.221.181.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"203.74.4.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.175.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.177.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.103.183.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.116.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.117.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"121.156.59.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"121.189.46.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"121.189.47.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"101.226.203.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"120.132.137.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"120.132.137.192\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.236.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.190.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.177.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.233.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.56.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.57.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.26.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.114.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.115.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.136.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.137.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.4.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.5.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.166.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.179.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.235.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.72.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.208.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.209.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.217.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.52.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.53.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"194.255.210.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"194.255.242.160\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.102.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.103.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.64.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.159.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.134.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.135.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.89.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.212.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.213.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.144.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.145.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"88.194.45.128\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"88.194.47.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.74.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.75.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.210.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.96.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.98.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.99.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.97.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.140.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.141.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.90.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.211.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.29.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.136.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.137.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.14.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.15.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.68.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.164.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.165.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.66.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.67.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"195.67.219.64\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"213.64.234.0\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"213.65.58.192\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.69.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.68.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.242.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.128\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.160\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.66.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.67.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.36.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.83.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.254.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.185.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.24.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.25.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.82.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.83.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.88.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.93.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.252.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.46.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.47.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.244.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.245.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.76.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.38.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.87.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.2.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.3.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.128.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.129.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.187.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.18.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.19.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.39.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.86.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.244.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.124.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.125.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.74.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.75.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.250.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.251.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.132.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.29.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.130.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.131.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.10.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.10.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.96\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.241.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.241.208\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.253.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.60.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.69.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.40.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.84.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.94.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.218.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.76.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.77.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.122.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.123.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.78.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.79.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.248.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.51.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.88.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.89.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.90.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.91.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.64.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.6.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.7.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.161.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.120.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.121.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.20.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.37.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.18.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.19.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.146.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.147.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.156.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.157.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.84.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.85.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.86.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.87.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.78.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.79.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.128.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.129.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.94.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.95.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.85.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.246.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.54.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.55.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.25.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.1.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.24.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.213.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.212.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.228.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.229.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.41.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.42.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.27.0\",\"prefixLength\":24\r\n
- \ }\r\n ],\"ipv6Addresses\":[\r\n {\r\n
- \ \"baseIpAddress\":\"2606:2800:60f2::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2405:8f00:edcb::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f0::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6010::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6040::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6041::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2405:8f00:edca::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:b032:c101::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f1::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f3::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6028::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:602c::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6000::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6020::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6023::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:602b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6027::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6026::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6022::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6033::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6030::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5040::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5041::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2011:c002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a6::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5070::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5020::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5101::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2060:bffb::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a0::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a2::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a1::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a3::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5011::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5080::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5100::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5031::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5032::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2040:c006::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5060::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5050::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5090::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4207::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4200::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4202::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4229::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4220::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4248::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4260::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4210::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4217::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4216::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4212::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4100::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4106::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4107::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4102::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4110::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4048::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4000::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4062::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4063::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4060::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4061::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4004::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4008:e::\",\"prefixLength\":127\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4267::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4268::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4269::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4230::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4232::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4264::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4265::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4242::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4244::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4246::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424f::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424c::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424d::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4250::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4016::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4017::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4019::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4011::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4025::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4020::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4022::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4023::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4024::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700a::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:420d::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:420b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700c::\",\"prefixLength\":48\r\n
- \ }\r\n ]\r\n }\r\n ]\r\n }\r\n
- \ },{\r\n \"name\":\"Custom_Verizon\",\"id\":\"/providers/Microsoft.Cdn/edgenodes/Custom_Verizon\",\"type\":\"Microsoft.Cdn/edgenodes\",\"properties\":{\r\n
- \ \"ipAddressGroups\":[\r\n {\r\n \"deliveryRegion\":\"All\",\"ipv4Addresses\":[\r\n
- \ {\r\n \"baseIpAddress\":\"192.229.176.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"180.240.184.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"61.49.52.0\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"61.49.62.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.174.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.247.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.176.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.154.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"180.240.184.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"61.221.181.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"203.74.4.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.175.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.177.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.103.183.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.116.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.117.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"121.156.59.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"121.189.46.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"121.189.47.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"101.226.203.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"120.132.137.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"120.132.137.192\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.236.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.190.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.177.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.233.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.56.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.57.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.26.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.114.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.115.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.136.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.137.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.4.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.5.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.166.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"110.232.179.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"117.18.235.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.72.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.208.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.209.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.217.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.52.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.53.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"194.255.210.64\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"194.255.242.160\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.102.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.103.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.64.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.159.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.134.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.135.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.89.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.212.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.213.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.144.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.145.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"88.194.45.128\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"88.194.47.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.74.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.75.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.210.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.96.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.98.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.99.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.97.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.140.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.141.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.90.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.211.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.29.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.136.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.137.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.14.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.15.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.68.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.164.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.165.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.66.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.67.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"195.67.219.64\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"213.64.234.0\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"213.65.58.192\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.69.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"5.104.68.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.242.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.128\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.5.160\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.66.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.67.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.36.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.83.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.254.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.185.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.24.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.25.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.82.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.83.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.88.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.93.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.252.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.46.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.47.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.244.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.245.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.76.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.38.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.87.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.2.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.3.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.128.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.129.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.187.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.18.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.19.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.39.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.86.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.244.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.124.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.125.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.74.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.75.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.250.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.251.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.132.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.29.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.130.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.131.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.10.128\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.10.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.0\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.96\",\"prefixLength\":25\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.240.224\",\"prefixLength\":27\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.241.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.241.208\",\"prefixLength\":26\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.253.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.60.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.69.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.40.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.84.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.94.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"93.184.218.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.76.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.77.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.122.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.123.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.78.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.79.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.248.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.51.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.88.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.89.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.90.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.91.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.64.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.6.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.7.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.161.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.120.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.121.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.70.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.71.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.20.0\",\"prefixLength\":23\r\n
- \ },{\r\n \"baseIpAddress\":\"68.232.37.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.18.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.19.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.146.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.147.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.156.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.157.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.84.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.85.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.86.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.87.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.78.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"46.22.79.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.22.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.128.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.129.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.94.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.95.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"72.21.85.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"108.161.246.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"198.7.28.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.54.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.55.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.23.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.25.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.1.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.24.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.213.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.212.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.228.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.229.229.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.41.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"192.16.42.0\",\"prefixLength\":24\r\n
- \ },{\r\n \"baseIpAddress\":\"152.195.27.0\",\"prefixLength\":24\r\n
- \ }\r\n ],\"ipv6Addresses\":[\r\n {\r\n
- \ \"baseIpAddress\":\"2606:2800:60f2::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2405:8f00:edcb::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f0::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6010::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6040::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6041::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2405:8f00:edca::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:b032:c101::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f1::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:60f3::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6028::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:602c::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6000::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6020::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6023::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:602b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6027::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6026::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6022::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6033::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:6030::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5040::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5041::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2011:c002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a6::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5070::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5020::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5101::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2060:bffb::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a0::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a2::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a1::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:50a3::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5011::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5080::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5100::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5031::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5032::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2001:2040:c006::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5060::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5050::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:5090::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4207::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4200::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4202::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4229::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4220::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4248::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4260::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4210::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4217::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4216::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4212::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4100::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4106::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4107::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4102::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4110::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4048::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4000::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4062::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4063::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4060::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4061::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4004::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4008:e::\",\"prefixLength\":127\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4267::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4268::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4269::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4230::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4232::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4264::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4265::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4242::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4244::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4246::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424f::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424c::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:424d::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4250::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4016::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4017::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4019::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4011::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4025::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4020::\",\"prefixLength\":47\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4022::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4023::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:4024::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7002::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700a::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7021::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7001::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:420d::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:7010::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:420b::\",\"prefixLength\":48\r\n
- \ },{\r\n \"baseIpAddress\":\"2606:2800:700c::\",\"prefixLength\":48\r\n
- \ }\r\n ]\r\n }\r\n ]\r\n }\r\n
- \ }\r\n ]\r\n}"}
+ body: {string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"Standard_Verizon\"\
+ ,\"id\":\"/providers/Microsoft.Cdn/edgenodes/Standard_Verizon\",\"type\":\"\
+ Microsoft.Cdn/edgenodes\",\"properties\":{\r\n \"ipAddressGroups\"\
+ :[\r\n {\r\n \"deliveryRegion\":\"All\",\"ipv4Addresses\"\
+ :[\r\n {\r\n \"baseIpAddress\":\"192.229.176.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"180.240.184.128\",\"prefixLength\":25\r\n },{\r\n \
+ \ \"baseIpAddress\":\"61.49.49.64\",\"prefixLength\":26\r\n \
+ \ },{\r\n \"baseIpAddress\":\"61.49.52.0\",\"prefixLength\"\
+ :26\r\n },{\r\n \"baseIpAddress\":\"61.49.62.128\"\
+ ,\"prefixLength\":25\r\n },{\r\n \"baseIpAddress\"\
+ :\"61.49.63.32\",\"prefixLength\":29\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.174.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.247.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"110.232.176.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.154.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"36.67.255.152\",\"prefixLength\":29\r\n \
+ \ },{\r\n \"baseIpAddress\":\"180.240.184.0\",\"prefixLength\"\
+ :25\r\n },{\r\n \"baseIpAddress\":\"61.221.181.64\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"203.74.4.64\",\"prefixLength\":26\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.152.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.153.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.177.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.103.183.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.116.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.117.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"121.156.59.224\"\
+ ,\"prefixLength\":27\r\n },{\r\n \"baseIpAddress\"\
+ :\"121.189.46.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"121.189.47.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"101.226.203.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.71.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.18.236.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.190.0\",\"prefixLength\":23\r\n \
+ \ },{\r\n \"baseIpAddress\":\"110.232.177.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"117.18.233.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.56.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.57.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.26.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.114.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.115.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.136.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.137.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.4.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.5.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.118.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.166.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"110.232.179.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.18.235.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.70.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.72.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.73.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.208.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"93.184.209.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"93.184.217.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.138.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.139.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.104.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.105.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.52.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.53.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"194.255.210.64\",\"prefixLength\":26\r\n \
+ \ },{\r\n \"baseIpAddress\":\"194.255.242.160\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"152.195.142.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.143.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.102.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.103.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.64.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"5.104.65.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.159.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.89.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"93.184.212.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.213.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.144.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.145.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"88.194.45.128\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"88.194.47.224\",\"prefixLength\":27\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.140.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.141.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.96.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.98.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.99.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.97.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.71.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.74.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.75.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"93.184.210.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"72.21.90.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.211.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.28.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.29.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.136.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.137.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.22.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.14.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.15.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.68.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.164.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.165.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.66.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"5.104.67.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"213.175.80.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"195.67.219.64\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"213.64.234.0\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"213.65.58.192\",\"prefixLength\":26\r\n },{\r\n \
+ \ \"baseIpAddress\":\"5.104.69.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"5.104.70.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.68.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.242.0\",\"prefixLength\":23\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.5.0\",\"prefixLength\":25\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.5.128\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"152.195.5.160\"\
+ ,\"prefixLength\":27\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.22.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.23.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.66.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.67.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.126.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.127.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"68.232.36.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"72.21.83.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.254.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.134.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.135.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.82.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.83.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.88.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.93.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"108.161.252.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.46.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.47.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.244.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.245.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.76.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"68.232.38.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.87.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.7.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.2.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.3.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.6.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.128.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.129.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.187.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.18.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"198.7.19.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"68.232.39.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.86.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.244.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.124.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.125.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.74.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.75.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"108.161.250.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.251.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.132.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.28.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.29.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.130.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.131.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.240.0\",\"prefixLength\"\
+ :25\r\n },{\r\n \"baseIpAddress\":\"108.161.240.96\"\
+ ,\"prefixLength\":25\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.240.224\",\"prefixLength\":27\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.241.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.241.208\",\"\
+ prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.245.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.253.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.60.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.69.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"68.232.40.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.84.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.94.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"93.184.218.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.76.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.77.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.122.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.123.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.78.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.79.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.248.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"192.16.51.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.154.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.155.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.88.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.89.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.90.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.91.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.64.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"198.7.23.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.6.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.7.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.161.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.120.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.121.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.70.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.71.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"68.232.37.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.18.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.19.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.146.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.147.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.156.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.157.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.148.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.130.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.131.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.84.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.85.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.86.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.87.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.78.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.79.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"198.7.22.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.128.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.129.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.146.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.147.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.94.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.95.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.150.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.151.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"72.21.85.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.246.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.28.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.54.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.55.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.23.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.25.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.1.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.24.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.213.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.212.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.228.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.229.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.41.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.42.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.27.0\"\
+ ,\"prefixLength\":24\r\n }\r\n ],\"ipv6Addresses\"\
+ :[\r\n {\r\n \"baseIpAddress\":\"2606:2800:60f2::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2405:8f00:edcb::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:60f0::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6010::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6040::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6041::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2405:8f00:edca::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2001:b032:c101::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:60f5::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:60f3::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6028::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:602c::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6000::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6020::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6021::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:602b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6027::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6026::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6022::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4266::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6033::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6030::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5040::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50aa::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:50a8::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a9::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5041::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2001:2011:c002::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a7::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50a6::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5070::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5020::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5101::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2001:2060:bffb::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a3::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50a0::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:50a2::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a1::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5010::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5011::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5001::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5080::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5100::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5031::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5032::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2a02:16d8:103::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2001:2040:c006::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5060::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5050::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5090::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4207::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4206::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4200::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4228::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4229::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4220::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4248::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4260::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4210::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4217::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4216::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4212::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4100::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4106::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4107::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4102::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4110::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4001::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4002::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4000::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4062::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4063::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4060::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4061::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4004::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4008:e::\"\
+ ,\"prefixLength\":127\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:426c::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4267::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4268::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4269::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4230::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4232::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4264::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4265::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4246::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:424f::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:424c::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:424d::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4250::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:426b::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4018::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4016::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4017::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4019::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4010::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4011::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:426a::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4025::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4028::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4020::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4021::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4022::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4023::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4024::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7002::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:700b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:700a::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7021::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:7001::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:420d::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7010::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:420b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:700c::\",\"prefixLength\":48\r\n }\r\n \
+ \ ]\r\n }\r\n ]\r\n }\r\n },{\r\n \"name\"\
+ :\"Premium_Verizon\",\"id\":\"/providers/Microsoft.Cdn/edgenodes/Premium_Verizon\"\
+ ,\"type\":\"Microsoft.Cdn/edgenodes\",\"properties\":{\r\n \"ipAddressGroups\"\
+ :[\r\n {\r\n \"deliveryRegion\":\"All\",\"ipv4Addresses\"\
+ :[\r\n {\r\n \"baseIpAddress\":\"192.229.176.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"180.240.184.128\",\"prefixLength\":25\r\n },{\r\n \
+ \ \"baseIpAddress\":\"61.49.49.64\",\"prefixLength\":26\r\n \
+ \ },{\r\n \"baseIpAddress\":\"61.49.52.0\",\"prefixLength\"\
+ :26\r\n },{\r\n \"baseIpAddress\":\"61.49.62.128\"\
+ ,\"prefixLength\":25\r\n },{\r\n \"baseIpAddress\"\
+ :\"61.49.63.32\",\"prefixLength\":29\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.174.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.247.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"110.232.176.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.154.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"36.67.255.152\",\"prefixLength\":29\r\n \
+ \ },{\r\n \"baseIpAddress\":\"180.240.184.0\",\"prefixLength\"\
+ :25\r\n },{\r\n \"baseIpAddress\":\"61.221.181.64\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"203.74.4.64\",\"prefixLength\":26\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.152.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.153.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.177.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.103.183.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.116.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.117.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"121.156.59.224\"\
+ ,\"prefixLength\":27\r\n },{\r\n \"baseIpAddress\"\
+ :\"121.189.46.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"121.189.47.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"101.226.203.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.71.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.18.236.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.190.0\",\"prefixLength\":23\r\n \
+ \ },{\r\n \"baseIpAddress\":\"110.232.177.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"117.18.233.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.56.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.57.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.26.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.114.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.115.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.136.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.137.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.4.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.5.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.118.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.166.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"110.232.179.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.18.235.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.70.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.72.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.73.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.208.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"93.184.209.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"93.184.217.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.138.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.139.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.104.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.105.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.52.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.53.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"194.255.210.64\",\"prefixLength\":26\r\n \
+ \ },{\r\n \"baseIpAddress\":\"194.255.242.160\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"152.195.142.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.143.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.102.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.103.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.64.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"5.104.65.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.159.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.89.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"93.184.212.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.213.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.144.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.145.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"88.194.45.128\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"88.194.47.224\",\"prefixLength\":27\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.140.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.141.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.96.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.98.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.99.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.97.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.71.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.74.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.75.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"93.184.210.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"72.21.90.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.211.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.28.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.29.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.136.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.137.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.22.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.14.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.15.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.68.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.164.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.165.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.66.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"5.104.67.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"213.175.80.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"195.67.219.64\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"213.64.234.0\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"213.65.58.192\",\"prefixLength\":26\r\n },{\r\n \
+ \ \"baseIpAddress\":\"5.104.69.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"5.104.70.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.68.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.242.0\",\"prefixLength\":23\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.5.0\",\"prefixLength\":25\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.5.128\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"152.195.5.160\"\
+ ,\"prefixLength\":27\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.22.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.23.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.66.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.67.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.126.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.127.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"68.232.36.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"72.21.83.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.254.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.134.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.135.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.82.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.83.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.88.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.93.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"108.161.252.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.46.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.47.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.244.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.245.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.76.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"68.232.38.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.87.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.7.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.2.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.3.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.6.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.128.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.129.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.187.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.18.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"198.7.19.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"68.232.39.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.86.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.244.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.124.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.125.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.74.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.75.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"108.161.250.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.251.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.132.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.28.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.29.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.130.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.131.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.240.0\",\"prefixLength\"\
+ :25\r\n },{\r\n \"baseIpAddress\":\"108.161.240.96\"\
+ ,\"prefixLength\":25\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.240.224\",\"prefixLength\":27\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.241.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.241.208\",\"\
+ prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.245.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.253.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.60.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.69.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"68.232.40.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.84.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.94.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"93.184.218.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.76.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.77.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.122.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.123.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.78.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.79.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.248.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"192.16.51.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.154.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.155.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.88.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.89.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.90.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.91.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.64.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"198.7.23.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.6.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.7.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.161.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.120.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.121.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.70.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.71.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"68.232.37.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.18.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.19.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.146.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.147.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.156.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.157.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.148.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.130.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.131.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.84.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.85.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.86.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.87.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.78.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.79.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"198.7.22.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.128.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.129.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.146.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.147.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.94.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.95.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.150.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.151.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"72.21.85.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.246.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.28.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.54.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.55.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.23.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.25.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.1.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.24.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.213.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.212.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.228.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.229.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.41.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.42.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.27.0\"\
+ ,\"prefixLength\":24\r\n }\r\n ],\"ipv6Addresses\"\
+ :[\r\n {\r\n \"baseIpAddress\":\"2606:2800:60f2::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2405:8f00:edcb::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:60f0::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6010::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6040::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6041::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2405:8f00:edca::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2001:b032:c101::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:60f5::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:60f3::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6028::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:602c::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6000::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6020::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6021::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:602b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6027::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6026::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6022::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4266::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6033::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6030::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5040::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50aa::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:50a8::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a9::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5041::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2001:2011:c002::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a7::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50a6::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5070::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5020::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5101::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2001:2060:bffb::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a3::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50a0::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:50a2::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a1::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5010::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5011::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5001::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5080::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5100::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5031::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5032::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2a02:16d8:103::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2001:2040:c006::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5060::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5050::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5090::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4207::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4206::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4200::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4228::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4229::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4220::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4248::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4260::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4210::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4217::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4216::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4212::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4100::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4106::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4107::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4102::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4110::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4001::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4002::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4000::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4062::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4063::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4060::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4061::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4004::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4008:e::\"\
+ ,\"prefixLength\":127\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:426c::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4267::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4268::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4269::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4230::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4232::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4264::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4265::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4246::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:424f::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:424c::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:424d::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4250::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:426b::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4018::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4016::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4017::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4019::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4010::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4011::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:426a::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4025::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4028::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4020::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4021::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4022::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4023::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4024::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7002::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:700b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:700a::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7021::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:7001::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:420d::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7010::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:420b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:700c::\",\"prefixLength\":48\r\n }\r\n \
+ \ ]\r\n }\r\n ]\r\n }\r\n },{\r\n \"name\"\
+ :\"Custom_Verizon\",\"id\":\"/providers/Microsoft.Cdn/edgenodes/Custom_Verizon\"\
+ ,\"type\":\"Microsoft.Cdn/edgenodes\",\"properties\":{\r\n \"ipAddressGroups\"\
+ :[\r\n {\r\n \"deliveryRegion\":\"All\",\"ipv4Addresses\"\
+ :[\r\n {\r\n \"baseIpAddress\":\"192.229.176.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"180.240.184.128\",\"prefixLength\":25\r\n },{\r\n \
+ \ \"baseIpAddress\":\"61.49.49.64\",\"prefixLength\":26\r\n \
+ \ },{\r\n \"baseIpAddress\":\"61.49.52.0\",\"prefixLength\"\
+ :26\r\n },{\r\n \"baseIpAddress\":\"61.49.62.128\"\
+ ,\"prefixLength\":25\r\n },{\r\n \"baseIpAddress\"\
+ :\"61.49.63.32\",\"prefixLength\":29\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.174.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.247.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"110.232.176.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.154.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"36.67.255.152\",\"prefixLength\":29\r\n \
+ \ },{\r\n \"baseIpAddress\":\"180.240.184.0\",\"prefixLength\"\
+ :25\r\n },{\r\n \"baseIpAddress\":\"61.221.181.64\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"203.74.4.64\",\"prefixLength\":26\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.152.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.153.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.177.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.103.183.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.116.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.117.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"121.156.59.224\"\
+ ,\"prefixLength\":27\r\n },{\r\n \"baseIpAddress\"\
+ :\"121.189.46.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"121.189.47.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"101.226.203.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.71.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.18.236.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.190.0\",\"prefixLength\":23\r\n \
+ \ },{\r\n \"baseIpAddress\":\"110.232.177.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"117.18.233.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.56.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.57.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.26.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.114.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.115.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.136.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.137.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.4.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.5.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.118.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.166.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"110.232.179.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"117.18.235.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.70.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.72.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.73.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.208.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"93.184.209.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"93.184.217.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.138.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.139.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.104.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.105.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.52.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.53.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"194.255.210.64\",\"prefixLength\":26\r\n \
+ \ },{\r\n \"baseIpAddress\":\"194.255.242.160\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"152.195.142.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.143.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.102.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.103.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.64.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"5.104.65.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.159.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.89.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"93.184.212.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.213.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.144.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.145.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"88.194.45.128\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"88.194.47.224\",\"prefixLength\":27\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.140.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.141.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.96.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.98.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.99.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.97.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.71.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.74.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.75.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"93.184.210.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"72.21.90.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"93.184.211.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.28.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.29.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.136.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.137.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.22.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.14.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.15.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.68.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.164.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.165.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.66.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"5.104.67.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"213.175.80.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"195.67.219.64\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"213.64.234.0\"\
+ ,\"prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"213.65.58.192\",\"prefixLength\":26\r\n },{\r\n \
+ \ \"baseIpAddress\":\"5.104.69.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"5.104.70.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"5.104.68.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.242.0\",\"prefixLength\":23\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.5.0\",\"prefixLength\":25\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.5.128\",\"prefixLength\"\
+ :27\r\n },{\r\n \"baseIpAddress\":\"152.195.5.160\"\
+ ,\"prefixLength\":27\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.22.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.23.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.66.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.67.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.126.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.127.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"68.232.36.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"72.21.83.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.254.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.134.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.135.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.82.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.83.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.88.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.93.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"108.161.252.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.46.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.47.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.244.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.245.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"46.22.76.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"68.232.38.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.87.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.7.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.2.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.3.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.6.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.128.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.129.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.187.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.18.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"198.7.19.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"68.232.39.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.86.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.244.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.124.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.125.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.74.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.75.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"108.161.250.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.251.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.132.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.28.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.29.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.130.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.131.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.240.0\",\"prefixLength\"\
+ :25\r\n },{\r\n \"baseIpAddress\":\"108.161.240.96\"\
+ ,\"prefixLength\":25\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.240.224\",\"prefixLength\":27\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.241.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.241.208\",\"\
+ prefixLength\":26\r\n },{\r\n \"baseIpAddress\"\
+ :\"108.161.245.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.253.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.60.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"46.22.69.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"68.232.40.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"72.21.84.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"72.21.94.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"93.184.218.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.76.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.77.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.122.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.123.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.78.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.79.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"108.161.248.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"192.16.51.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.154.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.155.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.88.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.89.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.90.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.91.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.64.0\",\"prefixLength\"\
+ :23\r\n },{\r\n \"baseIpAddress\":\"198.7.23.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.6.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.7.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.161.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.120.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.121.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.70.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.71.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"68.232.37.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.18.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.19.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.146.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.147.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.156.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.157.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.148.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.130.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.131.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.84.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.85.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.86.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.87.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"46.22.78.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"46.22.79.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"198.7.22.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.128.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.129.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.146.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.147.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.94.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.95.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.150.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.151.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"72.21.85.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"108.161.246.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"198.7.28.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.54.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.16.55.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"152.195.23.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"152.195.25.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.16.1.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"152.195.24.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.229.213.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.229.212.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"192.229.228.0\"\
+ ,\"prefixLength\":24\r\n },{\r\n \"baseIpAddress\"\
+ :\"192.229.229.0\",\"prefixLength\":24\r\n },{\r\n \
+ \ \"baseIpAddress\":\"192.16.41.0\",\"prefixLength\":24\r\n \
+ \ },{\r\n \"baseIpAddress\":\"192.16.42.0\",\"prefixLength\"\
+ :24\r\n },{\r\n \"baseIpAddress\":\"152.195.27.0\"\
+ ,\"prefixLength\":24\r\n }\r\n ],\"ipv6Addresses\"\
+ :[\r\n {\r\n \"baseIpAddress\":\"2606:2800:60f2::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2405:8f00:edcb::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:60f0::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6010::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6040::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6041::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2405:8f00:edca::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2001:b032:c101::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:60f5::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:60f3::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6028::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:602c::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6000::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6020::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6021::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:602b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:6027::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6026::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6022::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4266::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:6033::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:6030::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5040::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50aa::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:50a8::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a9::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5041::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2001:2011:c002::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a7::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50a6::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5070::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5020::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5101::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2001:2060:bffb::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a3::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:50a0::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:50a2::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:50a1::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5010::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5011::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5001::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5080::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5100::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5031::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5032::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2a02:16d8:103::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2001:2040:c006::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:5060::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:5050::\"\
+ ,\"prefixLength\":47\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:5090::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4207::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4206::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4200::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4228::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4229::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4220::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4248::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4260::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4210::\",\"prefixLength\":47\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4217::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4216::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4212::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4100::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4106::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4107::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4102::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4110::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4001::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4002::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4000::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4062::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4063::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4060::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4061::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4004::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4008:e::\"\
+ ,\"prefixLength\":127\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:426c::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4267::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4268::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4269::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4230::\",\"prefixLength\":47\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4232::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4264::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4265::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4246::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:424f::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:424c::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:424d::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4250::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:426b::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4018::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4016::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4017::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4019::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4010::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4011::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:426a::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4025::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4028::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4020::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4021::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:4022::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:4023::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:4024::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7002::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:700b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:700a::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7021::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:7001::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:420d::\",\"prefixLength\":48\r\n },{\r\n \
+ \ \"baseIpAddress\":\"2606:2800:7010::\",\"prefixLength\":48\r\n \
+ \ },{\r\n \"baseIpAddress\":\"2606:2800:420b::\"\
+ ,\"prefixLength\":48\r\n },{\r\n \"baseIpAddress\"\
+ :\"2606:2800:700c::\",\"prefixLength\":48\r\n }\r\n \
+ \ ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['82125']
+ content-length: ['89394']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:39:24 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:08 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_crud.yaml b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_crud.yaml
index 3af21728343..413b2508e72 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_crud.yaml
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_crud.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -20,7 +20,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 08 May 2017 16:54:18 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:22 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -31,11 +31,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints?api-version=2016-10-02
@@ -47,7 +47,7 @@ interactions:
cache-control: [no-cache]
content-length: ['151']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 08 May 2017 16:54:19 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:21 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -58,12 +58,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -73,45 +73,45 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 08 May 2017 16:54:19 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:22 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "sku": {"name": "Standard_Akamai"}}'
+ body: '{"sku": {"name": "Standard_Akamai"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['58']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\
+ \r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/4726657c-cd89-4d79-9e10-7db209a296cf?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/efb88cd2-513f-4691-afda-a7651bc15d37?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['419']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:20 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:24 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -119,22 +119,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/4726657c-cd89-4d79-9e10-7db209a296cf?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/efb88cd2-513f-4691-afda-a7651bc15d37?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:31 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:35 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -150,24 +150,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\
+ \r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['418']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:32 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:35 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -183,11 +184,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints?api-version=2016-10-02
@@ -197,7 +198,7 @@ interactions:
cache-control: [no-cache]
content-length: ['28']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:33 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:37 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -213,12 +214,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -228,46 +229,50 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 08 May 2017 16:54:34 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"isCompressionEnabled": false, "origins":
- [{"properties": {"hostName": "www.example.com", "httpPort": 80, "httpsPort":
- 443}, "name": "origin-0"}], "queryStringCachingBehavior": "IgnoreQueryString",
- "isHttpAllowed": true, "isHttpsAllowed": true}}'
+ body: '{"location": "westus", "properties": {"queryStringCachingBehavior": "IgnoreQueryString",
+ "origins": [{"name": "origin-0", "properties": {"httpsPort": 443, "httpPort":
+ 80, "hostName": "www.example.com"}}], "isCompressionEnabled": false, "isHttpsAllowed":
+ true, "isHttpAllowed": true}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['283']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\":\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/b116d32c-54c1-469f-9688-3aebe4a7df3a?api-version=2016-10-02']
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\"\
+ :\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/9922f0ad-46d0-4798-a6dc-92153d84f3e5?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:35 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:39 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -279,22 +284,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/b116d32c-54c1-469f-9688-3aebe4a7df3a?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/9922f0ad-46d0-4798-a6dc-92153d84f3e5?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:45 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:50 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -310,26 +315,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:46 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:51 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -345,26 +355,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints?api-version=2016-10-02
response:
- body: {string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n
- \ ],\"contentTypesToCompress\":[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n }\r\n ]\r\n}"}
+ body: {string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"endpoint000002\"\
+ ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n\
+ \ },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\"\
+ :\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\"\
+ :\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\"\
+ :true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\"\
+ :null,\"origins\":[\r\n {\r\n \"name\":\"origin-0\",\"\
+ properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\"\
+ :80,\"httpsPort\":443\r\n }\r\n }\r\n ],\"customDomains\"\
+ :[\r\n \r\n ],\"contentTypesToCompress\":[\r\n \r\
+ \n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\"\
+ :[\r\n \r\n ]\r\n }\r\n }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['1039']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:48 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:53 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -380,26 +397,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:49 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:53 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -411,45 +433,50 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"tags": {}, "properties": {"isCompressionEnabled": true, "isHttpsAllowed":
- true, "queryStringCachingBehavior": "IgnoreQueryString", "isHttpAllowed": false,
+ body: '{"tags": {}, "properties": {"queryStringCachingBehavior": "IgnoreQueryString",
"contentTypesToCompress": ["text/plain", "text/html", "text/css", "text/javascript",
- "application/x-javascript", "application/javascript", "application/json", "application/xml"]}}'
+ "application/x-javascript", "application/javascript", "application/json", "application/xml"],
+ "isCompressionEnabled": true, "isHttpsAllowed": true, "isHttpAllowed": false}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['336']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\",\"application/x-javascript\",\"application/javascript\",\"application/json\",\"application/xml\"\r\n
- \ ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/541c715a-5b6f-404f-b5b5-3e2c652ab2e0?api-version=2016-10-02']
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\"\
+ ,\"application/x-javascript\",\"application/javascript\",\"application/json\"\
+ ,\"application/xml\"\r\n ],\"isCompressionEnabled\":true,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/e6a357d3-b5ba-4368-9fd2-3ef486621686?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['1081']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:54:51 GMT']
+ date: ['Tue, 03 Oct 2017 20:38:55 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/541c715a-5b6f-404f-b5b5-3e2c652ab2e0/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/e6a357d3-b5ba-4368-9fd2-3ef486621686/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
x-powered-by: [ASP.NET]
status: {code: 202, message: Accepted}
- request:
@@ -457,22 +484,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/541c715a-5b6f-404f-b5b5-3e2c652ab2e0?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/e6a357d3-b5ba-4368-9fd2-3ef486621686?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:55:01 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:05 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -488,27 +515,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\",\"application/x-javascript\",\"application/javascript\",\"application/json\",\"application/xml\"\r\n
- \ ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\"\
+ ,\"application/x-javascript\",\"application/javascript\",\"application/json\"\
+ ,\"application/xml\"\r\n ],\"isCompressionEnabled\":true,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['1081']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:55:02 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:06 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -524,27 +557,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\",\"application/x-javascript\",\"application/javascript\",\"application/json\",\"application/xml\"\r\n
- \ ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\"\
+ ,\"application/x-javascript\",\"application/javascript\",\"application/json\"\
+ ,\"application/xml\"\r\n ],\"isCompressionEnabled\":true,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['1081']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:55:03 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:06 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -556,45 +595,50 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"tags": {}, "properties": {"isCompressionEnabled": false, "isHttpsAllowed":
- false, "queryStringCachingBehavior": "IgnoreQueryString", "isHttpAllowed": true,
+ body: '{"tags": {}, "properties": {"queryStringCachingBehavior": "IgnoreQueryString",
"contentTypesToCompress": ["text/plain", "text/html", "text/css", "text/javascript",
- "application/x-javascript", "application/javascript", "application/json", "application/xml"]}}'
+ "application/x-javascript", "application/javascript", "application/json", "application/xml"],
+ "isCompressionEnabled": false, "isHttpsAllowed": false, "isHttpAllowed": true}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['337']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":false,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\",\"application/x-javascript\",\"application/javascript\",\"application/json\",\"application/xml\"\r\n
- \ ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7ded88a2-716e-44b7-bb65-af342f3ef667?api-version=2016-10-02']
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":false,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\"\
+ ,\"application/x-javascript\",\"application/javascript\",\"application/json\"\
+ ,\"application/xml\"\r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/38747ff5-998a-4df3-8ca2-1e5aa206344a?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['1082']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:55:04 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:08 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7ded88a2-716e-44b7-bb65-af342f3ef667/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/38747ff5-998a-4df3-8ca2-1e5aa206344a/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
x-powered-by: [ASP.NET]
status: {code: 202, message: Accepted}
- request:
@@ -602,22 +646,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7ded88a2-716e-44b7-bb65-af342f3ef667?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/38747ff5-998a-4df3-8ca2-1e5aa206344a?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:55:15 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:18 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -633,27 +677,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":false,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\",\"application/x-javascript\",\"application/javascript\",\"application/json\",\"application/xml\"\r\n
- \ ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":false,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \"text/plain\",\"text/html\",\"text/css\",\"text/javascript\"\
+ ,\"application/x-javascript\",\"application/javascript\",\"application/json\"\
+ ,\"application/xml\"\r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['1082']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:55:16 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:18 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -669,30 +719,29 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/bffa5e64-5c86-43b5-af1e-b95a4a81a34d?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/e5263f6b-99ee-46ff-9f66-8f13d7e4bf1c?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['0']
- date: ['Mon, 08 May 2017 16:55:17 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:19 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/bffa5e64-5c86-43b5-af1e-b95a4a81a34d/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/e5263f6b-99ee-46ff-9f66-8f13d7e4bf1c/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
x-powered-by: [ASP.NET]
status: {code: 202, message: Accepted}
- request:
@@ -700,22 +749,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/bffa5e64-5c86-43b5-af1e-b95a4a81a34d?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/e5263f6b-99ee-46ff-9f66-8f13d7e4bf1c?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Mon, 08 May 2017 16:55:27 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:31 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -731,13 +780,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.5+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -746,11 +795,10 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Mon, 08 May 2017 16:55:29 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:31 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdXR1NWUFA3R0gzNVVHNE1RUVJZUVhZWUFFUlFSN0tRM0ZISHxDREU4QThFRjJBMTQxQjIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdERlVUMlVNNjJaRk9FSjNaN0dHT04yTTVHT0xOMzdDUTRFS3w3M0YxOEU3NENCM0JBOTBGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
- retry-after: ['15']
strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_load_and_purge.yaml b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_load_and_purge.yaml
index 5891ebe94e7..7d846b2ec0e 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_load_and_purge.yaml
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_load_and_purge.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:41:19 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:38 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:41:19 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:38 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,34 +57,34 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['59']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\
+ \r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/94a9b23a-0ca2-449f-85c5-76c4c861edef?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/811e2de9-ec7a-4b33-8b54-f7658161c7d1?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['420']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:41:20 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:41 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -92,29 +92,27 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/94a9b23a-0ca2-449f-85c5-76c4c861edef?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/811e2de9-ec7a-4b33-8b54-f7658161c7d1?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:41:32 GMT']
+ date: ['Tue, 03 Oct 2017 20:39:52 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
@@ -123,22 +121,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/94a9b23a-0ca2-449f-85c5-76c4c861edef?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/811e2de9-ec7a-4b33-8b54-f7658161c7d1?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:42:02 GMT']
+ date: ['Tue, 03 Oct 2017 20:40:23 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -154,24 +152,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\
+ \r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['419']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:42:03 GMT']
+ date: ['Tue, 03 Oct 2017 20:40:23 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -187,12 +186,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -202,46 +201,50 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:42:04 GMT']
+ date: ['Tue, 03 Oct 2017 20:40:25 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"queryStringCachingBehavior": "IgnoreQueryString", "origins":
- [{"properties": {"hostName": "www.example.com", "httpsPort": 443, "httpPort":
- 80}, "name": "origin-0"}], "isHttpAllowed": true, "isHttpsAllowed": true, "isCompressionEnabled":
- false}, "location": "westus"}'
+ body: '{"location": "westus", "properties": {"queryStringCachingBehavior": "IgnoreQueryString",
+ "origins": [{"name": "origin-0", "properties": {"httpsPort": 443, "httpPort":
+ 80, "hostName": "www.example.com"}}], "isCompressionEnabled": false, "isHttpsAllowed":
+ true, "isHttpAllowed": true}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['283']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\":\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/dbbe9f3d-d81c-46f6-a4cd-1ed6873e1d8e?api-version=2016-10-02']
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\"\
+ :\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/342670b4-4524-4c8a-abc7-ec93c984d299?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:42:07 GMT']
+ date: ['Tue, 03 Oct 2017 20:40:26 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -253,22 +256,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/dbbe9f3d-d81c-46f6-a4cd-1ed6873e1d8e?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/342670b4-4524-4c8a-abc7-ec93c984d299?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:42:18 GMT']
+ date: ['Tue, 03 Oct 2017 20:40:37 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -284,26 +287,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:42:18 GMT']
+ date: ['Tue, 03 Oct 2017 20:40:38 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -319,30 +327,29 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint load]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['55']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/load?api-version=2016-10-02
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['0']
- date: ['Wed, 03 May 2017 21:42:21 GMT']
+ date: ['Tue, 03 Oct 2017 20:40:40 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
x-powered-by: [ASP.NET]
status: {code: 202, message: Accepted}
- request:
@@ -350,22 +357,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint load]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:42:31 GMT']
+ date: ['Tue, 03 Oct 2017 20:40:50 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -381,22 +388,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint load]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:43:02 GMT']
+ date: ['Tue, 03 Oct 2017 20:41:21 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -412,22 +419,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint load]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:43:33 GMT']
+ date: ['Tue, 03 Oct 2017 20:41:52 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -443,22 +450,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint load]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:44:04 GMT']
+ date: ['Tue, 03 Oct 2017 20:42:22 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -474,22 +481,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint load]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:44:35 GMT']
+ date: ['Tue, 03 Oct 2017 20:42:53 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -505,22 +512,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint load]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:45:06 GMT']
+ date: ['Tue, 03 Oct 2017 20:43:24 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -536,22 +543,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint load]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ac4181e4-0bbd-4af8-a20a-e901968858eb?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['77']
+ content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:45:37 GMT']
+ date: ['Tue, 03 Oct 2017 20:43:54 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -563,57 +570,57 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"contentPaths": ["/index.html", "/javascript/*"]}'
+ body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint purge]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/purge?api-version=2016-10-02
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: ''}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/aac161ec-1a07-4f24-99df-92f9cf460a05?api-version=2016-10-02']
cache-control: [no-cache]
- content-length: ['0']
- date: ['Wed, 03 May 2017 21:45:38 GMT']
+ content-length: ['78']
+ content-type: [application/json; odata.metadata=minimal]
+ date: ['Tue, 03 Oct 2017 20:44:25 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/aac161ec-1a07-4f24-99df-92f9cf460a05/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
+ odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
x-powered-by: [ASP.NET]
- status: {code: 202, message: Accepted}
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint purge]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/aac161ec-1a07-4f24-99df-92f9cf460a05?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:45:50 GMT']
+ date: ['Tue, 03 Oct 2017 20:44:56 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -629,22 +636,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint purge]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/aac161ec-1a07-4f24-99df-92f9cf460a05?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:46:21 GMT']
+ date: ['Tue, 03 Oct 2017 20:45:27 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -660,22 +667,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint purge]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/aac161ec-1a07-4f24-99df-92f9cf460a05?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7c9a919d-f168-497f-83f1-95dd3e750b43?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['78']
+ content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:46:52 GMT']
+ date: ['Tue, 03 Oct 2017 20:45:57 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -686,27 +693,57 @@ interactions:
x-aspnet-version: [4.0.30319]
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
+- request:
+ body: '{"contentPaths": ["/index.html", "/javascript/*"]}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/purge?api-version=2016-10-02
+ response:
+ body: {string: ''}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/350c3710-2e3f-459a-90e3-2868a0ef3299?api-version=2016-10-02']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Tue, 03 Oct 2017 20:45:59 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/350c3710-2e3f-459a-90e3-2868a0ef3299/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-powered-by: [ASP.NET]
+ status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint purge]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/aac161ec-1a07-4f24-99df-92f9cf460a05?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/350c3710-2e3f-459a-90e3-2868a0ef3299?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:47:22 GMT']
+ date: ['Tue, 03 Oct 2017 20:46:10 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -722,22 +759,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint purge]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/aac161ec-1a07-4f24-99df-92f9cf460a05?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/350c3710-2e3f-459a-90e3-2868a0ef3299?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['78']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:47:53 GMT']
+ date: ['Tue, 03 Oct 2017 20:46:40 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -753,22 +790,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint purge]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/aac161ec-1a07-4f24-99df-92f9cf460a05?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/350c3710-2e3f-459a-90e3-2868a0ef3299?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:48:24 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:11 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -784,13 +821,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -799,12 +836,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Wed, 03 May 2017 21:48:25 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:12 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdJU0FZUEpYNVBHSkVHNlBBNE5GSkhFQkgzU1FFUzJZR1lKSXwyMkQyNEU2NEVBODQwNzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdWNkZFWjNSQ1JISVBGQkdSUlBUUk1FTEU3T0JKWkpXRFBUQnxEN0Y2MjJCNzc3MjU0QUY2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
- retry-after: ['15']
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1185']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_start_and_stop.yaml b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_start_and_stop.yaml
index cc65c76ea58..0c477557cc7 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_start_and_stop.yaml
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_endpoint_start_and_stop.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:38:28 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:13 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1189']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -46,41 +46,41 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:38:29 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:14 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "sku": {"name": "Standard_Akamai"}}'
+ body: '{"sku": {"name": "Standard_Akamai"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['58']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\
+ \r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/a509b5a2-f373-45c2-bd39-2ae42de27e29?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/8bb5602d-e997-4a96-bf59-d761271bd5ea?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['419']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:38:30 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:15 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -92,22 +92,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/a509b5a2-f373-45c2-bd39-2ae42de27e29?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/8bb5602d-e997-4a96-bf59-d761271bd5ea?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:38:41 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:25 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -123,24 +123,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\
+ \r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['418']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:38:42 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:26 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -156,12 +157,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -171,7 +172,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:38:43 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:27 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -180,41 +181,45 @@ interactions:
- request:
body: '{"location": "westus", "properties": {"queryStringCachingBehavior": "IgnoreQueryString",
"origins": [{"name": "origin-0", "properties": {"httpsPort": 443, "httpPort":
- 80, "hostName": "www.example.com"}}], "isCompressionEnabled": false, "isHttpAllowed":
- true, "isHttpsAllowed": true}}'
+ 80, "hostName": "www.example.com"}}], "isCompressionEnabled": false, "isHttpsAllowed":
+ true, "isHttpAllowed": true}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['283']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\":\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/4a0d5aa4-6ef4-4826-b4c1-08bfd2bca545?api-version=2016-10-02']
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\"\
+ :\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/6ced030b-631d-40fd-8df6-577309b2d02d?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:38:44 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:29 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1193']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -222,22 +227,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/4a0d5aa4-6ef4-4826-b4c1-08bfd2bca545?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/6ced030b-631d-40fd-8df6-577309b2d02d?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:38:55 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:39 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -253,26 +258,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:38:55 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:40 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -288,32 +298,34 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/stop?api-version=2016-10-02
response:
- body: {string: "{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopping\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/159ba2fa-bb3b-4deb-9059-e82342328584?api-version=2016-10-02']
+ body: {string: "{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\"\
+ :null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopping\",\"\
+ isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\"\
+ ,\"httpPort\":80,\"httpsPort\":443\r\n }\r\n }\r\n ],\"customDomains\"\
+ :[\r\n \r\n ],\"contentTypesToCompress\":[\r\n \r\n ],\"isCompressionEnabled\"\
+ :false,\"optimizationType\":null,\"geoFilters\":[\r\n \r\n ]\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7a1a07bc-ed64-4f15-828b-99e6767b117f?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['546']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:38:58 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:42 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/159ba2fa-bb3b-4deb-9059-e82342328584/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7a1a07bc-ed64-4f15-828b-99e6767b117f/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -325,22 +337,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/159ba2fa-bb3b-4deb-9059-e82342328584?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7a1a07bc-ed64-4f15-828b-99e6767b117f?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:39:09 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:52 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -356,26 +368,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopped\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Stopped\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:39:10 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:53 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -391,36 +408,38 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/start?api-version=2016-10-02
response:
- body: {string: "{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Starting\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/f4194ef1-12e6-451f-88e4-9c9863fd35d3?api-version=2016-10-02']
+ body: {string: "{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\"\
+ :null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Starting\",\"\
+ isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\"\
+ ,\"httpPort\":80,\"httpsPort\":443\r\n }\r\n }\r\n ],\"customDomains\"\
+ :[\r\n \r\n ],\"contentTypesToCompress\":[\r\n \r\n ],\"isCompressionEnabled\"\
+ :false,\"optimizationType\":null,\"geoFilters\":[\r\n \r\n ]\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/53860056-7457-453a-8cfa-9905514f949b?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['546']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:39:11 GMT']
+ date: ['Tue, 03 Oct 2017 20:47:54 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/f4194ef1-12e6-451f-88e4-9c9863fd35d3/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/53860056-7457-453a-8cfa-9905514f949b/profileresults/profile123/endpointresults/endpoint000002?api-version=2016-10-02']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
x-powered-by: [ASP.NET]
status: {code: 202, message: Accepted}
- request:
@@ -428,22 +447,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/f4194ef1-12e6-451f-88e4-9c9863fd35d3?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/53860056-7457-453a-8cfa-9905514f949b?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:39:21 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:05 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -459,26 +478,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:39:22 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:06 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -494,13 +518,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -509,12 +533,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Wed, 03 May 2017 21:39:23 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:07 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdSV1hRQ05LRkRFSEM0Q1hWNlpRREtCNzZXT0k2QTJCSlRDSHxBRTVCM0I3NTJFNjQxMTRGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdLQTNWTExVUlNUNkVLNEozSUZZUUZHM1NIVkpDSTJPVkVXWnxBQzcxNjAxOUU5OTVGRjJBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
- retry-after: ['15']
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1174']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_origin_list_and_show.yaml b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_origin_list_and_show.yaml
index 69ea76e6ed9..fba5d4c5124 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_origin_list_and_show.yaml
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_origin_list_and_show.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -20,7 +20,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 22:00:20 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:09 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -31,12 +31,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 22:00:20 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:09 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,34 +57,34 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['58']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\
+ \r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ec08ad16-c6b2-4ab9-89c9-f7e198b399df?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/a812dea0-e0a2-43e0-a75e-8679712c2de4?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['419']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:00:21 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:11 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1188']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -92,22 +92,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ec08ad16-c6b2-4ab9-89c9-f7e198b399df?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/a812dea0-e0a2-43e0-a75e-8679712c2de4?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:00:33 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:22 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -123,24 +123,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\
+ \r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['418']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:00:34 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:22 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -156,12 +157,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -171,46 +172,50 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 22:00:34 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:23 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"isHttpsAllowed": true, "isHttpAllowed":
- true, "queryStringCachingBehavior": "IgnoreQueryString", "isCompressionEnabled":
- false, "origins": [{"name": "origin-0", "properties": {"hostName": "www.example.com",
- "httpsPort": 443, "httpPort": 80}}]}}'
+ body: '{"location": "westus", "properties": {"queryStringCachingBehavior": "IgnoreQueryString",
+ "origins": [{"name": "origin-0", "properties": {"httpsPort": 443, "httpPort":
+ 80, "hostName": "www.example.com"}}], "isCompressionEnabled": false, "isHttpsAllowed":
+ true, "isHttpAllowed": true}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['283']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\":\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Creating\",\"resourceState\"\
+ :\"Creating\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/62730aaf-a17c-4656-b1da-fc44083cd961?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ffb2c2e9-cb21-4ab6-a5f9-042eed471226?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:00:35 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:25 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -222,22 +227,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/62730aaf-a17c-4656-b1da-fc44083cd961?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ffb2c2e9-cb21-4ab6-a5f9-042eed471226?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:00:46 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:36 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -253,26 +258,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\",\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n
- \ {\r\n \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n
- \ \r\n ],\"isCompressionEnabled\":false,\"optimizationType\":null,\"geoFilters\":[\r\n
- \ \r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\":\"endpoint000002\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"properties\":{\r\n \"hostName\":\"endpoint000002.azureedge.net\"\
+ ,\"originHostHeader\":null,\"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\
+ :\"IgnoreQueryString\",\"originPath\":null,\"origins\":[\r\n {\r\n \
+ \ \"name\":\"origin-0\",\"properties\":{\r\n \"hostName\":\"\
+ www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n \
+ \ }\r\n ],\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\"\
+ :[\r\n \r\n ],\"isCompressionEnabled\":false,\"optimizationType\"\
+ :null,\"geoFilters\":[\r\n \r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['939']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:00:47 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:36 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -288,23 +298,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn origin list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/origins?api-version=2016-10-02
response:
- body: {string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"origin-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/origins/origin-0\",\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n
- \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\",\"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n }\r\n ]\r\n}"}
+ body: {string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"origin-0\",\"\
+ id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/origins/origin-0\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n\
+ \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\
+ ,\"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n \
+ \ }\r\n }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['506']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:00:49 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:37 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -320,23 +333,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn origin show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/origins/origin-0?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"origin-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/origins/origin-0\",\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n
- \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\",\"hostName\":\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"origin-0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123/endpoints/endpoint000002/origins/origin-0\"\
+ ,\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n\
+ \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\",\"hostName\"\
+ :\"www.example.com\",\"httpPort\":80,\"httpsPort\":443\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['462']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 22:00:49 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:38 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -352,13 +366,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -367,12 +381,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Wed, 03 May 2017 22:00:49 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:39 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdBTkNRSFBZT0lNM1RHVEJFTlhWNTc2NktLTlJUVEhCT1FYRXxGRTkxNzkxODQ3QUJGMDRELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdUWVFUSjVSUjdQSDVKRzNVVlo2UjVDUllWVkwzMjZNUVJDSHxFMkM3OTlFOUVFODk0NDQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
- retry-after: ['15']
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_profile_crud.yaml b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_profile_crud.yaml
index f2126eeb3c3..f857b9c69f0 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_profile_crud.yaml
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/recordings/latest/test_profile_crud.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -20,22 +20,22 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:39:55 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:39 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1192']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles?api-version=2016-10-02
@@ -45,7 +45,7 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:39:55 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -56,12 +56,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -71,45 +71,45 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 03 May 2017 21:39:55 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "sku": {"name": "Standard_Akamai"}}'
+ body: '{"sku": {"name": "Standard_Akamai"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['58']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\
+ \r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7ff0a958-d61c-409b-9d7f-e8ab9aebe268?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ebd7cd39-3fa8-4e17-887d-0d2d9e2e98ad?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['419']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:39:58 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:44 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -117,22 +117,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/7ff0a958-d61c-409b-9d7f-e8ab9aebe268?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/ebd7cd39-3fa8-4e17-887d-0d2d9e2e98ad?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:40:08 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:54 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -148,24 +148,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\
+ \r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['418']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:40:09 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:55 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -181,24 +182,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles?api-version=2016-10-02
response:
- body: {string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n }\r\n ]\r\n}"}
+ body: {string: "{\r\n \"value\":[\r\n {\r\n \"name\":\"profile123\",\"\
+ id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"\
+ location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n\
+ \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"\
+ resourceState\":\"Active\"\r\n }\r\n }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['478']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:40:11 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:56 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -214,24 +217,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\
+ :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n },\"properties\"\
+ :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\
+ \r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['418']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:40:11 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:57 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -247,35 +251,35 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['24']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \"foo\":\"bar\"\r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \"foo\":\"bar\"\r\n\
+ \ },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\
+ \r\n },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Active\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/9a7fe3f8-35d4-4f17-80c4-29688c9d0c34?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/234b36fd-f26d-45d3-9a58-d504601382fb?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['429']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:40:12 GMT']
+ date: ['Tue, 03 Oct 2017 20:48:58 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/9a7fe3f8-35d4-4f17-80c4-29688c9d0c34/profileresults/profile123?api-version=2016-10-02']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/234b36fd-f26d-45d3-9a58-d504601382fb/profileresults/profile123?api-version=2016-10-02']
odata-version: ['4.0']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1192']
x-powered-by: [ASP.NET]
status: {code: 202, message: Accepted}
- request:
@@ -283,22 +287,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/9a7fe3f8-35d4-4f17-80c4-29688c9d0c34?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/234b36fd-f26d-45d3-9a58-d504601382fb?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:40:22 GMT']
+ date: ['Tue, 03 Oct 2017 20:49:08 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -314,24 +318,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
- body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n
- \ \"foo\":\"bar\"\r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\r\n
- \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"name\":\"profile123\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123\"\
+ ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \"foo\":\"bar\"\r\n\
+ \ },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Akamai\"\
+ \r\n },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\"\
+ :\"Active\"\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['429']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:40:24 GMT']
+ date: ['Tue, 03 Oct 2017 20:49:08 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -347,30 +352,29 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cdn/profiles/profile123?api-version=2016-10-02
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/60cd478c-43fc-48f5-b74c-4c0324ba60b9?api-version=2016-10-02']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/99830609-0cb2-44a1-84f2-fc023a1246d0?api-version=2016-10-02']
cache-control: [no-cache]
content-length: ['0']
- date: ['Wed, 03 May 2017 21:40:25 GMT']
+ date: ['Tue, 03 Oct 2017 20:49:10 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/60cd478c-43fc-48f5-b74c-4c0324ba60b9/profileresults/profile123?api-version=2016-10-02']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/99830609-0cb2-44a1-84f2-fc023a1246d0/profileresults/profile123?api-version=2016-10-02']
pragma: [no-cache]
- retry-after: ['10']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1184']
x-powered-by: [ASP.NET]
status: {code: 202, message: Accepted}
- request:
@@ -378,22 +382,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [cdn profile delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 cdnmanagementclient/0.30.2 Azure-SDK-For-Python AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 cdnmanagementclient/1.0.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/60cd478c-43fc-48f5-b74c-4c0324ba60b9?api-version=2016-10-02
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Cdn/operationresults/99830609-0cb2-44a1-84f2-fc023a1246d0?api-version=2016-10-02
response:
- body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n
- \ }\r\n}"}
+ body: {string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"\
+ None\",\"message\":null\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['77']
content-type: [application/json; odata.metadata=minimal]
- date: ['Wed, 03 May 2017 21:40:35 GMT']
+ date: ['Tue, 03 Oct 2017 20:49:20 GMT']
expires: ['-1']
odata-version: ['4.0']
pragma: [no-cache]
@@ -409,13 +413,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 resourcemanagementclient/1.0.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
@@ -424,12 +428,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Wed, 03 May 2017 21:40:36 GMT']
+ date: ['Tue, 03 Oct 2017 20:49:22 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdRSElNNVhGSldBWUFBSElHVlpURlZWVEpBSE5ONUFEWFdHRnwyREE4NjdGQkVBNUI0QzE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdIMkdERlhNMlhLTEY1QjVCN0lPT1BIMjdXTkdaUUQyQ1pZWnw3RDk2NzU4MEUyOUQ5QTYwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
- retry-after: ['15']
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1180']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/scenario_mixin.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/scenario_mixin.py
index e23b31b7587..79c77aaa170 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/scenario_mixin.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/scenario_mixin.py
@@ -94,9 +94,9 @@ def endpoint_purge_cmd(self, group, name, profile_name, content_paths, checks=No
' '.join(content_paths))
return self.cmd(command, checks)
- def endpoint_list_cmd(self, group, profile_name, checks=None):
+ def endpoint_list_cmd(self, group, profile_name, checks=None, expect_failure=False):
command = 'cdn endpoint list -g {} --profile-name {}'.format(group, profile_name)
- return self.cmd(command, checks)
+ return self.cmd(command, checks, expect_failure=expect_failure)
def endpoint_delete_cmd(self, group, name, profile_name, checks=None):
command = 'cdn endpoint delete -g {} -n {} --profile-name {}'.format(group,
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_endpoint_scenarios.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_endpoint_scenarios.py
index 7e4332f48b3..586580d31b1 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_endpoint_scenarios.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_endpoint_scenarios.py
@@ -10,14 +10,10 @@
class CdnEndpointScenarioTest(CdnScenarioMixin, ScenarioTest):
@ResourceGroupPreparer()
def test_endpoint_crud(self, resource_group):
- from azure.cli.core.util import CLIError
+ from knack.util import CLIError
profile_name = 'profile123'
- error_msg = "Endpoint(s) not found. Please verify the resource(s), group or it's parent " \
- "resources exist."
- with self.assertRaises(CLIError) as missing_profile_error:
- self.endpoint_list_cmd(resource_group, profile_name)
- self.assertEqual(missing_profile_error.exception.args[0], error_msg)
+ self.endpoint_list_cmd(resource_group, profile_name, expect_failure=True)
self.profile_create_cmd(resource_group, profile_name)
list_checks = [JMESPathCheck('length(@)', 0)]
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_nodes_scenarios.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_nodes_scenarios.py
index f219b1a39fa..9a42ae57aa1 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_nodes_scenarios.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_nodes_scenarios.py
@@ -2,10 +2,9 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.testsdk import ScenarioTest, JMESPathCheck
+from azure.cli.testsdk import ScenarioTest
-class CdnEndpointScenarioTest(ScenarioTest):
+class CdnEdgeNodecenarioTest(ScenarioTest):
def test_edge_node_crud(self):
- checks = [JMESPathCheck('value.length(@)', 3)]
- self.cmd('cdn edge-node list', checks=checks)
+ self.cmd('cdn edge-node list', checks=self.check('length(@)', 3))
diff --git a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_validators.py b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_validators.py
index f63ac11944e..e3120361e6b 100644
--- a/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_validators.py
+++ b/src/command_modules/azure-cli-cdn/azure/cli/command_modules/cdn/tests/test_validators.py
@@ -5,7 +5,7 @@
import unittest
import mock
from azure.cli.command_modules.cdn._validators import validate_origin
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
class ValidatorTests(unittest.TestCase):
diff --git a/src/command_modules/azure-cli-cdn/setup.py b/src/command_modules/azure-cli-cdn/setup.py
index cfa7a4f95c1..2a6289ab0f3 100644
--- a/src/command_modules/azure-cli-cdn/setup.py
+++ b/src/command_modules/azure-cli-cdn/setup.py
@@ -34,7 +34,7 @@
]
DEPENDENCIES = [
- 'azure-mgmt-cdn==0.30.2',
+ 'azure-mgmt-cdn==1.0.0',
'azure-cli-core',
]
diff --git a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/__init__.py b/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/__init__.py
index a9c9a5c5671..75dd980f015 100644
--- a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/__init__.py
+++ b/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/__init__.py
@@ -3,12 +3,77 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.util import shell_safe_json_parse
+from azure.cli.core.profiles import API_PROFILES
+from azure.cli.core.sdk.util import CliCommandType
+
+from azure.cli.command_modules.cloud.custom import get_cloud_name_completion_list, get_custom_cloud_name_completion_list
import azure.cli.command_modules.cloud._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.cloud._params # pylint: disable=redefined-outer-name, unused-variable
+class CloudCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ super(CloudCommandsLoader, self).__init__(cli_ctx=cli_ctx)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(CloudCommandsLoader, self).load_command_table(args)
+
+ cloud_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.cloud.custom#{}')
+
+ with self.command_group('cloud', cloud_custom) as g:
+ g.command('list', 'list_clouds')
+ g.command('show', 'show_cloud')
+ g.command('register', 'register_cloud')
+ g.command('unregister', 'unregister_cloud')
+ g.command('set', 'set_cloud')
+ g.command('update', 'modify_cloud')
+ g.command('list-profiles', 'list_profiles')
+
+ return self.command_table
+
+ def load_arguments(self, command):
+
+ super(CloudCommandsLoader, self).load_arguments(command)
+ active_cloud_name = self.cli_ctx.cloud.name
+
+ # pylint: disable=line-too-long
+ with self.argument_context('cloud') as c:
+ c.argument('cloud_name', options_list=('--name', '-n'), help='Name of a registered cloud', completer=get_cloud_name_completion_list)
+ c.argument('profile', help='Profile to use for this cloud', choices=list(API_PROFILES))
+ c.argument('cloud_config', options_list=('--cloud-config',), help='JSON encoded cloud configuration. Use @{file} to load from a file.', type=shell_safe_json_parse)
+ c.argument('endpoint_management', help='The management service endpoint')
+ c.argument('endpoint_resource_manager', help='The resource management endpoint')
+ c.argument('endpoint_sql_management', help='The sql server management endpoint')
+ c.argument('endpoint_gallery', help='The template gallery endpoint')
+ c.argument('endpoint_active_directory', help='The Active Directory login endpoint')
+ c.argument('endpoint_active_directory_resource_id', help='The resource ID to obtain AD tokens for')
+ c.argument('endpoint_active_directory_graph_resource_id', help='The Active Directory resource ID')
+ c.argument('endpoint_active_directory_data_lake_resource_id', help='The Active Directory resource ID for data lake services')
+ c.argument('endpoint_vm_image_alias_doc', help='The uri of the document which caches commonly used virtual machine images')
+ c.argument('suffix_sql_server_hostname', help='The dns suffix for sql servers')
+ c.argument('suffix_storage_endpoint', help='The endpoint suffix for storage accounts')
+ c.argument('suffix_keyvault_dns', help='The Key Vault service dns suffix')
+ c.argument('suffix_azure_datalake_store_file_system_endpoint', help='The Data Lake store filesystem service dns suffix')
+ c.argument('suffix_azure_datalake_analytics_catalog_and_job_endpoint', help='The Data Lake analytics job and catalog service dns suffix')
+
+ with self.argument_context('cloud show') as c:
+ c.argument('cloud_name', help='Name of a registered cloud.', default=active_cloud_name)
+
+ with self.argument_context('cloud update') as c:
+ c.argument('cloud_name', help='Name of a registered cloud.', default=active_cloud_name)
+
+ with self.argument_context('cloud list-profiles') as c:
+ c.argument('cloud_name', help='Name of a registered cloud.', default=active_cloud_name)
+ c.argument('show_all', help='Show all available profiles supported in the CLI.', action='store_true')
+
+ with self.argument_context('cloud register') as c:
+ c.argument('cloud_name', completer=None)
+
+ with self.argument_context('cloud unregister') as c:
+ c.argument('cloud_name', completer=get_custom_cloud_name_completion_list)
-def load_commands():
- import azure.cli.command_modules.cloud.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = CloudCommandsLoader
diff --git a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/_help.py b/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/_help.py
index 05f5bd5df1f..e68d51b496c 100644
--- a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/_help.py
+++ b/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps # pylint: disable=unused-import
+from knack.help_files import helps # pylint: disable=unused-import
helps['cloud'] = """
@@ -22,19 +22,19 @@
"""
helps['cloud register'] = """
- type: command
- short-summary: Register a cloud.
- long-summary: When registering a cloud, specify only the resource manager endpoint for the autodetection of other endpoints.
+ type: command
+ short-summary: Register a cloud.
+ long-summary: When registering a cloud, specify only the resource manager endpoint for the autodetection of other endpoints.
"""
helps['cloud unregister'] = """
- type: command
- short-summary: Unregister a cloud.
+ type: command
+ short-summary: Unregister a cloud.
"""
helps['cloud set'] = """
- type: command
- short-summary: Set the active cloud.
+ type: command
+ short-summary: Set the active cloud.
"""
helps['cloud update'] = """
diff --git a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/_params.py b/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/_params.py
deleted file mode 100644
index d8887a69b56..00000000000
--- a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/_params.py
+++ /dev/null
@@ -1,76 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from azure.cli.core.commands import register_cli_argument
-from azure.cli.core.util import shell_safe_json_parse
-from azure.cli.core.cloud import get_clouds, get_custom_clouds, get_active_cloud_name
-
-from azure.cli.core.profiles import API_PROFILES
-
-
-def get_cloud_name_completion_list(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- return [c.name for c in get_clouds()]
-
-
-def get_custom_cloud_name_completion_list(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- return [c.name for c in get_custom_clouds()]
-
-
-active_cloud_name = get_active_cloud_name()
-
-register_cli_argument('cloud', 'cloud_name', options_list=('--name', '-n'),
- help='Name of a registered cloud',
- completer=get_cloud_name_completion_list)
-
-register_cli_argument('cloud show', 'cloud_name',
- help='Name of a registered cloud.', default=active_cloud_name)
-register_cli_argument('cloud update', 'cloud_name',
- help='Name of a registered cloud.', default=active_cloud_name)
-register_cli_argument('cloud list-profiles', 'cloud_name',
- help='Name of a registered cloud.', default=active_cloud_name)
-register_cli_argument('cloud list-profiles', 'show_all',
- help='Show all available profiles supported in the CLI.', action='store_true')
-
-register_cli_argument('cloud register', 'cloud_name', completer=None)
-
-register_cli_argument('cloud unregister', 'cloud_name',
- completer=get_custom_cloud_name_completion_list)
-
-register_cli_argument('cloud', 'profile',
- help='Profile to use for this cloud',
- choices=list(API_PROFILES))
-
-register_cli_argument('cloud', 'cloud_config', options_list=('--cloud-config',),
- help='JSON encoded cloud configuration. Use @{file} to load from a file.',
- type=shell_safe_json_parse)
-
-register_cli_argument('cloud', 'endpoint_management',
- help='The management service endpoint')
-register_cli_argument('cloud', 'endpoint_resource_manager',
- help='The resource management endpoint')
-register_cli_argument('cloud', 'endpoint_sql_management',
- help='The sql server management endpoint')
-register_cli_argument('cloud', 'endpoint_gallery',
- help='The template gallery endpoint')
-register_cli_argument('cloud', 'endpoint_active_directory',
- help='The Active Directory login endpoint')
-register_cli_argument('cloud', 'endpoint_active_directory_resource_id',
- help='The resource ID to obtain AD tokens for')
-register_cli_argument('cloud', 'endpoint_active_directory_graph_resource_id',
- help='The Active Directory resource ID')
-register_cli_argument('cloud', 'endpoint_active_directory_data_lake_resource_id',
- help='The Active Directory resource ID for data lake services')
-register_cli_argument('cloud', 'endpoint_vm_image_alias_doc',
- help='The uri of the document which caches commonly used virtual machine images')
-register_cli_argument('cloud', 'suffix_sql_server_hostname',
- help='The dns suffix for sql servers')
-register_cli_argument('cloud', 'suffix_storage_endpoint',
- help='The endpoint suffix for storage accounts')
-register_cli_argument('cloud', 'suffix_keyvault_dns',
- help='The Key Vault service dns suffix')
-register_cli_argument('cloud', 'suffix_azure_datalake_store_file_system_endpoint',
- help='The Data Lake store filesystem service dns suffix')
-register_cli_argument('cloud', 'suffix_azure_datalake_analytics_catalog_and_job_endpoint',
- help='The Data Lake analytics job and catalog service dns suffix')
diff --git a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/commands.py b/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/commands.py
deleted file mode 100644
index 88b1f67402c..00000000000
--- a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/commands.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from azure.cli.core.commands import cli_command
-
-cli_command(__name__, 'cloud list', 'azure.cli.command_modules.cloud.custom#list_clouds')
-cli_command(__name__, 'cloud show', 'azure.cli.command_modules.cloud.custom#show_cloud')
-cli_command(__name__, 'cloud register', 'azure.cli.command_modules.cloud.custom#register_cloud')
-cli_command(__name__, 'cloud unregister', 'azure.cli.command_modules.cloud.custom#unregister_cloud')
-cli_command(__name__, 'cloud set', 'azure.cli.command_modules.cloud.custom#set_cloud')
-cli_command(__name__, 'cloud update', 'azure.cli.command_modules.cloud.custom#modify_cloud')
-cli_command(__name__, 'cloud list-profiles', 'azure.cli.command_modules.cloud.custom#list_profiles')
diff --git a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/custom.py b/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/custom.py
index 01579c46b21..019afee9e64 100644
--- a/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/custom.py
+++ b/src/command_modules/azure-cli-cloud/azure/cli/command_modules/cloud/custom.py
@@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
# pylint: disable=unused-argument
-from azure.cli.core.util import CLIError, to_snake_case
+from knack.util import CLIError, to_snake_case
from azure.cli.core.cloud import (Cloud,
get_clouds,
@@ -14,6 +14,7 @@
switch_active_cloud,
update_cloud,
get_active_cloud_name,
+ get_custom_clouds,
CloudAlreadyRegisteredException,
CloudNotRegisteredException,
CannotUnregisterCloudException)
@@ -23,15 +24,23 @@
METADATA_ENDPOINT_SUFFIX = '/metadata/endpoints?api-version=2015-01-01'
-def list_clouds():
- return get_clouds()
+def get_cloud_name_completion_list(cli_ctx, prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
+ return [c.name for c in get_clouds(cli_ctx)]
-def show_cloud(cloud_name=None):
+def get_custom_cloud_name_completion_list(cli_ctx, prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
+ return [c.name for c in get_custom_clouds(cli_ctx)]
+
+
+def list_clouds(cmd):
+ return get_clouds(cmd.cli_ctx)
+
+
+def show_cloud(cmd, cloud_name=None):
if not cloud_name:
- cloud_name = get_active_cloud_name()
+ cloud_name = cmd.cli_ctx.cloud.name
try:
- return get_cloud(cloud_name)
+ return get_cloud(cmd.cli_ctx, cloud_name)
except CloudNotRegisteredException as e:
raise CLIError(e)
@@ -96,7 +105,8 @@ def _build_cloud(cloud_name, cloud_config=None, cloud_args=None):
return c
-def register_cloud(cloud_name,
+def register_cloud(cmd,
+ cloud_name,
cloud_config=None,
profile=None,
endpoint_management=None,
@@ -116,12 +126,13 @@ def register_cloud(cloud_name,
c = _build_cloud(cloud_name, cloud_config=cloud_config,
cloud_args=locals())
try:
- add_cloud(c)
+ add_cloud(cmd.cli_ctx, c)
except CloudAlreadyRegisteredException as e:
raise CLIError(e)
-def modify_cloud(cloud_name=None,
+def modify_cloud(cmd,
+ cloud_name=None,
cloud_config=None,
profile=None,
endpoint_management=None,
@@ -139,35 +150,35 @@ def modify_cloud(cloud_name=None,
suffix_azure_datalake_store_file_system_endpoint=None,
suffix_azure_datalake_analytics_catalog_and_job_endpoint=None):
if not cloud_name:
- cloud_name = get_active_cloud_name()
+ cloud_name = cmd.cli_ctx.cloud.name
c = _build_cloud(cloud_name, cloud_config=cloud_config,
cloud_args=locals())
try:
- update_cloud(c)
+ update_cloud(cmd.cli_ctx, c)
except CloudNotRegisteredException as e:
raise CLIError(e)
-def unregister_cloud(cloud_name):
+def unregister_cloud(cmd, cloud_name):
try:
- return remove_cloud(cloud_name)
+ return remove_cloud(cmd.cli_ctx, cloud_name)
except CloudNotRegisteredException as e:
raise CLIError(e)
except CannotUnregisterCloudException as e:
raise CLIError(e)
-def set_cloud(cloud_name, profile=None):
+def set_cloud(cmd, cloud_name, profile=None):
try:
- switch_active_cloud(cloud_name)
+ switch_active_cloud(cmd.cli_ctx, cloud_name)
if profile:
- modify_cloud(cloud_name=cloud_name, profile=profile)
+ modify_cloud(cmd, cloud_name=cloud_name, profile=profile)
except CloudNotRegisteredException as e:
raise CLIError(e)
-def list_profiles(cloud_name=None, show_all=False):
+def list_profiles(cmd, cloud_name=None, show_all=False):
from azure.cli.core.profiles import API_PROFILES
if not cloud_name:
- cloud_name = get_active_cloud_name()
+ cloud_name = get_active_cloud_name(cmd.cli_ctx.cloud)
return list(API_PROFILES)
diff --git a/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/_help.py b/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/_help.py
index 68726d2b292..1a9ece8ccd4 100644
--- a/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/_help.py
+++ b/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['cognitiveservices'] = """
diff --git a/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/_params.py b/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/_params.py
index a2fe21f56ab..c70d8456a33 100644
--- a/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/_params.py
+++ b/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/_params.py
@@ -2,14 +2,16 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.commands import register_cli_argument, CliArgumentType
+from azure.cli.core.commands import register_cli_argument
from azure.cli.core.commands.parameters import (
tags_type,
resource_group_name_type,
get_resource_name_completion_list)
-name_arg_type = CliArgumentType(options_list=('--name', '-n'), metavar='NAME')
+from knack.arguments import CLIArgumentType
+
+name_arg_type = CLIArgumentType(options_list=('--name', '-n'), metavar='NAME')
register_cli_argument('cognitiveservices', 'account_name',
arg_type=name_arg_type, help='cognitive service account name',
diff --git a/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/custom.py b/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/custom.py
index 62adf0b0cc7..25f518086fe 100644
--- a/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/custom.py
+++ b/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/custom.py
@@ -3,11 +3,9 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
from azure.mgmt.cognitiveservices.models import CognitiveServicesAccountCreateParameters, Sku
-from azure.cli.core.prompting import prompt_y_n
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
-logger = azlogging.get_az_logger(__name__)
+from knack.prompting import prompt_y_n
+from knack.util import CLIError
def listresources(client, resource_group_name=None):
diff --git a/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/tests/test_cognitiveservices_command.py b/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/tests/test_cognitiveservices_command.py
index 55dc6ec1862..d85a7dd4266 100644
--- a/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/tests/test_cognitiveservices_command.py
+++ b/src/command_modules/azure-cli-cognitiveservices/azure/cli/command_modules/cognitiveservices/tests/test_cognitiveservices_command.py
@@ -7,7 +7,7 @@
import unittest
from azure.cli.testsdk import ScenarioTest, JMESPathCheck, ResourceGroupPreparer
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
class CognitiveServicesTests(ScenarioTest):
diff --git a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/__init__.py b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/__init__.py
index 9017dfb1ebc..7e2b1d31cc7 100644
--- a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/__init__.py
+++ b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/__init__.py
@@ -3,12 +3,30 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.sdk.util import CliCommandType
+
import azure.cli.command_modules.component._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.component._params # pylint: disable=redefined-outer-name, unused-variable
+class ComponentCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ component_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.component.custom#{}')
+ super(ComponentCommandsLoader, self).__init__(cli_ctx=cli_ctx,
+ custom_command_type=component_custom)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(ComponentCommandsLoader, self).load_command_table(args)
+ from azure.cli.command_modules.component.commands import load_command_table
+ load_command_table(self, args)
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(ComponentCommandsLoader, self).load_arguments(command)
+ from azure.cli.command_modules.component._params import load_arguments
+ load_arguments(self, command)
-def load_commands():
- import azure.cli.command_modules.component.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = ComponentCommandsLoader
diff --git a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/_help.py b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/_help.py
index 661161fc751..b51fe91512e 100644
--- a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/_help.py
+++ b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['component'] = """
type: group
diff --git a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/_params.py b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/_params.py
index 88359f55c39..87e7e4298b5 100644
--- a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/_params.py
+++ b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/_params.py
@@ -3,12 +3,14 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.commands import register_cli_argument
# pylint: disable=line-too-long
-register_cli_argument('component', 'component_name', options_list=('--name', '-n'), help='Name of component')
-register_cli_argument('component', 'link', options_list=('--link', '-l'), help='If a url or path to an html file, parse for links to archives. If local path or file:// url that\'s a directory, then look for archives in the directory listing.')
-register_cli_argument('component', 'private', help='Include packages from a private server.', action='store_true')
-register_cli_argument('component', 'pre', help='Include pre-release versions', action='store_true')
-register_cli_argument('component', 'additional_components', options_list=('--add',), nargs='+', help='The names of additional components to install (space separated)')
-register_cli_argument('component', 'allow_third_party', options_list=('--allow-third-party',), action='store_true', help='Allow installation of 3rd party command modules. This option is assumed with --private.')
+def load_arguments(self, _):
+
+ with self.argument_context('component') as c:
+ c.argument('component_name', options_list=['--name', '-n'], help='Name of component')
+ c.argument('link', options_list=['--link', '-l'], help='If a url or path to an html file, parse for links to archives. If local path or file:// url that\'s a directory, then look for archives in the directory listing.')
+ c.argument('private', help='Include packages from a private server.', action='store_true')
+ c.argument('pre', help='Include pre-release versions', action='store_true')
+ c.argument('additional_components', options_list=['--add'], nargs='+', help='The names of additional components to install (space separated)')
+ c.argument('allow_third_party', options_list=['--allow-third-party'], action='store_true', help='Allow installation of 3rd party command modules. This option is assumed with --private.')
diff --git a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/commands.py b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/commands.py
index f372b0d653b..9fd35bcbeff 100644
--- a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/commands.py
+++ b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/commands.py
@@ -3,11 +3,12 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-# pylint: disable=line-too-long
-from azure.cli.core.commands import cli_command
+# pylint: disable=line-too-long
+def load_command_table(self, _):
-cli_command(__name__, 'component list', 'azure.cli.command_modules.component.custom#list_components')
-cli_command(__name__, 'component update', 'azure.cli.command_modules.component.custom#update')
-cli_command(__name__, 'component remove', 'azure.cli.command_modules.component.custom#remove')
-cli_command(__name__, 'component list-available', 'azure.cli.command_modules.component.custom#list_available_components')
+ with self.command_group('component') as g:
+ g.custom_command('list', 'list_components')
+ g.custom_command('update', 'update')
+ g.custom_command('remove', 'remove')
+ g.custom_command('list-available', 'list_available_components')
diff --git a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/custom.py b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/custom.py
index 81a4bef69c9..a5e06df6cfb 100644
--- a/src/command_modules/azure-cli-component/azure/cli/command_modules/component/custom.py
+++ b/src/command_modules/azure-cli-component/azure/cli/command_modules/component/custom.py
@@ -6,18 +6,16 @@
import logging
from six import StringIO
-from azure.cli.core.util import CLIError
-from azure.cli.core._config import az_config
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.prompting import prompt_y_n, NoTTYException
+from azure.cli.core.util import COMPONENT_PREFIX, CLI_PACKAGE_NAME
-logger = azlogging.get_az_logger(__name__)
+from knack.log import get_logger
+from knack.util import CLIError
-CLI_PACKAGE_NAME = 'azure-cli'
-COMPONENT_PREFIX = 'azure-cli-'
+logger = get_logger(__name__)
def _deprecate_warning():
+ from knack.prompting import NoTTYException, prompt_y_n
logger.warning("The 'component' commands will be deprecated in the future.")
logger.warning("az component and subcommands may not work unless the CLI is installed with pip.")
try:
@@ -122,7 +120,7 @@ def _installed_in_user():
return False
-def _install_or_update(package_list, link, private, pre):
+def _install_or_update(cli_ctx, package_list, link, private, pre):
import pip
options = ['--isolated', '--disable-pip-version-check', '--upgrade']
if pre:
@@ -131,9 +129,9 @@ def _install_or_update(package_list, link, private, pre):
options.append('--user')
pkg_index_options = ['--find-links', link] if link else []
if private:
- package_index_url = az_config.get('component', 'package_index_url', fallback=None)
- package_index_trusted_host = az_config.get('component', 'package_index_trusted_host',
- fallback=None)
+ package_index_url = cli_ctx.config.get('component', 'package_index_url', fallback=None)
+ package_index_trusted_host = cli_ctx.config.get('component', 'package_index_trusted_host',
+ fallback=None)
if package_index_url:
pkg_index_options += ['--extra-index-url', package_index_url]
else:
@@ -165,11 +163,7 @@ def _verify_additional_components(components, private, allow_third_party):
"third party packages.".format(', '.join(third_party)))
-def update(private=False,
- pre=False,
- link=None,
- additional_components=None,
- allow_third_party=False):
+def update(cmd, private=False, pre=False, link=None, additional_components=None, allow_third_party=False):
""" Update the CLI and all installed components """
_deprecate_warning()
import pip
@@ -183,4 +177,4 @@ def update(private=False,
_verify_additional_components(additional_components, private, allow_third_party)
for c in additional_components:
package_list += [COMPONENT_PREFIX + c]
- _install_or_update(package_list, link, private, pre)
+ _install_or_update(cmd.cli_ctx, package_list, link, private, pre)
diff --git a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/__init__.py b/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/__init__.py
index 900fe4917d3..2b89e53209b 100644
--- a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/__init__.py
+++ b/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/__init__.py
@@ -3,12 +3,33 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.sdk.util import CliCommandType
+
import azure.cli.command_modules.configure._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.configure._params # pylint: disable=redefined-outer-name, unused-variable
+class ConfigureCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ super(ConfigureCommandsLoader, self).__init__(cli_ctx=cli_ctx)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(ConfigureCommandsLoader, self).load_command_table(args)
+
+ configure_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.configure.custom#{}')
+
+ with self.command_group('', configure_custom) as g:
+ g.command('configure', 'handle_configure')
+
+ return self.command_table
+
+ def load_arguments(self, command):
+
+ super(ConfigureCommandsLoader, self).load_arguments(command)
+ with self.argument_context('configure') as c:
+ c.argument('defaults', nargs='+', options_list=('--defaults', '-d'))
-def load_commands():
- import azure.cli.command_modules.configure.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = ConfigureCommandsLoader
diff --git a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/_help.py b/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/_help.py
index 675b67076cf..a31b0e07e1f 100644
--- a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/_help.py
+++ b/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/_help.py
@@ -3,10 +3,19 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['configure'] = """
- type: command
- short-summary: Display and manage the Azure CLI 2.0 configuration. This command is interactive.
+ type: command
+ short-summary: Display and manage the Azure CLI 2.0 configuration. This command is interactive.
+ parameters:
+ - name: --defaults -d
+ short-summary: >
+ Space separated 'name=value' pairs for common argument defaults.
+ examples:
+ - name: Set default resource group, webapp and VM names.
+ text: az configure --defaults group=myRG web=myweb vm=myvm
+ - name: Clear default webapp and VM names.
+ text: az configure --defaults vm='' web=''
"""
diff --git a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/_params.py b/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/_params.py
deleted file mode 100644
index 4f628bc9501..00000000000
--- a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/_params.py
+++ /dev/null
@@ -1,10 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from azure.cli.core.commands import register_cli_argument
-
-# pylint: disable=line-too-long
-register_cli_argument('configure', 'defaults', nargs='+', options_list=('--defaults', '-d'),
- help="space separated 'name=value' pairs for common arguments defaults, e.g. '--defaults group=myRG web=myweb vm=myvm'. Use '' to clear the defaults, e.g. --defaults vm='' web=''")
diff --git a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/commands.py b/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/commands.py
deleted file mode 100644
index 19996865621..00000000000
--- a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/commands.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from azure.cli.core.commands import cli_command
-
-cli_command(__name__, 'configure', 'azure.cli.command_modules.configure.custom#handle_configure')
diff --git a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/custom.py b/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/custom.py
index 86f7ca2c747..275c100cfeb 100644
--- a/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/custom.py
+++ b/src/command_modules/azure-cli-configure/azure/cli/command_modules/configure/custom.py
@@ -7,15 +7,6 @@
import os
from six.moves import configparser
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core._config import (GLOBAL_CONFIG_PATH, ENV_VAR_PREFIX, set_global_config,
- set_global_config_value, DEFAULTS_SECTION, get_config_parser)
-from azure.cli.core.util import CLIError
-from azure.cli.core.prompting import (prompt,
- prompt_y_n,
- prompt_choice_list,
- prompt_pass,
- NoTTYException)
from azure.cli.command_modules.configure._consts import (OUTPUT_LIST, LOGIN_METHOD_LIST,
MSG_INTRO,
MSG_CLOSING,
@@ -29,12 +20,17 @@
MSG_PROMPT_FILE_LOGGING)
from azure.cli.command_modules.configure._utils import get_default_from_config
-logger = azlogging.get_az_logger(__name__)
+from knack.log import get_logger
+from knack.prompting import prompt, prompt_y_n, prompt_choice_list, prompt_pass, NoTTYException
+from knack.util import CLIError
answers = {}
+logger = get_logger(__name__)
+
def _print_cur_configuration(file_config):
+ from azure.cli.core._config import ENV_VAR_PREFIX
print(MSG_HEADING_CURRENT_CONFIG_INFO)
for section in file_config.sections():
print()
@@ -47,14 +43,14 @@ def _print_cur_configuration(file_config):
print('\n'.join(['{} = {}'.format(ev, os.environ[ev]) for ev in env_vars]))
-def _config_env_public_azure(_):
+def _config_env_public_azure(cli_ctx, _):
from adal.adal_error import AdalError
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.resource import ResourceManagementClient
from azure.cli.core._profile import Profile
# Determine if user logged in
try:
- list(get_mgmt_service_client(ResourceManagementClient).resources.list())
+ list(get_mgmt_service_client(cli_ctx, ResourceManagementClient).resources.list())
except CLIError:
# Not logged in
login_successful = False
@@ -62,7 +58,7 @@ def _config_env_public_azure(_):
method_index = prompt_choice_list(MSG_PROMPT_LOGIN, LOGIN_METHOD_LIST)
answers['login_index'] = method_index
answers['login_options'] = str(LOGIN_METHOD_LIST)
- profile = Profile()
+ profile = Profile(cli_ctx)
interactive = False
username = None
password = None
@@ -94,14 +90,12 @@ def _config_env_public_azure(_):
logger.error(err)
-def _handle_global_configuration():
+def _handle_global_configuration(config):
# print location of global configuration
- print(MSG_GLOBAL_SETTINGS_LOCATION.format(GLOBAL_CONFIG_PATH))
+ print(MSG_GLOBAL_SETTINGS_LOCATION.format(config.config_path))
# set up the config parsers
- file_config = get_config_parser()
- config_exists = file_config.read([GLOBAL_CONFIG_PATH])
- global_config = get_config_parser()
- global_config.read(GLOBAL_CONFIG_PATH)
+ file_config = config.config_parser
+ config_exists = file_config.read([config.config_path])
should_modify_global_config = False
if config_exists:
# print current config and prompt to allow global config modification
@@ -111,7 +105,7 @@ def _handle_global_configuration():
if not config_exists or should_modify_global_config:
# no config exists yet so configure global config or user wants to modify global config
output_index = prompt_choice_list(MSG_PROMPT_GLOBAL_OUTPUT, OUTPUT_LIST,
- default=get_default_from_config(global_config,
+ default=get_default_from_config(config.config_parser,
'core', 'output',
OUTPUT_LIST))
answers['output_type_prompt'] = output_index
@@ -121,32 +115,32 @@ def _handle_global_configuration():
answers['telemetry_prompt'] = allow_telemetry
# save the global config
try:
- global_config.add_section('core')
+ config.config_parser.add_section('core')
except configparser.DuplicateSectionError:
pass
try:
- global_config.add_section('logging')
+ config.config_parser.add_section('logging')
except configparser.DuplicateSectionError:
pass
- global_config.set('core', 'output', OUTPUT_LIST[output_index]['name'])
- global_config.set('core', 'collect_telemetry', 'yes' if allow_telemetry else 'no')
- global_config.set('logging', 'enable_log_file', 'yes' if enable_file_logging else 'no')
- set_global_config(global_config)
+ config.set_value('core', 'output', OUTPUT_LIST[output_index]['name'])
+ config.set_value('core', 'collect_telemetry', 'yes' if allow_telemetry else 'no')
+ config.set_value('logging', 'enable_log_file', 'yes' if enable_file_logging else 'no')
-def handle_configure(defaults=None):
+def handle_configure(cmd, defaults=None):
if defaults:
+ from azure.cli.core._config import DEFAULTS_SECTION
for default in defaults:
parts = default.split('=', 1)
if len(parts) == 1:
raise CLIError('usage error: --defaults STRING=STRING STRING=STRING ...')
- set_global_config_value(DEFAULTS_SECTION, parts[0], _normalize_config_value(parts[1]))
+ cmd.cli_ctx.config.set_value(DEFAULTS_SECTION, parts[0], _normalize_config_value(parts[1]))
return
# if nothing supplied, we go interactively
try:
print(MSG_INTRO)
- _handle_global_configuration()
+ _handle_global_configuration(cmd.cli_ctx.config)
print(MSG_CLOSING)
# TODO: log_telemetry('configure', **answers)
except NoTTYException:
diff --git a/src/command_modules/azure-cli-consumption/azure/cli/command_modules/consumption/_exception_handler.py b/src/command_modules/azure-cli-consumption/azure/cli/command_modules/consumption/_exception_handler.py
index 834de04fbae..7430068b97d 100644
--- a/src/command_modules/azure-cli-consumption/azure/cli/command_modules/consumption/_exception_handler.py
+++ b/src/command_modules/azure-cli-consumption/azure/cli/command_modules/consumption/_exception_handler.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
def consumption_exception_handler(ex):
diff --git a/src/command_modules/azure-cli-consumption/azure/cli/command_modules/consumption/_help.py b/src/command_modules/azure-cli-consumption/azure/cli/command_modules/consumption/_help.py
index 804f116e815..63bd6c57e7c 100644
--- a/src/command_modules/azure-cli-consumption/azure/cli/command_modules/consumption/_help.py
+++ b/src/command_modules/azure-cli-consumption/azure/cli/command_modules/consumption/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['consumption'] = """
type: group
diff --git a/src/command_modules/azure-cli-container/azure/cli/command_modules/container/_help.py b/src/command_modules/azure-cli-container/azure/cli/command_modules/container/_help.py
index 582fd8d81cd..81685785248 100644
--- a/src/command_modules/azure-cli-container/azure/cli/command_modules/container/_help.py
+++ b/src/command_modules/azure-cli-container/azure/cli/command_modules/container/_help.py
@@ -3,7 +3,8 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps # pylint: disable=unused-import
+
helps['container'] = """
type: group
diff --git a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_client_factory.py b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_client_factory.py
index 7f14e8ceb0a..dcb9453ab5a 100644
--- a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_client_factory.py
+++ b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_client_factory.py
@@ -4,11 +4,9 @@
# --------------------------------------------------------------------------------------------
import os
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
from azure.cli.core import __version__ as core_version
-logger = azlogging.get_az_logger(__name__)
+from knack.util import CLIError
NO_CREDENTIALS_ERROR_MESSAGE = """
No credentials specified to access Cosmos DB service. Please provide any of the following:
diff --git a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_exception_handler.py b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_exception_handler.py
index 3a32c4280ed..bc0cf3e7231 100644
--- a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_exception_handler.py
+++ b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_exception_handler.py
@@ -4,10 +4,7 @@
# --------------------------------------------------------------------------------------------
import json
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
-
-logger = azlogging.get_az_logger(__name__)
+from knack.util import CLIError
def duplicate_resource_exception_handler(ex):
diff --git a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_help.py b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_help.py
index 7668b43c8b2..51b19547388 100644
--- a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_help.py
+++ b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['cosmosdb'] = """
diff --git a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_params.py b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_params.py
index 4f7f9cf2ddb..eaad96a2202 100644
--- a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_params.py
+++ b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/_params.py
@@ -5,20 +5,17 @@
# pylint: disable=line-too-long
from argcomplete.completers import FilesCompleter
-from azure.cli.core.commands.parameters import (
- get_resource_name_completion_list,
- enum_choice_list,
- name_type,
- ignore_type)
+from azure.cli.core.commands.parameters import get_resource_name_completion_list, name_type
from azure.cli.core.util import shell_safe_json_parse
-from azure.mgmt.cosmosdb.models.cosmos_db_enums import KeyKind
-from azure.mgmt.cosmosdb.models.cosmos_db_enums import DefaultConsistencyLevel
-from azure.mgmt.cosmosdb.models.cosmos_db_enums import DatabaseAccountKind
-from azure.mgmt.cosmosdb.models.failover_policy import FailoverPolicy
-from azure.mgmt.cosmosdb.models.location import Location
-from azure.cli.core.commands import register_cli_argument, CliArgumentType
+from azure.mgmt.documentdb.models.document_db_enums import KeyKind
+from azure.mgmt.documentdb.models.document_db_enums import DefaultConsistencyLevel
+from azure.mgmt.documentdb.models.document_db_enums import DatabaseAccountKind
+from azure.mgmt.documentdb.models.failover_policy import FailoverPolicy
+from azure.mgmt.documentdb.models.location import Location
+
+from knack.arguments import ignore_type, enum_choice_list, CLIArgumentType
def validate_failover_policies(ns):
@@ -72,7 +69,7 @@ def validate_ip_range_filter(ns):
register_cli_argument('cosmosdb update', 'enable_automatic_failover', help='Enables automatic failover of the write region in the rare event that the region is unavailable due to an outage. Automatic failover will result in a new write region for the account and is chosen based on the failover priorities configured for the account.', type=bool)
# database id
-database_id = CliArgumentType(options_list=('--db-name', '-d'), help='Database Name')
+database_id = CLIArgumentType(options_list=('--db-name', '-d'), help='Database Name')
register_cli_argument('cosmosdb database', 'database_id', database_id)
register_cli_argument('cosmosdb collection', 'database_id', database_id)
diff --git a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/custom.py b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/custom.py
index 7f30b5ac7b8..a405b1a94b3 100644
--- a/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/custom.py
+++ b/src/command_modules/azure-cli-cosmosdb/azure/cli/command_modules/cosmosdb/custom.py
@@ -8,11 +8,9 @@
DatabaseAccountCreateUpdateParameters,
Location
)
-from azure.mgmt.cosmosdb.models.cosmos_db_enums import DatabaseAccountKind
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
+from azure.mgmt.documentdb.models.document_db_enums import DatabaseAccountKind
-logger = azlogging.get_az_logger(__name__)
+from knack.util import CLIError
DEFAULT_INDEXING_POLICY = """{
"indexingMode": "consistent",
diff --git a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_help.py b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_help.py
index 5921791a32c..96b497226ff 100644
--- a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_help.py
+++ b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['dla'] = """
diff --git a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_params.py b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_params.py
index 5ce2b7a7eda..2588cff1e49 100644
--- a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_params.py
+++ b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_params.py
@@ -3,13 +3,8 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
from argcomplete.completers import FilesCompleter
-from azure.cli.core.commands import \
- (register_cli_argument, CliArgumentType)
-from azure.cli.core.commands.parameters import \
- (tags_type,
- get_resource_name_completion_list,
- resource_group_name_type,
- enum_choice_list)
+from azure.cli.core.commands import register_cli_argument
+from azure.cli.core.commands.parameters import tags_type, get_resource_name_completion_list, resource_group_name_type
from azure.cli.command_modules.dla._validators import (validate_resource_group_name,
datetime_format,
@@ -27,10 +22,11 @@
JobState,
JobResult)
+from knack.arguments import CLIArgumentType, enum_choice_list
# ARGUMENT DEFINITIONS
# pylint: disable=line-too-long
-datalake_analytics_name_type = CliArgumentType(help='Name of the Data Lake Analytics account.', options_list=('--account_name',), completer=get_resource_name_completion_list('Microsoft.DataLakeAnalytics/accounts'), id_part='name')
+datalake_analytics_name_type = CLIArgumentType(help='Name of the Data Lake Analytics account.', options_list=('--account_name',), completer=get_resource_name_completion_list('Microsoft.DataLakeAnalytics/accounts'), id_part='name')
# PARAMETER REGISTRATIONS
# data lake analytics common params
diff --git a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_validators.py b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_validators.py
index 68e10161ed1..b2d6cb30c03 100644
--- a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_validators.py
+++ b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/_validators.py
@@ -7,8 +7,8 @@
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.datalake.analytics.account import DataLakeAnalyticsAccountManagementClient
-from azure.cli.core.util import CLIError
-from msrestazure.tools import parse_resource_id
+from azure.cli.core.commands.arm import parse_resource_id
+from knack.util import CLIError
# Helpers
diff --git a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/custom.py b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/custom.py
index 7b75a32e93c..3b9f59936ab 100644
--- a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/custom.py
+++ b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/custom.py
@@ -5,7 +5,6 @@
import time
import uuid
-from azure.cli.core.prompting import prompt_pass, NoTTYException
from azure.mgmt.datalake.analytics.account.models import (DataLakeAnalyticsAccountUpdateParameters,
FirewallRule,
DataLakeAnalyticsAccount,
@@ -22,10 +21,9 @@
from azure.mgmt.datalake.analytics.catalog.models import (DataLakeAnalyticsCatalogCredentialCreateParameters,
DataLakeAnalyticsCatalogCredentialUpdateParameters)
from azure.cli.core.commands.client_factory import get_mgmt_service_client
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
-logger = azlogging.get_az_logger(__name__)
+from knack.prompting import prompt_pass, NoTTYException
+from knack.util import CLIError
# account customiaztions
diff --git a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/tests/test_dla_commands.py b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/tests/test_dla_commands.py
index 8beaf516204..323a91051a1 100644
--- a/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/tests/test_dla_commands.py
+++ b/src/command_modules/azure-cli-dla/azure/cli/command_modules/dla/tests/test_dla_commands.py
@@ -12,7 +12,7 @@
import mock
from azure.cli.testsdk.vcr_test_base import (ResourceGroupVCRTestBase, JMESPathCheck)
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
def _mock_get_uuid_str():
diff --git a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_client_factory.py b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_client_factory.py
index d0ff7ceed0c..fc4bc667da9 100644
--- a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_client_factory.py
+++ b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_client_factory.py
@@ -23,9 +23,9 @@ def cf_dls_account_trusted_provider(_):
return get_mgmt_service_client(DataLakeStoreAccountManagementClient).trusted_id_providers
-def cf_dls_filesystem(account_name):
+def cf_dls_filesystem(cli_ctx, account_name):
from azure.datalake.store import core
- profile = Profile()
+ profile = Profile(cli_ctx)
subscription_id = None
cred, subscription_id, _ = profile.get_login_credentials(
subscription_id=subscription_id,
diff --git a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_help.py b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_help.py
index 267ce4dd7d7..c78f1778a45 100644
--- a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_help.py
+++ b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['dls'] = """
diff --git a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_params.py b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_params.py
index 1e55b509af7..a7ba8bde149 100644
--- a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_params.py
+++ b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_params.py
@@ -2,11 +2,9 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.commands import \
- (register_cli_argument, CliArgumentType)
+from azure.cli.core.commands import register_cli_argument
-from azure.cli.core.commands.parameters import \
- (tags_type, get_resource_name_completion_list, resource_group_name_type, enum_choice_list)
+from azure.cli.core.commands.parameters import tags_type, get_resource_name_completion_list, resource_group_name_type
from azure.cli.command_modules.dls._validators import validate_resource_group_name
from azure.mgmt.datalake.store.models.data_lake_store_account_management_client_enums \
@@ -17,9 +15,11 @@
from azure.mgmt.datalake.store.models import (EncryptionConfigType)
+from knack.arguments import CLIArgumentType, enum_choice_list
+
# ARGUMENT DEFINITIONS
# pylint: disable=line-too-long
-datalake_store_name_type = CliArgumentType(help='Name of the Data Lake Store account.', options_list=('--account_name',), completer=get_resource_name_completion_list('Microsoft.DataLakeStore/accounts'), id_part='name')
+datalake_store_name_type = CLIArgumentType(help='Name of the Data Lake Store account.', options_list=('--account_name',), completer=get_resource_name_completion_list('Microsoft.DataLakeStore/accounts'), id_part='name')
# PARAMETER REGISTRATIONS
# global params
diff --git a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_validators.py b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_validators.py
index 6bdfa72719f..b349d9412f9 100644
--- a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_validators.py
+++ b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/_validators.py
@@ -4,8 +4,8 @@
# --------------------------------------------------------------------------------------------
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.datalake.store import DataLakeStoreAccountManagementClient
-from azure.cli.core.util import CLIError
-from msrestazure.tools import parse_resource_id
+from azure.cli.core.commands.arm import parse_resource_id
+from knack.util import CLIError
# Helpers
diff --git a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/custom.py b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/custom.py
index 9b7b1991a7e..bc4826d9a62 100644
--- a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/custom.py
+++ b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/custom.py
@@ -17,12 +17,10 @@
from azure.datalake.store.multithread import (ADLUploader, ADLDownloader)
from azure.cli.command_modules.dls._client_factory import (cf_dls_filesystem)
from azure.cli.core.commands.client_factory import get_mgmt_service_client
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
from azure.cli.core.profiles import ResourceType
from azure.cli.core.application import APPLICATION
-logger = azlogging.get_az_logger(__name__)
+from knack.util import CLIError
def _update_progress(current, total):
diff --git a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/tests/test_dls_commands.py b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/tests/test_dls_commands.py
index 7d0580272e4..661ef3810d5 100644
--- a/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/tests/test_dls_commands.py
+++ b/src/command_modules/azure-cli-dls/azure/cli/command_modules/dls/tests/test_dls_commands.py
@@ -12,7 +12,7 @@
from shutil import rmtree
from msrestazure.azure_exceptions import CloudError
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.testsdk.vcr_test_base import (ResourceGroupVCRTestBase, JMESPathCheck)
diff --git a/src/command_modules/azure-cli-eventgrid/azure/cli/command_modules/eventgrid/_help.py b/src/command_modules/azure-cli-eventgrid/azure/cli/command_modules/eventgrid/_help.py
index 4b84aca7377..afdc26d1598 100644
--- a/src/command_modules/azure-cli-eventgrid/azure/cli/command_modules/eventgrid/_help.py
+++ b/src/command_modules/azure-cli-eventgrid/azure/cli/command_modules/eventgrid/_help.py
@@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
# pylint: disable=line-too-long
-from azure.cli.core.help_files import helps
+from knack.help_files import helps # pylint: disable=unused-import
helps['eventgrid'] = """
diff --git a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/__init__.py b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/__init__.py
index 8d6951171c0..de139844d60 100644
--- a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/__init__.py
+++ b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/__init__.py
@@ -3,12 +3,68 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+import argparse
+from collections import OrderedDict
+
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.sdk.util import CliCommandType
+
import azure.cli.command_modules.extension._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.extension._params # pylint: disable=redefined-outer-name, unused-variable
+class ExtensionCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ super(ExtensionCommandsLoader, self).__init__(cli_ctx=cli_ctx)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(ExtensionCommandsLoader, self).load_command_table(args)
+
+ def ext_add_has_confirmed(command_args):
+ return bool(not command_args.get('source') or prompt_y_n('Are you sure you want to install this extension?'))
+
+ def transform_extension_list_available(results):
+ return [OrderedDict([('Name', r)]) for r in results]
+
+ def validate_extension_add(namespace):
+ if (namespace.extension_name and namespace.source) or (not namespace.extension_name and not namespace.source):
+ raise CLIError("usage error: --name NAME | --source SOURCE")
+
+ extension_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.extension.custom#{}')
+
+ with self.command_group('extension', extension_custom) as g:
+ g.command('add', 'add_extension', confirmation=ext_add_has_confirmed, validator=validate_extension_add)
+ g.command('remove', 'remove_extension')
+ g.command('list', 'list_extensions')
+ g.command('show', 'show_extension')
+ g.command('list-available', 'list_available_extensions', table_transformer=transform_extension_list_available)
+ g.command('update', 'update_extension')
+
+ return self.command_table
+
+ # pylint: disable=line-too-long
+ def load_arguments(self, command):
+ super(ExtensionCommandsLoader, self).load_arguments(command)
+
+ from argcomplete.completers import FilesCompleter
+ from azure.cli.core.extension import get_extension_names
+
+ def extension_name_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
+ return get_extension_names()
+
+ def extension_name_from_index_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
+ return get_index_extensions().keys()
+
+ with self.argument_context('extension') as c:
+ c.argument('extension_name', options_list=['--name', '-n'], help='Name of extension', completer=extension_name_completion_list)
+ # This is a hidden parameter for now
+ c.register('index_url', ('--index',), help=argparse.SUPPRESS)
+
+ with self.argument_context('extension add') as c:
+ c.argument('extension_name', completer=extension_name_from_index_completion_list)
+ c.argument('source', options_list=['--source', '-s'], help='Filepath or URL to an extension', completer=FilesCompleter())
+ c.argument('yes', options_list=['--yes', '-y'], action='store_true', help='Do not prompt for confirmation.')
-def load_commands():
- import azure.cli.command_modules.extension.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = ExtensionCommandsLoader
diff --git a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_help.py b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_help.py
index d0921dda9f6..4d89ed6d4d0 100644
--- a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_help.py
+++ b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['extension'] = """
type: group
diff --git a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_homebrew_patch.py b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_homebrew_patch.py
index 64bbec599ca..7945447624f 100644
--- a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_homebrew_patch.py
+++ b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_homebrew_patch.py
@@ -5,9 +5,9 @@
import os
import sys
-import azure.cli.core.azlogging as azlogging
+from knack.log import get_logger
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
HOMEBREW_CELLAR_PATH = '/usr/local/Cellar/azure-cli/'
diff --git a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_index.py b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_index.py
index 2e220f454dd..97882f514fd 100644
--- a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_index.py
+++ b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_index.py
@@ -4,10 +4,10 @@
# --------------------------------------------------------------------------------------------
import requests
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
+from knack.log import get_logger
+from knack.util import CLIError
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
DEFAULT_INDEX_URL = "https://aka.ms/azure-cli-extension-index-v1"
diff --git a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_params.py b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_params.py
deleted file mode 100644
index df659708888..00000000000
--- a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_params.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-import argparse
-
-from argcomplete.completers import FilesCompleter
-
-from azure.cli.core.util import CLIError
-from azure.cli.core.sdk.util import ParametersContext
-from azure.cli.core.extension import get_extension_names
-from ._index import get_index_extensions
-
-
-def extension_name_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- return get_extension_names()
-
-
-def extension_name_from_index_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- return get_index_extensions().keys()
-
-
-def validate_extension_add(namespace):
- if (namespace.extension_name and namespace.source) or (not namespace.extension_name and not namespace.source):
- raise CLIError("usage error: --name NAME | --source SOURCE")
-
-
-with ParametersContext('extension') as c:
- c.register('extension_name', ('--name', '-n'), help='Name of extension', completer=extension_name_completion_list)
- # This is a hidden parameter for now
- c.register('index_url', ('--index',), help=argparse.SUPPRESS)
-
-with ParametersContext('extension add') as c:
- c.argument('extension_name', completer=extension_name_from_index_completion_list, validator=validate_extension_add)
- c.register('source', ('--source', '-s'), help='Filepath or URL to an extension', completer=FilesCompleter())
- c.register('yes', ('--yes', '-y'), action='store_true', help='Do not prompt for confirmation.')
diff --git a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_resolve.py b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_resolve.py
index 1192595ac47..613cd2229c7 100644
--- a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_resolve.py
+++ b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/_resolve.py
@@ -6,10 +6,9 @@
from pkg_resources import parse_version
from azure.cli.core.extension import ext_compat_with_cli
-import azure.cli.core.azlogging as azlogging
from ._index import get_index_extensions
-logger = azlogging.get_az_logger(__name__)
+from knack.log import get_logger
class NoExtensionCandidatesError(Exception):
diff --git a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/commands.py b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/commands.py
deleted file mode 100644
index 36f94cdb152..00000000000
--- a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/commands.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from collections import OrderedDict
-
-from azure.cli.core.prompting import prompt_y_n
-from azure.cli.core.commands import cli_command
-
-
-def transform_extension_list_available(results):
- return [OrderedDict([('Name', r)]) for r in results]
-
-
-def ext_add_has_confirmed(command_args):
- return bool(not command_args.get('source') or prompt_y_n('Are you sure you want to install this extension?'))
-
-
-cli_command(__name__, 'extension add', 'azure.cli.command_modules.extension.custom#add_extension',
- confirmation=ext_add_has_confirmed)
-cli_command(__name__, 'extension remove', 'azure.cli.command_modules.extension.custom#remove_extension')
-cli_command(__name__, 'extension list', 'azure.cli.command_modules.extension.custom#list_extensions')
-cli_command(__name__, 'extension show', 'azure.cli.command_modules.extension.custom#show_extension')
-cli_command(__name__, 'extension list-available',
- 'azure.cli.command_modules.extension.custom#list_available_extensions',
- table_transformer=transform_extension_list_available)
-cli_command(__name__, 'extension update', 'azure.cli.command_modules.extension.custom#update_extension')
diff --git a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/custom.py b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/custom.py
index 04030a880a1..985883ddb67 100644
--- a/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/custom.py
+++ b/src/command_modules/azure-cli-extension/azure/cli/command_modules/extension/custom.py
@@ -18,13 +18,14 @@
from azure.cli.core.extension import (extension_exists, get_extension_path, get_extensions,
get_extension, ext_compat_with_cli,
WheelExtension, ExtensionNotInstalledException)
-import azure.cli.core.azlogging as azlogging
+
+from knack.log import get_logger
from ._homebrew_patch import HomebrewPipPatch
from ._index import get_index_extensions
from ._resolve import resolve_from_index, NoExtensionCandidatesError
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
OUT_KEY_NAME = 'name'
OUT_KEY_VERSION = 'version'
@@ -132,7 +133,7 @@ def _add_whl_ext(source, ext_sha256=None): # pylint: disable=too-many-statement
raise CLIError('The extension is invalid. Use --debug for more information.')
except CLIError as e:
raise e
- logger.debug('Validation successful on {}'.format(ext_file))
+ logger.debug('Validation successful on %s', ext_file)
# Install with pip
extension_path = get_extension_path(extension_name)
pip_args = ['install', '--target', extension_path, ext_file]
diff --git a/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/__init__.py b/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/__init__.py
index b8232fbdee1..d33173fa517 100644
--- a/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/__init__.py
+++ b/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/__init__.py
@@ -3,12 +3,26 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.sdk.util import CliCommandType
+
import azure.cli.command_modules.feedback._help # pylint: disable=unused-import
-def load_params(_):
- pass
+class FeedbackCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ super(FeedbackCommandsLoader, self).__init__(cli_ctx=cli_ctx)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(FeedbackCommandsLoader, self).load_command_table(args)
+
+ custom_feedback = CliCommandType(operations_tmpl='azure.cli.command_modules.feedback.custom#{}')
+
+ with self.command_group('', custom_feedback) as g:
+ g.command('feedback', 'handle_feedback')
+ return self.command_table
-def load_commands():
- import azure.cli.command_modules.feedback.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = FeedbackCommandsLoader
diff --git a/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/_help.py b/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/_help.py
index b6f2fbc1b40..7576b0540ca 100644
--- a/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/_help.py
+++ b/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['feedback'] = """
type: command
diff --git a/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/commands.py b/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/commands.py
deleted file mode 100644
index a493fb4767d..00000000000
--- a/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/commands.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from azure.cli.core.commands import cli_command
-
-cli_command(__name__, 'feedback', 'azure.cli.command_modules.feedback.custom#handle_feedback')
diff --git a/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/custom.py b/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/custom.py
index 9d92f269d43..b1b562a5d29 100644
--- a/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/custom.py
+++ b/src/command_modules/azure-cli-feedback/azure/cli/command_modules/feedback/custom.py
@@ -7,12 +7,14 @@
import sys
from azure.cli.core import __version__ as core_version
-from azure.cli.core.util import CLIError
-from azure.cli.core.prompting import prompt, NoTTYException
-import azure.cli.core.azlogging as azlogging
+from azure.cli.core.util import COMPONENT_PREFIX
+from knack.log import get_logger
+from knack.prompting import prompt, NoTTYException
+from knack.util import CLIError
+
+logger = get_logger(__name__)
-logger = azlogging.get_az_logger(__name__)
MESSAGES = {
'intro': 'We appreciate your feedback! This survey is only two questions and should take less '
@@ -31,8 +33,6 @@
INSTRUMENTATION_KEY = '02b91c82-6729-4241-befc-e6d02ca4fbba'
EVENT_NAME = 'FeedbackEvent'
-COMPONENT_PREFIX = 'azure-cli-'
-
def _prompt_net_promoter_score():
while True:
diff --git a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_gather_commands.py b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_gather_commands.py
index f35a98f497e..3657790382c 100644
--- a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_gather_commands.py
+++ b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_gather_commands.py
@@ -5,8 +5,7 @@
import yaml
-from azure.cli.core.commands import _update_command_definitions
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
def build_command_table():
@@ -14,7 +13,6 @@ def build_command_table():
cmd_table = commands.get_command_table()
for cmd in cmd_table:
cmd_table[cmd].load_arguments()
- _update_command_definitions(cmd_table)
data = {}
for cmd in cmd_table:
diff --git a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_help.py b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_help.py
index f72caa4b748..86832dc11c5 100644
--- a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_help.py
+++ b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['find'] = """
type: command
diff --git a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_params.py b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_params.py
index ab4133bbdf2..f4e9817e9b2 100644
--- a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_params.py
+++ b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/_params.py
@@ -3,10 +3,11 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.commands import CliArgumentType, register_cli_argument
+from azure.cli.core.commands import register_cli_argument
+from knack.arguments import CLIArgumentType
-query = CliArgumentType(
+query = CLIArgumentType(
options_list=('--search-query', '-q'),
help='Query text to find.',
nargs='+'
diff --git a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/custom.py b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/custom.py
index 4c076cf315b..106ba2435e5 100644
--- a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/custom.py
+++ b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/custom.py
@@ -13,11 +13,8 @@
import six
from azure.cli.command_modules.find._gather_commands import build_command_table
-import azure.cli.core.azlogging as azlogging
from azure.cli.core._environment import get_config_dir
-logger = azlogging.get_az_logger(__name__)
-
INDEX_DIR_PREFIX = 'search_index'
INDEX_VERSION = 'v1'
INDEX_PATH = os.path.join(get_config_dir(), '{}_{}'.format(INDEX_DIR_PREFIX, INDEX_VERSION))
diff --git a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/tests/test_find.py b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/tests/test_find.py
index 568966e6eda..1c3f736bc88 100644
--- a/src/command_modules/azure-cli-find/azure/cli/command_modules/find/tests/test_find.py
+++ b/src/command_modules/azure-cli-find/azure/cli/command_modules/find/tests/test_find.py
@@ -14,7 +14,6 @@
from nose import with_setup
from six import StringIO
-from azure.cli.main import main as cli_main
from azure.cli.command_modules.find.custom import _purge
diff --git a/src/command_modules/azure-cli-interactive/azclishell/__main__.py b/src/command_modules/azure-cli-interactive/azclishell/__main__.py
deleted file mode 100644
index 34f6e3d5028..00000000000
--- a/src/command_modules/azure-cli-interactive/azclishell/__main__.py
+++ /dev/null
@@ -1,82 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from __future__ import print_function
-import os
-
-from prompt_toolkit.history import FileHistory
-
-from azclishell import __version__
-from azclishell._dump_commands import FRESH_TABLE
-import azclishell.configuration
-from azclishell.gather_commands import GatherCommands
-from azclishell.app import Shell
-from azclishell.az_completer import AzCompleter
-from azclishell.az_lexer import AzLexer
-from azclishell.color_styles import style_factory
-from azclishell.frequency_heuristic import frequent_user
-
-from azure.cli.core.application import APPLICATION
-from azure.cli.core._session import ACCOUNT, CONFIG, SESSION
-from azure.cli.core._environment import get_config_dir as cli_config_dir
-from azure.cli.core.commands.client_factory import ENV_ADDITIONAL_USER_AGENT
-import azure.cli.core.azlogging as azlogging
-
-logger = azlogging.get_az_logger(__name__)
-
-
-def main(style=None):
- if APPLICATION.session["az_interactive_active"]:
- logger.warning("You're in the interactive shell already.\n")
- return
-
- os.environ[ENV_ADDITIONAL_USER_AGENT] = 'AZURECLISHELL/' + __version__
-
- azure_folder = cli_config_dir()
- if not os.path.exists(azure_folder):
- os.makedirs(azure_folder)
-
- ACCOUNT.load(os.path.join(azure_folder, 'azureProfile.json'))
- CONFIG.load(os.path.join(azure_folder, 'az.json'))
- SESSION.load(os.path.join(azure_folder, 'az.sess'), max_age=3600)
-
- config = azclishell.configuration.CONFIGURATION
- shell_config_dir = azclishell.configuration.get_config_dir
-
- try:
- commands = GatherCommands()
- az_completer = AzCompleter(commands)
- except IOError: # if there is no cache
- az_completer = None
-
- if style:
- given_style = style
- config.set_style(given_style)
- else:
- given_style = config.get_style()
-
- style_obj = style_factory(given_style)
-
- if config.BOOLEAN_STATES[config.config.get('DEFAULT', 'firsttime')]:
- config.firsttime()
-
- ask_feedback = False
- if not config.has_feedback() and frequent_user:
- print("\n\nAny comments or concerns? You can use the \'feedback\' command!" +
- " We would greatly appreciate it.\n")
- ask_feedback = True
-
- shell_app = Shell(
- completer=az_completer,
- lexer=AzLexer,
- history=FileHistory(
- os.path.join(shell_config_dir(), config.get_history())),
- app=APPLICATION,
- styles=style_obj,
- user_feedback=ask_feedback
- )
- shell_app.app.session["az_interactive_active"] = True
- shell_app.run()
- shell_app.app.session["az_interactive_active"] = False
diff --git a/src/command_modules/azure-cli-interactive/azclishell/_dump_commands.py b/src/command_modules/azure-cli-interactive/azclishell/_dump_commands.py
index 0e60b59fcee..119e1448687 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/_dump_commands.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/_dump_commands.py
@@ -11,12 +11,10 @@
import pkgutil
import yaml
-from azure.cli.core.application import APPLICATION, Configuration
-from azure.cli.core.commands import _update_command_definitions, BLACKLISTED_MODS
-from azure.cli.core.help_files import helps
+from azure.cli.core.commands import BLACKLISTED_MODS
from azure.cli.core.commands.arm import add_id_parameters
-import azclishell.configuration as config
+from knack.help_files import helps
class LoadFreshTable(object):
@@ -24,8 +22,9 @@ class LoadFreshTable(object):
this class generates and dumps the fresh command table into a file
as well as installs all the modules
"""
- def __init__(self):
+ def __init__(self, shell_ctx):
self.command_table = None
+ self.shell_ctx = shell_ctx
def install_modules(self):
installed_command_modules = []
@@ -46,8 +45,9 @@ def install_modules(self):
mod.load_commands()
except Exception: # pylint: disable=broad-except
- print("Error loading: {}".format(mod))
- _update_command_definitions(self.command_table)
+ # print("Error loading: {}".format(mod))
+ pass
+ self.shell_ctx.cli_ctx.invocation.commands_loader.load_arguments(None)
def load_help_files(self, data):
""" loads all the extra information from help files """
@@ -92,11 +92,11 @@ def load_help_files(self, data):
examples.append([example['name'], example['text']])
data[cmd]['examples'] = examples
- def dump_command_table(self):
+ def dump_command_table(self, shell_ctx):
""" dumps the command table """
- self.command_table = APPLICATION.configuration.get_command_table()
- command_file = config.CONFIGURATION.get_help_files()
+ self.command_table = shell_ctx.cli_ctx.invocation.commands_loader.command_table
+ command_file = shell_ctx.config.get_help_files()
self.install_modules()
add_id_parameters(self.command_table)
@@ -145,19 +145,16 @@ def dump_command_table(self):
self.load_help_files(data)
# dump into the cache file
- with open(os.path.join(get_cache_dir(), command_file), 'w') as help_file:
+ with open(os.path.join(get_cache_dir(shell_ctx), command_file), 'w') as help_file:
json.dump(data, help_file)
-def get_cache_dir():
+def get_cache_dir(shell_ctx):
""" gets the location of the cache """
- azure_folder = config.get_config_dir()
+ azure_folder = shell_ctx.config.config_dir
cache_path = os.path.join(azure_folder, 'cache')
if not os.path.exists(azure_folder):
os.makedirs(azure_folder)
if not os.path.exists(cache_path):
os.makedirs(cache_path)
return cache_path
-
-
-FRESH_TABLE = LoadFreshTable()
diff --git a/src/command_modules/azure-cli-interactive/azclishell/app.py b/src/command_modules/azure-cli-interactive/azclishell/app.py
index f2529f2cfd3..440ff2fb272 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/app.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/app.py
@@ -22,78 +22,44 @@
from prompt_toolkit.document import Document
from prompt_toolkit.enums import DEFAULT_BUFFER
from prompt_toolkit.filters import Always
-from prompt_toolkit.history import InMemoryHistory
-from prompt_toolkit.interface import CommandLineInterface, Application
+from prompt_toolkit.history import FileHistory
+from prompt_toolkit.interface import Application
from prompt_toolkit.shortcuts import create_eventloop
-import azclishell.configuration
+from azclishell import __version__
from azclishell.az_completer import AzCompleter
-
-from azclishell.az_lexer import AzLexer, ExampleLexer, ToolbarLexer
+from azclishell.az_lexer import get_az_lexer, ExampleLexer, ToolbarLexer
from azclishell.command_tree import in_tree
-from azclishell.frequency_heuristic import DISPLAY_TIME
+from azclishell.configuration import Configuration, SELECT_SYMBOL
+from azclishell.frequency_heuristic import DISPLAY_TIME, frequency_heuristic
from azclishell.gather_commands import add_new_lines, GatherCommands
-from azclishell.key_bindings import registry, get_section, sub_section
+from azclishell.key_bindings import InteractiveKeyBindings
from azclishell.layout import create_layout, create_tutorial_layout, set_scope
from azclishell.progress import progress_view
-from azclishell.telemetry import SHELL_TELEMETRY as telemetry
+from azclishell.telemetry import Telemetry
from azclishell.threads import LoadCommandTableThread
from azclishell.util import get_window_dim, parse_quotes, get_os_clear_screen_word
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.application import Configuration
-from azure.cli.core.commands import LongRunningOperation, get_op_handler
+from azure.cli.core.commands import LongRunningOperation
+from azure.cli.core.commands.client_factory import ENV_ADDITIONAL_USER_AGENT
from azure.cli.core.cloud import get_active_cloud_name
-from azure.cli.core._config import az_config, DEFAULTS_SECTION
+from azure.cli.core._config import DEFAULTS_SECTION
from azure.cli.core._environment import get_config_dir
from azure.cli.core._profile import _SUBSCRIPTION_NAME, Profile
from azure.cli.core._session import ACCOUNT, CONFIG, SESSION
import azure.cli.core.telemetry as cli_telemetry
-from azure.cli.core.util import (show_version_info_exit, handle_exception)
-from azure.cli.core.util import CLIError
+from azure.cli.core.util import handle_exception
+from knack.log import get_logger
+from knack.util import CLIError
-SHELL_CONFIGURATION = azclishell.configuration.CONFIGURATION
-SHELL_CONFIG_DIR = azclishell.configuration.get_config_dir
NOTIFICATIONS = ""
-PROFILE = Profile()
-SELECT_SYMBOL = azclishell.configuration.SELECT_SYMBOL
PART_SCREEN_EXAMPLE = .3
START_TIME = datetime.datetime.utcnow()
CLEAR_WORD = get_os_clear_screen_word()
-
-def space_examples(list_examples, rows, section_value):
- """ makes the example text """
- examples_with_index = []
-
- for i, _ in list(enumerate(list_examples)):
- if len(list_examples[i]) > 1:
- examples_with_index.append("[" + str(i + 1) + "] " + list_examples[i][0] +
- list_examples[i][1])
-
- example = "".join(exam for exam in examples_with_index)
- num_newline = example.count('\n')
-
- page_number = ''
- if num_newline > rows * PART_SCREEN_EXAMPLE and rows > PART_SCREEN_EXAMPLE * 10:
- len_of_excerpt = math.floor(float(rows) * PART_SCREEN_EXAMPLE)
-
- group = example.split('\n')
- end = int(section_value * len_of_excerpt)
- begin = int((section_value - 1) * len_of_excerpt)
-
- if end < num_newline:
- example = '\n'.join(group[begin:end]) + "\n"
- else:
- # default chops top off
- example = '\n'.join(group[begin:]) + "\n"
- while ((section_value - 1) * len_of_excerpt) > num_newline:
- sub_section()
- page_number = '\n' + str(section_value) + "/" + str(int(math.ceil(num_newline / len_of_excerpt)))
-
- return example + page_number + ' CTRL+Y (^) CTRL+N (v)'
+logger = get_logger(__name__)
def space_toolbar(settings_items, empty_space):
@@ -114,27 +80,35 @@ def space_toolbar(settings_items, empty_space):
return settings, empty_space
-def restart_completer(shell):
- shell.completer = AzCompleter(GatherCommands())
- shell.refresh_cli = True
+def restart_completer(shell_ctx):
+ shell_ctx.completer = AzCompleter(shell_ctx, GatherCommands(shell_ctx.config))
+ shell_ctx.refresh_cli = True
# pylint: disable=too-many-instance-attributes
-class Shell(object):
- """ represents the shell """
-
- def __init__(self, completer=None, styles=None,
- lexer=None, history=InMemoryHistory(),
- app=None, input_custom=sys.stdin, output_custom=None,
- user_feedback=False, intermediate_sleep=.25, final_sleep=4):
- self.styles = styles
- if styles:
- self.lexer = lexer or AzLexer
- else:
- self.lexer = None
- self.app = app
- self.completer = completer
- self.history = history
+class AzInteractiveShell(object):
+
+ def __init__(self, cli_ctx, style=None):
+
+ from azclishell.color_styles import style_factory
+
+ self.cli_ctx = cli_ctx
+ self.config = Configuration(cli_ctx.config)
+ self.config.set_style(style)
+ self.styles = style_factory(self.config.get_style())
+ self.lexer = get_az_lexer(self.config) if self.styles else None
+ try:
+ from azclishell.gather_commands import GatherCommands
+ from azclishell.az_completer import AzCompleter
+ self.completer = AzCompleter(self, GatherCommands(self.config))
+ except IOError: # if there is no cache
+ self.completer = None
+ self.completer = None
+ self.history = FileHistory(os.path.join(self.config.config_dir, self.config.get_history()))
+ os.environ[ENV_ADDITIONAL_USER_AGENT] = 'AZURECLISHELL/' + __version__
+ self.telemetry = Telemetry(self.cli_ctx)
+
+ # OH WHAT FUN TO FIGURE OUT WHAT THESE ARE!
self._cli = None
self.refresh_cli = False
self.layout = None
@@ -144,16 +118,41 @@ def __init__(self, completer=None, styles=None,
self._env = os.environ
self.last = None
self.last_exit = 0
- self.user_feedback = user_feedback
- self.input = input_custom
- self.output = output_custom
+ self.user_feedback = False
+ self.input = sys.stdin
+ self.output = None
self.config_default = ""
self.default_command = ""
self.threads = []
self.curr_thread = None
self.spin_val = -1
- self.intermediate_sleep = intermediate_sleep
- self.final_sleep = final_sleep
+ self.intermediate_sleep = 0.25
+ self.final_sleep = 4
+
+ # try to consolidate state information here...
+ # These came from key bindings...
+ self._section = 1
+ self.is_prompting = False
+ self.is_example_repl = False
+ self.is_showing_default = False
+ self.is_symbols = True
+
+ def __call__(self):
+
+ if self.cli_ctx.data["az_interactive_active"]:
+ logger.warning("You're in the interactive shell already.\n")
+ return
+
+ if self.config.BOOLEAN_STATES[self.config.config.get('DEFAULT', 'firsttime')]:
+ self.config.firsttime()
+
+ if not self.config.has_feedback() and frequency_heuristic(self):
+ print("\n\nAny comments or concerns? You can use the \'feedback\' command!" +
+ " We would greatly appreciate it.\n")
+
+ self.cli_ctx.data["az_interactive_active"] = True
+ self.run()
+ self.cli_ctx.data["az_interactive_active"] = False
@property
def cli(self):
@@ -204,6 +203,37 @@ def on_input_timeout(self, cli):
self._update_toolbar()
cli.request_redraw()
+ def _space_examples(self, list_examples, rows, section_value):
+ """ makes the example text """
+ examples_with_index = []
+
+ for i, _ in list(enumerate(list_examples)):
+ if len(list_examples[i]) > 1:
+ examples_with_index.append("[" + str(i + 1) + "] " + list_examples[i][0] +
+ list_examples[i][1])
+
+ example = "".join(exam for exam in examples_with_index)
+ num_newline = example.count('\n')
+
+ page_number = ''
+ if num_newline > rows * PART_SCREEN_EXAMPLE and rows > PART_SCREEN_EXAMPLE * 10:
+ len_of_excerpt = math.floor(float(rows) * PART_SCREEN_EXAMPLE)
+
+ group = example.split('\n')
+ end = int(section_value * len_of_excerpt)
+ begin = int((section_value - 1) * len_of_excerpt)
+
+ if end < num_newline:
+ example = '\n'.join(group[begin:end]) + "\n"
+ else:
+ # default chops top off
+ example = '\n'.join(group[begin:]) + "\n"
+ while ((section_value - 1) * len_of_excerpt) > num_newline:
+ self._section -= 1
+ page_number = '\n' + str(section_value) + "/" + str(int(math.ceil(num_newline / len_of_excerpt)))
+
+ return example + page_number + ' CTRL+Y (^) CTRL+N (v)'
+
def _update_toolbar(self):
cli = self.cli
_, cols = get_window_dim()
@@ -231,11 +261,12 @@ def _update_toolbar(self):
def _toolbar_info(self):
sub_name = ""
try:
- sub_name = PROFILE.get_subscription()[_SUBSCRIPTION_NAME]
+ profile = Profile(self.cli_ctx)
+ sub_name = profile.get_subscription()[_SUBSCRIPTION_NAME]
except CLIError:
pass
- curr_cloud = "Cloud: {}".format(get_active_cloud_name())
+ curr_cloud = "Cloud: {}".format(self.cli_ctx.cloud)
tool_val = 'Subscription: {}'.format(sub_name) if sub_name else curr_cloud
@@ -282,8 +313,8 @@ def generate_help_text(self, text):
for example in self.completer.command_examples[cmdstp]:
for part in example:
string_example += part
- example = space_examples(
- self.completer.command_examples[cmdstp], rows, get_section())
+ example = self._space_examples(
+ self.completer.command_examples[cmdstp], rows, self._section)
if not any_documentation:
self.description_docs = u''
@@ -291,17 +322,17 @@ def generate_help_text(self, text):
def _update_default_info(self):
try:
- options = az_config.config_parser.options(DEFAULTS_SECTION)
+ options = self.cli_ctx.config.config_parser.options(DEFAULTS_SECTION)
self.config_default = ""
for opt in options:
- self.config_default += opt + ": " + az_config.get(DEFAULTS_SECTION, opt) + " "
+ self.config_default += opt + ": " + self.cli_ctx.config.get(DEFAULTS_SECTION, opt) + " "
except configparser.NoSectionError:
self.config_default = ""
def create_application(self, full_layout=True):
""" makes the application object and the buffers """
if full_layout:
- layout = create_layout(self.lexer, ExampleLexer, ToolbarLexer)
+ layout = create_layout(self, self.lexer, ExampleLexer, ToolbarLexer)
else:
layout = create_tutorial_layout(self.lexer)
@@ -330,13 +361,14 @@ def create_application(self, full_layout=True):
style=self.styles,
buffer=writing_buffer,
on_input_timeout=self.on_input_timeout,
- key_bindings_registry=registry,
+ key_bindings_registry=InteractiveKeyBindings(self).registry,
layout=layout,
buffers=buffers,
)
def create_interface(self):
- """ instantiates the intereface """
+ """ instantiates the interface """
+ from prompt_toolkit.interface import CommandLineInterface
return CommandLineInterface(
application=self.create_application(),
eventloop=create_eventloop())
@@ -397,6 +429,7 @@ def handle_example(self, text, continue_flag):
def example_repl(self, text, example, start_index, continue_flag):
""" REPL for interactive tutorials """
+ from prompt_toolkit.interface import CommandLineInterface
if start_index:
start_index = start_index + 1
@@ -442,7 +475,7 @@ def _special_cases(self, cmd, outside):
args = parse_quotes(cmd)
cmd_stripped = cmd.strip()
if cmd_stripped and cmd.split(' ', 1)[0].lower() == 'az':
- telemetry.track_ssg('az', cmd)
+ self.telemetry.track_ssg('az', cmd)
cmd = ' '.join(cmd.split()[1:])
if self.default_command:
cmd = self.default_command + " " + cmd
@@ -454,8 +487,8 @@ def _special_cases(self, cmd, outside):
outside = True
cmd = 'echo -n "" >' +\
os.path.join(
- SHELL_CONFIG_DIR(),
- SHELL_CONFIGURATION.get_history())
+ self.config.config_dir(),
+ self.config.get_history())
elif cmd_stripped == CLEAR_WORD:
outside = True
cmd = CLEAR_WORD
@@ -466,22 +499,22 @@ def _special_cases(self, cmd, outside):
if cmd.strip() and cmd.split()[0] == 'cd':
self.handle_cd(parse_quotes(cmd))
continue_flag = True
- telemetry.track_ssg('outside', '')
+ self.telemetry.track_ssg('outside', '')
elif cmd_stripped[0] == SELECT_SYMBOL['exit_code']:
meaning = "Success" if self.last_exit == 0 else "Failure"
print(meaning + ": " + str(self.last_exit), file=self.output)
continue_flag = True
- telemetry.track_ssg('exit code', '')
+ self.telemetry.track_ssg('exit code', '')
elif SELECT_SYMBOL['query'] in cmd_stripped and self.last and self.last.result:
continue_flag = self.handle_jmespath_query(args)
- telemetry.track_ssg('query', '')
+ self.telemetry.track_ssg('query', '')
elif args[0] == '--version' or args[0] == '-v':
try:
continue_flag = True
- show_version_info_exit(self.output)
+ self.cli_ctx.show_version()
except SystemExit:
pass
elif "|" in cmd or ">" in cmd:
@@ -491,7 +524,7 @@ def _special_cases(self, cmd, outside):
elif SELECT_SYMBOL['example'] in cmd:
cmd, continue_flag = self.handle_example(cmd, continue_flag)
- telemetry.track_ssg('tutorial', cmd)
+ self.telemetry.track_ssg('tutorial', cmd)
elif len(cmd_stripped) > 2 and SELECT_SYMBOL['scope'] == cmd_stripped[0:2]:
continue_flag, cmd = self.handle_scoping_input(continue_flag, cmd, cmd_stripped)
@@ -567,7 +600,7 @@ def handle_scoping_input(self, continue_flag, cmd, text):
self.set_scope(value)
print("defaulting: " + value, file=self.output)
cmd = cmd.replace(SELECT_SYMBOL['scope'], '')
- telemetry.track_ssg('scope command', value)
+ self.telemetry.track_ssg('scope command', value)
elif SELECT_SYMBOL['unscope'] == default_split[0] and \
len(self.default_command.split()) > 0:
@@ -591,13 +624,12 @@ def cli_execute(self, cmd):
try:
args = parse_quotes(cmd)
- azlogging.configure_logging(args)
if len(args) > 0 and args[0] == 'feedback':
- SHELL_CONFIGURATION.set_feedback('yes')
+ self.config.set_feedback('yes')
self.user_feedback = False
- azure_folder = get_config_dir()
+ azure_folder = self.config.config_dir
if not os.path.exists(azure_folder):
os.makedirs(azure_folder)
ACCOUNT.load(os.path.join(azure_folder, 'azureProfile.json'))
@@ -620,7 +652,7 @@ def cli_execute(self, cmd):
self.threads.append(thread)
result = None
else:
- result = self.app.execute(args)
+ result = self.cli_ctx.invoke(args)
self.last_exit = 0
if result and result.result is not None:
@@ -641,19 +673,15 @@ def cli_execute(self, cmd):
def progress_patch(self, _=False):
""" forces to use the Shell Progress """
- from azure.cli.core.application import APPLICATION
-
from azclishell.progress import ShellProgressView
- APPLICATION.progress_controller.init_progress(ShellProgressView())
- return APPLICATION.progress_controller
+ self.cli_ctx.progress_controller.init_progress(ShellProgressView())
+ return self.cli_ctx.progress_controller
def run(self):
""" starts the REPL """
- telemetry.start()
- from azure.cli.core.application import APPLICATION
- APPLICATION.get_progress_controller = self.progress_patch
+ self.telemetry.start()
+ self.cli_ctx.get_progress_controller = self.progress_patch
- # refresh the cache and completer
self.command_table_thread = LoadCommandTableThread(restart_completer, self)
self.command_table_thread.start()
@@ -672,7 +700,7 @@ def run(self):
cmd = text
outside = False
- except AttributeError:
+ except AttributeError as ex:
# when the user pressed Control D
break
else:
@@ -692,12 +720,11 @@ def run(self):
else:
self.cli_execute(cmd)
# because I catch the sys exit, I have to push out
- cli_telemetry.conclude()
+ self.telemetry.conclude()
except (KeyboardInterrupt, ValueError):
# CTRL C
self.set_prompt()
continue
- print('Have a lovely day!!', file=self.output)
- telemetry.conclude()
+ self.telemetry.conclude()
diff --git a/src/command_modules/azure-cli-interactive/azclishell/az_completer.py b/src/command_modules/azure-cli-interactive/azclishell/az_completer.py
index 27dba719445..17a9a4e2cf1 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/az_completer.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/az_completer.py
@@ -7,7 +7,6 @@
from prompt_toolkit.completion import Completer, Completion
-from azclishell._dump_commands import FRESH_TABLE
import azclishell.configuration
from azclishell.argfinder import ArgsFinder
from azclishell.command_tree import in_tree
@@ -20,7 +19,8 @@
def initialize_command_table_attributes(completer):
- completer.cmdtab = FRESH_TABLE.command_table
+ from azclishell._dump_commands import LoadFreshTable
+ completer.cmdtab = LoadFreshTable(completer.shell_ctx).command_table
if completer.cmdtab:
completer.parser.load_command_table(completer.cmdtab)
completer.argsfinder = ArgsFinder(completer.parser)
@@ -93,7 +93,8 @@ def _get_weight(val):
class AzCompleter(Completer):
""" Completes Azure CLI commands """
- def __init__(self, commands, global_params=True):
+ def __init__(self, shell_ctx, commands, global_params=True):
+ self.shell_ctx = shell_ctx
# dictionary of command to descriptions
self.command_description = commands.descrip
# from a command to a list of parameters
diff --git a/src/command_modules/azure-cli-interactive/azclishell/az_lexer.py b/src/command_modules/azure-cli-interactive/azclishell/az_lexer.py
index 558456adb71..2fc3982c5e0 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/az_lexer.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/az_lexer.py
@@ -8,41 +8,43 @@
from azclishell.gather_commands import GatherCommands
-class AzLexer(RegexLexer):
- """
- A custom lexer for Azure CLI
- """
+def get_az_lexer(config):
- try:
- commands = GatherCommands()
- tokens = {
- 'root': [
- (words(
- tuple(kid.data for kid in commands.command_tree.children),
- prefix=r'\b',
- suffix=r'\b'),
- Keyword), # top level commands
- (words(
- tuple(commands.get_all_subcommands()),
- prefix=r'\b',
- suffix=r'\b'),
- Keyword.Declaration), # all other commands
- (words(
- tuple(param for param in commands.completable_param + commands.global_param),
- prefix=r'',
- suffix=r'\b'),
- Name.Class), # parameters
- (r'.', Keyword), # all else
- (r' .', Keyword),
- ]
- }
- except IOError: # if there is no cache
- tokens = {
- 'root': [
- (r' .', Number),
- (r'.', Number),
- ]
- }
+ class AzLexer(RegexLexer):
+ """
+ A custom lexer for Azure CLI
+ """
+ try:
+ commands = GatherCommands(config)
+ tokens = {
+ 'root': [
+ (words(
+ tuple(kid.data for kid in commands.command_tree.children),
+ prefix=r'\b',
+ suffix=r'\b'),
+ Keyword), # top level commands
+ (words(
+ tuple(commands.get_all_subcommands()),
+ prefix=r'\b',
+ suffix=r'\b'),
+ Keyword.Declaration), # all other commands
+ (words(
+ tuple(param for param in commands.completable_param + commands.global_param),
+ prefix=r'',
+ suffix=r'\b'),
+ Name.Class), # parameters
+ (r'.', Keyword), # all else
+ (r' .', Keyword),
+ ]
+ }
+ except IOError: # if there is no cache
+ tokens = {
+ 'root': [
+ (r' .', Number),
+ (r'.', Number),
+ ]
+ }
+ return AzLexer
class ExampleLexer(RegexLexer):
diff --git a/src/command_modules/azure-cli-interactive/azclishell/configuration.py b/src/command_modules/azure-cli-interactive/azclishell/configuration.py
index 77d5d8e7d3d..26e0d13a00e 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/configuration.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/configuration.py
@@ -6,9 +6,10 @@
import os
-from azure.cli.core._config import az_config, set_global_config_value
from azure.cli.core._help import PRIVACY_STATEMENT
+
from prompt_toolkit import prompt
+
from six.moves import configparser
SELECT_SYMBOL = {
@@ -32,7 +33,6 @@
}
CONFIG_FILE_NAME = 'shell-config'
-
GESTURE_LENGTH = max(len(key) for key in GESTURE_INFO) + 1
@@ -55,11 +55,12 @@ class Configuration(object):
'y': True, 'Y': True, 'n': False, 'N': False}
""" Configuration information """
- def __init__(self):
+ def __init__(self, cli_config):
self.config = configparser.ConfigParser({
'firsttime': 'yes',
'style': 'default'
})
+ self.cli_config = cli_config
self.config.add_section('Help Files')
self.config.add_section('Layout')
self.config.set('Help Files', 'command', 'help_dump.json')
@@ -69,14 +70,15 @@ def __init__(self):
self.config.set('Layout', 'param_description', 'yes')
self.config.set('Layout', 'examples', 'yes')
- azure_folder = get_config_dir()
- if not os.path.exists(azure_folder):
- os.makedirs(azure_folder)
- if not os.path.exists(os.path.join(get_config_dir(), CONFIG_FILE_NAME)):
- with open(os.path.join(get_config_dir(), CONFIG_FILE_NAME), 'w') as config_file:
+ self.config_dir = os.getenv('AZURE_CONFIG_DIR') or os.path.expanduser(os.path.join('~', '.azure-shell'))
+
+ if not os.path.exists(self.config_dir):
+ os.makedirs(self.config_dir)
+ if not os.path.exists(os.path.join(self.config_dir, CONFIG_FILE_NAME)):
+ with open(os.path.join(self.config_dir, CONFIG_FILE_NAME), 'w') as config_file:
self.config.write(config_file)
else:
- with open(os.path.join(get_config_dir(), CONFIG_FILE_NAME), 'r') as config_file:
+ with open(os.path.join(self.config_dir, CONFIG_FILE_NAME), 'r') as config_file:
self.config.readfp(config_file) # pylint: disable=deprecated-method
self.update()
@@ -99,10 +101,10 @@ def load(self, path):
def firsttime(self):
""" sets it as already done"""
self.config.set('DEFAULT', 'firsttime', 'no')
- if az_config.getboolean('core', 'collect_telemetry', fallback=False):
+ if self.config.getboolean('core', 'collect_telemetry', fallback=False):
print(PRIVACY_STATEMENT)
else:
- set_global_config_value('core', 'collect_telemetry', ask_user_for_telemetry())
+ self.cli_config.set_value('core', 'collect_telemetry', ask_user_for_telemetry())
self.update()
@@ -112,11 +114,11 @@ def get_style(self):
def has_feedback(self):
""" returns whether user has given feedback """
- return az_config.getboolean('core', 'given feedback', fallback='false')
+ return self.config.getboolean('core', 'given feedback', fallback='false')
def set_feedback(self, value):
""" sets the feedback in the config """
- set_global_config_value('core', 'given feedback', value)
+ self.cli_config.set_value('core', 'given feedback', value)
def set_style(self, val):
""" sets the style they used """
@@ -124,23 +126,16 @@ def set_style(self, val):
def set_val(self, direct, section, val):
""" set the config values """
- self.config.set(direct, section, val)
- self.update()
+ if val is not None:
+ self.config.set(direct, section, val)
+ self.update()
def update(self):
""" updates the configuration settings """
- with open(os.path.join(get_config_dir(), CONFIG_FILE_NAME), 'w') as config_file:
+ with open(os.path.join(self.config_dir, CONFIG_FILE_NAME), 'w') as config_file:
self.config.write(config_file)
-def get_config_dir():
- """ gets the directory of the configuration """
- if os.getenv('AZURE_CONFIG_DIR'):
- return os.getenv('AZURE_CONFIG_DIR')
- else:
- return os.path.expanduser(os.path.join('~', '.azure-shell'))
-
-
def ask_user_for_telemetry():
""" asks the user for if we can collect telemetry """
answer = " "
@@ -151,6 +146,3 @@ def ask_user_for_telemetry():
answer = 'yes'
return answer
-
-
-CONFIGURATION = Configuration()
diff --git a/src/command_modules/azure-cli-interactive/azclishell/frequency_heuristic.py b/src/command_modules/azure-cli-interactive/azclishell/frequency_heuristic.py
index eafabb4e679..d323679020c 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/frequency_heuristic.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/frequency_heuristic.py
@@ -7,15 +7,9 @@
import datetime
import json
-from azure.cli.core._config import set_global_config_value
-
-from azclishell.configuration import CONFIGURATION, get_config_dir as shell_config
-
-SHELL_CONFIG = CONFIGURATION
DAYS_AGO = 28
ACTIVE_STATUS = 5
DISPLAY_TIME = 20
-FREQUENCY_PATH = os.path.join(shell_config(), SHELL_CONFIG.get_frequency())
def day_format(now):
@@ -23,10 +17,11 @@ def day_format(now):
return now.strftime("%Y-%m-%d")
-def update_frequency():
+def update_frequency(shell_ctx):
""" updates the frequency from files """
- if os.path.exists(FREQUENCY_PATH):
- with open(FREQUENCY_PATH, 'r') as freq:
+ frequency_path = os.path.join(shell_ctx.config.config_dir, shell_ctx.config.get_frequency())
+ if os.path.exists(frequency_path):
+ with open(frequency_path, 'r') as freq:
try:
frequency = json.load(freq)
except ValueError:
@@ -34,7 +29,7 @@ def update_frequency():
else:
frequency = {}
- with open(FREQUENCY_PATH, 'w') as freq:
+ with open(frequency_path, 'w') as freq:
now = day_format(datetime.datetime.utcnow())
val = frequency.get(now)
frequency[now] = val + 1 if val else 1
@@ -43,9 +38,9 @@ def update_frequency():
return frequency
-def frequency_measurement():
+def frequency_measurement(shell_ctx):
""" measures how many times a user has used this program in the last calendar week """
- freq = update_frequency()
+ freq = update_frequency(shell_ctx)
count = 0
base = datetime.datetime.utcnow()
date_list = [base - datetime.timedelta(days=x) for x in range(0, DAYS_AGO)]
@@ -55,9 +50,6 @@ def frequency_measurement():
return count
-def frequency_heuristic():
+def frequency_heuristic(shell_ctx):
""" decides whether user meets requirements for frequency """
- return frequency_measurement() >= ACTIVE_STATUS
-
-
-frequent_user = frequency_heuristic()
+ return frequency_measurement(shell_ctx) >= ACTIVE_STATUS
diff --git a/src/command_modules/azure-cli-interactive/azclishell/gather_commands.py b/src/command_modules/azure-cli-interactive/azclishell/gather_commands.py
index b79540955b6..1b6d47d3ffe 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/gather_commands.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/gather_commands.py
@@ -12,8 +12,6 @@
from azclishell.util import get_window_dim
-CONFIGURATION = azclishell.configuration.CONFIGURATION
-
TOLERANCE = 10
GLOBAL_PARAM_DESCRIPTIONS = {
@@ -71,7 +69,7 @@ def add_new_lines(long_phrase, line_min=None, tolerance=TOLERANCE):
# pylint: disable=too-many-instance-attributes
class GatherCommands(object):
""" grabs all the cached commands from files """
- def __init__(self):
+ def __init__(self, config):
# everything that is completable
self.completable = []
# a completable to the description of what is does
@@ -91,7 +89,7 @@ def __init__(self):
self.output_options = OUTPUT_OPTIONS
self.global_param = GLOBAL_PARAM
- self.gather_from_files()
+ self._gather_from_files(config)
def add_exit(self):
""" adds the exits from the application """
@@ -107,10 +105,10 @@ def add_exit(self):
self.command_param["quit"] = ""
self.command_param["exit"] = ""
- def gather_from_files(self):
+ def _gather_from_files(self, config):
""" gathers from the files in a way that is convienent to use """
- command_file = CONFIGURATION.get_help_files()
- cache_path = os.path.join(azclishell.configuration.get_config_dir(), 'cache')
+ command_file = config.get_help_files()
+ cache_path = os.path.join(config.config_dir, 'cache')
cols = _get_window_columns()
with open(os.path.join(cache_path, command_file), 'r') as help_file:
diff --git a/src/command_modules/azure-cli-interactive/azclishell/key_bindings.py b/src/command_modules/azure-cli-interactive/azclishell/key_bindings.py
index 42ba669477f..d6ae29fa5d1 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/key_bindings.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/key_bindings.py
@@ -11,141 +11,101 @@
from prompt_toolkit.key_binding.manager import KeyBindingManager
import azclishell.configuration
-from azclishell.telemetry import SHELL_TELEMETRY as shell_telemetry
-manager = KeyBindingManager(
- enable_system_bindings=True,
- enable_auto_suggest_bindings=True,
- enable_abort_and_exit_bindings=True
-)
-
-registry = manager.registry
-
-_SECTION = 1
-
-PROMPTING = False
-EXAMPLE_REPL = False
-SHOW_DEFAULT = False
-SYMBOLS = False
-
-
-# pylint: disable=too-few-public-methods
-class _PromptFilter(Filter):
- def __call__(self, *a, **kw):
- return not PROMPTING
-
-
-# pylint: disable=too-few-public-methods
-class _ExampleFilter(Filter):
- def __call__(self, *a, **kw):
- return not EXAMPLE_REPL
-
-
-@registry.add_binding(Keys.ControlD, eager=True)
-def exit_(event):
- """ exits the program when Control D is pressed """
- shell_telemetry.track_key('ControlD')
- event.cli.set_return_value(None)
-
-
-@registry.add_binding(Keys.Enter, filter=_PromptFilter() & _ExampleFilter())
-def enter_(event):
- """ Sends the command to the terminal"""
- event.cli.set_return_value(event.cli.current_buffer)
-
-
-@registry.add_binding(Keys.ControlY, eager=True)
-def pan_up(event):
- """ Pans the example pan up"""
- global _SECTION
- shell_telemetry.track_key('ControlY')
-
- if _SECTION > 1:
- _SECTION -= 1
-
-
-@registry.add_binding(Keys.ControlN, eager=True)
-def pan_down(event):
- """ Pans the example pan down"""
- global _SECTION
- shell_telemetry.track_key('ControlN')
-
- if _SECTION < 10:
- _SECTION += 1
-
-
-@registry.add_binding(Keys.F1, eager=True)
-def config_settings(event):
- """ opens the configuration """
- global PROMPTING
- shell_telemetry.track_key('F1')
-
- PROMPTING = True
- config = azclishell.configuration.CONFIGURATION
- answer = ""
- questions = {
- "Do you want command descriptions": "command_description",
- "Do you want parameter descriptions": "param_description",
- "Do you want examples": "examples"
- }
- for question in questions:
- while answer.lower() != 'y' and answer.lower() != 'n':
- answer = prompt(u'\n%s (y/n): ' % question)
- config.set_val('Layout', questions[question], format_response(answer))
- answer = ""
-
- PROMPTING = False
- print("\nPlease restart the interactive mode for changes to take effect.\n\n")
- event.cli.set_return_value(event.cli.current_buffer)
-
-
-@registry.add_binding(Keys.F2, eager=True)
-def toggle_default(event):
- """ shows the defaults"""
- global SHOW_DEFAULT
- shell_telemetry.track_key('F2')
-
- SHOW_DEFAULT = not SHOW_DEFAULT
-
-
-@registry.add_binding(Keys.F3, eager=True)
-def toggle_symbols(event):
- """ shows the symbol bindings"""
- global SYMBOLS
- shell_telemetry.track_key('F3')
-
- SYMBOLS = not SYMBOLS
-
-
-def get_symbols():
- """ gets the symbols """
- return SYMBOLS
-
-
-def get_show_default():
- """ gets the defaults """
- return SHOW_DEFAULT
-
-
-def format_response(response):
- """ formats a response in a binary """
- conversion = azclishell.configuration.CONFIGURATION.BOOLEAN_STATES
- if response in conversion:
- if conversion[response]:
- return 'yes'
+class InteractiveKeyBindings(object):
+
+ def __init__(self, shell_ctx):
+
+ manager = KeyBindingManager(
+ enable_system_bindings=True,
+ enable_auto_suggest_bindings=True,
+ enable_abort_and_exit_bindings=True
+ )
+ self.shell_ctx = shell_ctx
+ self.registry = manager.registry
+
+ # pylint: disable=too-few-public-methods
+ class _PromptFilter(Filter):
+ def __call__(self, *a, **kw):
+ return not shell_ctx.is_prompting
+
+ # pylint: disable=too-few-public-methods
+ class _ExampleFilter(Filter):
+ def __call__(self, *a, **kw):
+ return not shell_ctx.is_example_repl
+
+ @self.registry.add_binding(Keys.ControlD, eager=True)
+ def exit_(event):
+ """ exits the program when Control D is pressed """
+ shell_ctx.telemetry.track_key('ControlD')
+ event.cli.set_return_value(None)
+
+ @self.registry.add_binding(Keys.Enter, filter=_PromptFilter() & _ExampleFilter())
+ def enter_(event):
+ """ Sends the command to the terminal"""
+ event.cli.set_return_value(event.cli.current_buffer)
+
+ @self.registry.add_binding(Keys.ControlY, eager=True)
+ def pan_up(event):
+ """ Pans the example pan up"""
+ shell_ctx.telemetry.track_key('ControlY')
+
+ if shell_ctx._section > 1:
+ shell_ctx._section -= 1
+
+ @self.registry.add_binding(Keys.ControlN, eager=True)
+ def pan_down(event):
+ """ Pans the example pan down"""
+ shell_ctx.telemetry.track_key('ControlN')
+
+ if shell_ctx._section < 10:
+ shell_ctx._section += 1
+
+ @self.registry.add_binding(Keys.F1, eager=True)
+ def config_settings(event):
+ """ opens the configuration """
+ shell_ctx.telemetry.track_key('F1')
+
+ shell_ctx.is_prompting = True
+ config = shell_ctx.config
+ answer = ""
+ questions = {
+ "Do you want command descriptions": "command_description",
+ "Do you want parameter descriptions": "param_description",
+ "Do you want examples": "examples"
+ }
+ for question in questions:
+ while answer.lower() != 'y' and answer.lower() != 'n':
+ answer = prompt(u'\n%s (y/n): ' % question)
+ config.set_val('Layout', questions[question], self.format_response(answer))
+ answer = ""
+
+ shell_ctx.is_prompting = False
+ print("\nPlease restart the interactive mode for changes to take effect.\n\n")
+ event.cli.set_return_value(event.cli.current_buffer)
+
+ @self.registry.add_binding(Keys.F2, eager=True)
+ def toggle_default(event):
+ """ shows the defaults"""
+ shell_ctx.telemetry.track_key('F2')
+
+ shell_ctx.is_showing_default = not shell_ctx.is_showing_default
+
+ @self.registry.add_binding(Keys.F3, eager=True)
+ def toggle_symbols(event):
+ """ shows the symbol bindings"""
+ shell_ctx.telemetry.track_key('F3')
+
+ shell_ctx.is_symbols = not shell_ctx.is_symbols
+
+ def format_response(self, response):
+ """ formats a response in a binary """
+ conversion = self.shell_ctx.config.BOOLEAN_STATES
+ if response in conversion:
+ if conversion[response]:
+ return 'yes'
+ else:
+ return 'no'
else:
- return 'no'
- else:
- raise ValueError('Invalid response: input should equate to true or false')
-
-
-def get_section():
- """ gets which section to display """
- return _SECTION
-
-
-def sub_section():
- """ subtracts which section so not to overflow """
- global _SECTION
- _SECTION -= 1
+ raise ValueError('Invalid response: input should equate to true or false')
diff --git a/src/command_modules/azure-cli-interactive/azclishell/layout.py b/src/command_modules/azure-cli-interactive/azclishell/layout.py
index 36ff6539d0c..a3ce6b22a52 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/layout.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/layout.py
@@ -21,7 +21,6 @@
from pygments.lexer import Lexer as PygLex
import azclishell.configuration
-from azclishell.key_bindings import get_show_default, get_symbols
from azclishell.progress import get_progress_message, get_done
MAX_COMPLETION = 16
@@ -54,15 +53,21 @@ def __call__(self, *a, **kw):
# pylint: disable=too-few-public-methods
class ShowDefault(Filter):
""" toggle on and off seeing the default """
+ def __init__(self, shell_ctx):
+ self.shell_ctx = shell_ctx
+
def __call__(self, *a, **kw):
- return get_show_default()
+ return self.shell_ctx.is_showing_default
# pylint: disable=too-few-public-methods
class ShowSymbol(Filter):
""" toggle showing the symbols """
+ def __init__(self, shell_ctx):
+ self.shell_ctx = shell_ctx
+
def __call__(self, *a, **kw):
- return get_symbols()
+ return self.shell_ctx.is_symbols
# pylint: disable=too-few-public-methods
@@ -167,9 +172,8 @@ def create_tutorial_layout(lex):
return layout_full
-def create_layout(lex, exam_lex, toolbar_lex):
+def create_layout(shell_ctx, lex, exam_lex, toolbar_lex):
""" creates the layout """
- config = azclishell.configuration.CONFIGURATION
lexer, exam_lex, toolbar_lex = get_lexers(lex, exam_lex, toolbar_lex)
if not any(isinstance(processor, DefaultPrompt) for processor in input_processors):
@@ -177,14 +181,14 @@ def create_layout(lex, exam_lex, toolbar_lex):
layout_lower = ConditionalContainer(
HSplit([
- get_anyhline(config),
- get_descriptions(config, exam_lex, lexer),
- get_examplehline(config),
- get_example(config, exam_lex),
+ get_anyhline(shell_ctx.config),
+ get_descriptions(shell_ctx.config, exam_lex, lexer),
+ get_examplehline(shell_ctx.config),
+ get_example(shell_ctx.config, exam_lex),
ConditionalContainer(
get_hline(),
- filter=ShowDefault() | ShowSymbol()
+ filter=ShowDefault(shell_ctx) | ShowSymbol(shell_ctx)
),
ConditionalContainer(
Window(
@@ -193,11 +197,11 @@ def create_layout(lex, exam_lex, toolbar_lex):
lexer=lexer
)
),
- filter=ShowDefault()
+ filter=ShowDefault(shell_ctx)
),
ConditionalContainer(
get_hline(),
- filter=ShowDefault() & ShowSymbol()
+ filter=ShowDefault(shell_ctx) & ShowSymbol(shell_ctx)
),
ConditionalContainer(
Window(
@@ -206,7 +210,7 @@ def create_layout(lex, exam_lex, toolbar_lex):
lexer=exam_lex
)
),
- filter=ShowSymbol()
+ filter=ShowSymbol(shell_ctx)
),
ConditionalContainer(
Window(
diff --git a/src/command_modules/azure-cli-interactive/azclishell/telemetry.py b/src/command_modules/azure-cli-interactive/azclishell/telemetry.py
index d302d3e71c6..43ad2bb816c 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/telemetry.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/telemetry.py
@@ -31,15 +31,15 @@ def set_custom_properties(prop, name, value):
class Telemetry(TelemetryClient):
""" base telemetry sessions """
- def __init__(self, instrumentation_key, telemetry_channel=None):
- super(Telemetry, self).__init__(instrumentation_key, telemetry_channel)
+ def __init__(self, cli_ctx):
+ super(Telemetry, self).__init__(INSTRUMENTATION_KEY, None)
self.start_time = None
self.end_time = None
- enable(instrumentation_key)
+ enable(INSTRUMENTATION_KEY)
# adding context
self.context.application.id = 'Azure CLI Shell'
self.context.application.ver = __version__
- self.context.user.id = Profile().get_installation_id()
+ self.context.user.id = Profile(cli_ctx).get_installation_id()
self.context.instrumentation_key = INSTRUMENTATION_KEY
def _track_event(self, name, properties=None, measurements=None):
@@ -92,10 +92,8 @@ def scrub(text):
return ' '.join(values)
-SHELL_TELEMETRY = Telemetry(INSTRUMENTATION_KEY)
-
-
-if __name__ == '__main__':
- # If user doesn't agree to upload telemetry, this scripts won't be executed. The caller should control.
- SHELL_TELEMETRY.track_event('az/interactive/run', json.loads(sys.argv[1]))
- SHELL_TELEMETRY.flush()
+# TODO: restore this wonky telemetry thing...
+# if __name__ == '__main__':
+# # If user doesn't agree to upload telemetry, this scripts won't be executed. The caller should control.
+# SHELL_TELEMETRY.track_event('az/interactive/run', json.loads(sys.argv[1]))
+# SHELL_TELEMETRY.flush()
diff --git a/src/command_modules/azure-cli-interactive/azclishell/threads.py b/src/command_modules/azure-cli-interactive/azclishell/threads.py
index 4c3c63a9ea5..f5f88cdf9d4 100644
--- a/src/command_modules/azure-cli-interactive/azclishell/threads.py
+++ b/src/command_modules/azure-cli-interactive/azclishell/threads.py
@@ -15,11 +15,11 @@ def __init__(self, target, shell):
self.daemon = True
def run(self):
- from azclishell._dump_commands import FRESH_TABLE
+ from azclishell._dump_commands import LoadFreshTable
from azclishell.az_completer import initialize_command_table_attributes
try:
- FRESH_TABLE.dump_command_table()
+ LoadFreshTable(self.shell).dump_command_table(self.shell)
except KeyboardInterrupt:
pass
self.initialize_function(self.shell)
diff --git a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/__init__.py b/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/__init__.py
index 9bbbf657e61..da7a7696e64 100644
--- a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/__init__.py
+++ b/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/__init__.py
@@ -3,12 +3,45 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-import azure.cli.command_modules.interactive._help # pylint: disable=unused-import
+from azure.cli.core import AzCommandsLoader
-def load_params(_):
- import azure.cli.command_modules.interactive._params # pylint: disable=redefined-outer-name, unused-variable
+from knack.help_files import helps
-def load_commands():
- import azure.cli.command_modules.interactive.commands # pylint: disable=redefined-outer-name, unused-variable
+def start_shell(cmd, style=None):
+ from azclishell.app import AzInteractiveShell
+ AzInteractiveShell(cmd.cli_ctx, style)()
+
+
+helps['interactive'] = """
+ type: command
+ short-summary: Start interactive mode.
+ long-summary: >
+ For more information on interactive mode, see: https://azure.microsoft.com/en-us/blog/welcome-to-azure-cli-shell/
+ """
+
+
+class InteractiveCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ super(InteractiveCommandsLoader, self).__init__(cli_ctx=cli_ctx)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(InteractiveCommandsLoader, self).load_command_table(args)
+
+ with self.command_group('', operations_tmpl='azure.cli.command_modules.interactive#{}') as g:
+ g.command('interactive', 'start_shell')
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(InteractiveCommandsLoader, self).load_arguments(command)
+
+ from azclishell.color_styles import get_options as style_options
+
+ with self.argument_context('interactive') as c:
+ c.argument('style', options_list=['--style', '-s'], help='The colors of the shell.',
+ choices=style_options())
+
+COMMAND_LOADER_CLS = InteractiveCommandsLoader
diff --git a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/_help.py b/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/_help.py
deleted file mode 100644
index c44a0cac450..00000000000
--- a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/_help.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from azure.cli.core.help_files import helps
-
-helps['interactive'] = """
- type: command
- short-summary: Start interactive mode.
- long-summary: >
- For more information on interactive mode, see: https://azure.microsoft.com/en-us/blog/welcome-to-azure-cli-shell/
- """
diff --git a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/_params.py b/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/_params.py
deleted file mode 100644
index 58aa6a43c82..00000000000
--- a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/_params.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-# pylint: disable=line-too-long
-
-from azure.cli.core.commands import register_cli_argument
-
-from azclishell.color_styles import get_options as style_options
-
-register_cli_argument('interactive', 'style', options_list=('--style', '-s'),
- help='The colors of the shell.', choices=style_options())
diff --git a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/commands.py b/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/commands.py
deleted file mode 100644
index 1249f472b25..00000000000
--- a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/commands.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from azure.cli.core.commands import cli_command
-
-cli_command(__name__,
- 'interactive', 'azure.cli.command_modules.interactive.custom#start_shell')
diff --git a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/custom.py b/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/custom.py
deleted file mode 100644
index a962054b21e..00000000000
--- a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/custom.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-import azure.cli.core.azlogging as azlogging
-
-
-logger = azlogging.get_az_logger(__name__)
-
-
-def start_shell(style=None):
- from azclishell.__main__ import main
- main(style=style)
diff --git a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/tests/test_query_injection.py b/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/tests/test_query_injection.py
index 3bdd14b5a91..746d509042a 100644
--- a/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/tests/test_query_injection.py
+++ b/src/command_modules/azure-cli-interactive/azure/cli/command_modules/interactive/tests/test_query_injection.py
@@ -15,7 +15,7 @@ def pass_gather(_):
pass
-GatherCommands.gather_from_files = pass_gather
+GatherCommands._gather_from_files = pass_gather
# pylint: disable=too-few-public-methods
diff --git a/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_help.py b/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_help.py
index 00c6aa1417b..42991682cf3 100644
--- a/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_help.py
+++ b/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_help.py
@@ -3,9 +3,11 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
+
from ._constants import certificate_help
+
helps['iot'] = """
type: group
short-summary: (PREVIEW) Manage Internet of Things (IoT) assets.
diff --git a/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_params.py b/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_params.py
index 3145d93e8fc..befdd30df7b 100644
--- a/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_params.py
+++ b/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/_params.py
@@ -4,10 +4,12 @@
# --------------------------------------------------------------------------------------------
from argcomplete.completers import FilesCompleter
-from azure.cli.core.commands.parameters import (location_type, enum_choice_list, file_type,
- get_resource_name_completion_list, CliArgumentType)
+from azure.cli.core.commands.parameters import (location_type, file_type, get_resource_name_completion_list)
from azure.cli.core.commands import register_cli_argument
from azure.mgmt.iothub.models.iot_hub_client_enums import IotHubSku
+
+from knack.arguments import CLIArgumentType, enum_choice_list
+
from ._factory import iot_hub_service_factory
from .custom import iot_device_list, KeyType, SimpleAccessRights
from ._validators import validate_policy_permissions
@@ -20,7 +22,7 @@ def get_device_id_completion_list(prefix, action, parsed_args,
iot_device_list(client, parsed_args.hub_name, top=100)] if parsed_args.hub_name else []
-hub_name_type = CliArgumentType(
+hub_name_type = CLIArgumentType(
completer=get_resource_name_completion_list('Microsoft.Devices/IotHubs'),
help='IoT Hub name.')
diff --git a/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/commands.py b/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/commands.py
index 7fc921f4a67..f1fea5e809b 100644
--- a/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/commands.py
+++ b/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/commands.py
@@ -5,7 +5,7 @@
from azure.cli.core.commands import cli_command
-from azure.cli.core.commands.arm import cli_generic_update_command
+from azure.cli.core.commands.arm import _cli_generic_update_command
from azure.cli.core.commands import LongRunningOperation
from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
from ._factory import iot_hub_service_factory as factory
@@ -53,7 +53,7 @@ def __call__(self, poller):
cli_command(__name__, 'iot hub show-connection-string',
custom_path.format('iot_hub_show_connection_string'), factory)
cli_command(__name__, 'iot hub show', custom_path.format('iot_hub_get'), factory)
- cli_generic_update_command(__name__, 'iot hub update', custom_path.format('iot_hub_get'),
+ _cli_generic_update_command(__name__, 'iot hub update', custom_path.format('iot_hub_get'),
custom_path.format('iot_hub_update'), factory)
cli_command(__name__, 'iot hub delete', custom_path.format('iot_hub_delete'), factory,
transform=HubDeleteResultTransform())
@@ -85,7 +85,7 @@ def __call__(self, poller):
cli_command(__name__, 'iot device show-connection-string',
custom_path.format('iot_device_show_connection_string'), factory)
cli_command(__name__, 'iot device show', custom_path.format('iot_device_get'), factory)
- cli_generic_update_command(__name__, 'iot device update', custom_path.format('iot_device_get'),
+ _cli_generic_update_command(__name__, 'iot device update', custom_path.format('iot_device_get'),
custom_path.format('iot_device_update'), factory)
cli_command(__name__, 'iot device delete', custom_path.format('iot_device_delete'), factory)
cli_command(__name__, 'iot device message send', custom_path.format('iot_device_send_message'),
diff --git a/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/custom.py b/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/custom.py
index a483ab593c5..d4870e7696b 100644
--- a/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/custom.py
+++ b/src/command_modules/azure-cli-iot/azure/cli/command_modules/iot/custom.py
@@ -7,7 +7,7 @@
from __future__ import print_function
from os.path import exists
from enum import Enum
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.mgmt.iothub.models.iot_hub_client_enums import IotHubSku, AccessRights
from azure.mgmt.iothub.models.iot_hub_description import IotHubDescription
from azure.mgmt.iothub.models.iot_hub_sku_info import IotHubSkuInfo
diff --git a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_command_type.py b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_command_type.py
index 7d532f785a2..af057e22dee 100644
--- a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_command_type.py
+++ b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_command_type.py
@@ -11,10 +11,9 @@
CliCommand,
LongRunningOperation,
get_op_handler)
-from azure.cli.core.commands._introspection import \
- (extract_full_summary_from_signature, extract_args_from_signature)
-from azure.cli.core.util import CLIError
+from knack.introspection import extract_full_summary_from_signature, extract_args_from_signature
+from knack.util import CLIError
def _encode_hex(item):
diff --git a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_help.py b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_help.py
index 257ba5e1a14..0cb88580c94 100644
--- a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_help.py
+++ b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['keyvault'] = """
diff --git a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_params.py b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_params.py
index 7d880d36356..a4f05f73b93 100644
--- a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_params.py
+++ b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_params.py
@@ -7,13 +7,12 @@
from azure.mgmt.keyvault.models.key_vault_management_client_enums import \
(SkuName, KeyPermissions, SecretPermissions, CertificatePermissions)
-from azure.cli.core.commands import \
- (register_cli_argument, register_extra_cli_argument, CliArgumentType)
+from azure.cli.core.commands import register_cli_argument, register_extra_cli_argument
import azure.cli.core.commands.arm # pylint: disable=unused-import
from azure.cli.core.commands.validators import get_default_location_from_resource_group
from azure.cli.core.commands.parameters import (
get_resource_name_completion_list, resource_group_name_type,
- tags_type, ignore_type, enum_choice_list, file_type, three_state_flag)
+ tags_type, file_type, get_three_state_flag)
from azure.cli.core._profile import Profile
from azure.cli.core.util import get_json_object
from azure.keyvault import KeyVaultClient, KeyVaultAuthentication
@@ -31,6 +30,8 @@
process_secret_set_namespace,
secret_text_encoding_values, secret_binary_encoding_values)
+from knack.arguments import enum_choice_list, ignore_type, CLIArgumentType
+
# COMPLETERS
@@ -84,10 +85,10 @@ def register_attributes_argument(scope, name, attr_class, create=False, ignore=N
if create:
register_extra_cli_argument(scope, 'disabled',
help='Create {} in disabled state.'.format(name),
- **three_state_flag())
+ arg_type=get_three_state_flag())
else:
register_extra_cli_argument(scope, 'enabled', help='Enable the {}.'.format(name),
- **three_state_flag())
+ arg_type=get_three_state_flag())
if 'expires' not in ignore:
register_extra_cli_argument(scope, 'expires', default=None,
help='Expiration UTC datetime (Y-m-d\'T\'H:M:S\'Z\').',
@@ -101,7 +102,7 @@ def register_attributes_argument(scope, name, attr_class, create=False, ignore=N
# ARGUMENT DEFINITIONS
-vault_name_type = CliArgumentType(help='Name of the key vault.',
+vault_name_type = CLIArgumentType(help='Name of the key vault.',
options_list=('--vault-name',),
metavar='NAME',
completer=get_resource_name_completion_list(
@@ -125,17 +126,17 @@ def register_attributes_argument(scope, name, attr_class, create=False, ignore=N
register_cli_argument('keyvault', 'enabled_for_deployment',
help='Allow Virtual Machines to retrieve certificates stored as secrets from '
'the vault.',
- **three_state_flag())
+ arg_type=get_three_state_flag())
register_cli_argument('keyvault', 'enabled_for_disk_encryption',
help='Allow Disk Encryption to retrieve secrets from the vault and unwrap '
'keys.',
- **three_state_flag())
+ arg_type=get_three_state_flag())
register_cli_argument('keyvault', 'enabled_for_template_deployment',
help='Allow Resource Manager to retrieve secrets from the vault.',
- **three_state_flag())
+ arg_type=get_three_state_flag())
register_cli_argument('keyvault', 'enable_soft_delete',
help='Enable vault deletion recovery for the vault, and all contained entities',
- **three_state_flag())
+ arg_type=get_three_state_flag())
register_cli_argument('keyvault create', 'resource_group_name', resource_group_name_type,
required=True, completer=None, validator=None)
@@ -144,7 +145,7 @@ def register_attributes_argument(scope, name, attr_class, create=False, ignore=N
register_cli_argument('keyvault create', 'no_self_perms',
help="Don't add permissions for the current user/service principal in the "
"new vault",
- **three_state_flag())
+ arg_type=get_three_state_flag())
register_cli_argument('keyvault create', 'location',
validator=get_default_location_from_resource_group)
@@ -278,7 +279,7 @@ def register_attributes_argument(scope, name, attr_class, create=False, ignore=N
help="If the private key in certificate is encrypted, the password used for "
"encryption.")
register_extra_cli_argument('keyvault certificate import', 'disabled',
- help='Import the certificate in disabled state.', **three_state_flag())
+ help='Import the certificate in disabled state.', arg_type=get_three_state_flag())
register_cli_argument('keyvault certificate download', 'file_path', options_list=('--file', '-f'),
type=file_type, completer=FilesCompleter(),
@@ -315,9 +316,9 @@ def register_attributes_argument(scope, name, attr_class, create=False, ignore=N
register_cli_argument('keyvault certificate issuer', 'issuer_name', help='Certificate issuer name.')
register_cli_argument('keyvault certificate issuer', 'disabled',
- help='Set issuer to disabled state.', **three_state_flag())
+ help='Set issuer to disabled state.', arg_type=get_three_state_flag())
register_cli_argument('keyvault certificate issuer', 'enabled', help='Set issuer enabled state.',
- **three_state_flag())
+ arg_type=get_three_state_flag())
register_cli_argument('keyvault certificate issuer', 'account_id', arg_group='Issuer Credential')
register_cli_argument('keyvault certificate issuer', 'password', arg_group='Issuer Credential')
register_cli_argument('keyvault certificate issuer', 'organization_id',
diff --git a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_validators.py b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_validators.py
index c077e0589da..37784de1c02 100644
--- a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_validators.py
+++ b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/_validators.py
@@ -9,11 +9,14 @@
from datetime import datetime
import re
+from azure.keyvault.models import JsonWebKeyOperation
+
from azure.mgmt.keyvault import KeyVaultManagementClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.commands.validators import validate_tags
-from azure.cli.core.util import CLIError
+
+from knack.util import CLIError
from msrestazure.tools import parse_resource_id
diff --git a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/commands.py b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/commands.py
index d1c7d7c571b..e2bd3a88ce3 100644
--- a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/commands.py
+++ b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/commands.py
@@ -5,7 +5,7 @@
from azure.cli.core.commands import cli_command
-from azure.cli.core.commands.arm import cli_generic_update_command
+from azure.cli.core.commands.arm import _cli_generic_update_command
from azure.cli.core.util import empty_on_404
from ._client_factory import keyvault_client_factory, keyvault_client_vaults_factory
@@ -34,7 +34,7 @@
cli_command(__name__, 'keyvault list-deleted', mgmt_path.format('VaultsOperations.list_deleted'),
keyvault_client_vaults_factory)
-cli_generic_update_command(__name__,
+_cli_generic_update_command(__name__,
'keyvault update',
mgmt_path.format('VaultsOperations.get'),
custom_path.format('update_keyvault_setter'),
diff --git a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/custom.py b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/custom.py
index 12790df4c80..abd48c6af10 100644
--- a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/custom.py
+++ b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/custom.py
@@ -11,34 +11,19 @@
from OpenSSL import crypto
from msrestazure.azure_exceptions import CloudError
-from azure.keyvault.models import (CertificateAttributes,
- CertificatePolicy,
- IssuerParameters,
- KeyProperties,
- LifetimeAction,
- SecretProperties,
- X509CertificateProperties,
- SubjectAlternativeNames,
- Trigger,
- Action)
-from azure.keyvault.models import ActionType, KeyUsageType
-from azure.mgmt.keyvault.models import (VaultProperties,
- AccessPolicyEntry,
- Permissions,
- CertificatePermissions,
- KeyPermissions,
- SecretPermissions,
- StoragePermissions,
- Sku,
- SkuName)
+from azure.keyvault import KeyVaultClient
+from azure.keyvault.models import \
+ (Action, ActionType, KeyUsageType, CertificateAttributes, CertificatePolicy, IssuerParameters,
+ KeyProperties, LifetimeAction, SecretProperties, X509CertificateProperties, SubjectAlternativeNames, Trigger)
+from azure.mgmt.keyvault.models import \
+ (VaultProperties, AccessPolicyEntry, Permissions, CertificatePermissions, KeyPermissions, SecretPermissions,
+ StoragePermissions, Sku, SkuName)
from azure.graphrbac import GraphRbacManagementClient
+
import azure.cli.core.telemetry as telemetry
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
-from azure.keyvault import KeyVaultClient
from azure.cli.command_modules.keyvault._validators import secret_text_encoding_values
-logger = azlogging.get_az_logger(__name__)
+from knack.util import CLIError
def _default_certificate_profile():
diff --git a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/tests/test_keyvault_commands.py b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/tests/test_keyvault_commands.py
index 5c9a34224be..7b12845bafd 100644
--- a/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/tests/test_keyvault_commands.py
+++ b/src/command_modules/azure-cli-keyvault/azure/cli/command_modules/keyvault/tests/test_keyvault_commands.py
@@ -13,8 +13,9 @@
from azure.cli.command_modules.keyvault.custom import _asn1_to_iso8601
-from azure.cli.core.util import CLIError
-from azure.cli.testsdk import ScenarioTest, JMESPathCheck, NoneCheck, ResourceGroupPreparer
+from knack.util import CLIError
+from azure.cli.testsdk.vcr_test_base import (ResourceGroupVCRTestBase, JMESPathCheck,
+ NoneCheck)
from azure.cli.command_modules.keyvault._params import secret_encoding_values
diff --git a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/__init__.py b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/__init__.py
index e2c8464832c..187fbeab3e4 100644
--- a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/__init__.py
+++ b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/__init__.py
@@ -7,7 +7,7 @@
def load_params(_):
- import azure.cli.command_modules.lab.params # pylint: disable=redefined-outer-name, unused-variable
+ import azure.cli.command_modules.lab._params # pylint: disable=redefined-outer-name, unused-variable
def load_commands():
diff --git a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/_help.py b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/_help.py
index a78473fd97f..ef34915c1de 100644
--- a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/_help.py
+++ b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['lab'] = """
diff --git a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/params.py b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/_params.py
similarity index 100%
rename from src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/params.py
rename to src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/_params.py
diff --git a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/test_validators.py b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/test_validators.py
index b55b5413319..72f45fa746f 100644
--- a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/test_validators.py
+++ b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/tests/test_validators.py
@@ -4,8 +4,8 @@
# --------------------------------------------------------------------------------------------
import unittest
-from azure.cli.core.util import CLIError
-from msrestazure.tools import is_valid_resource_id
+from knack.util import CLIError
+from azure.cli.core.commands.arm import is_valid_resource_id
from azure.cli.command_modules.lab.validators import (_update_artifacts)
diff --git a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/validators.py b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/validators.py
index ec7d886fdc4..e4187d50344 100644
--- a/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/validators.py
+++ b/src/command_modules/azure-cli-lab/azure/cli/command_modules/lab/validators.py
@@ -7,19 +7,15 @@
import datetime
import dateutil.parser
from msrestazure.azure_exceptions import CloudError
-from msrestazure.tools import resource_id, is_valid_resource_id
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.mgmt.devtestlabs.models.gallery_image_reference import GalleryImageReference
from azure.mgmt.devtestlabs.models.network_interface_properties import NetworkInterfaceProperties
from azure.mgmt.devtestlabs.models.shared_public_ip_address_configuration import \
SharedPublicIpAddressConfiguration
from azure.mgmt.devtestlabs.models.inbound_nat_rule import InboundNatRule
from azure.graphrbac import GraphRbacManagementClient
-import azure.cli.core.azlogging as azlogging
from ._client_factory import (get_devtestlabs_management_client)
-logger = azlogging.get_az_logger(__name__)
-
# Odata filter for name
ODATA_NAME_FILTER = "name eq '{}'"
@@ -420,7 +416,7 @@ def validate_authentication_type(namespace, formula=None):
if not namespace.admin_password:
# prompt for admin password if not supplied
- from azure.cli.core.prompting import prompt_pass, NoTTYException
+ from knack.prompting import prompt_pass, NoTTYException
try:
namespace.admin_password = prompt_pass('Admin Password: ', confirm=True)
except NoTTYException:
diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/__init__.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/__init__.py
index f84ac0b8c90..3499945b1a9 100644
--- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/__init__.py
+++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/__init__.py
@@ -7,7 +7,7 @@
def load_params(_):
- import azure.cli.command_modules.monitor.params # pylint: disable=redefined-outer-name, unused-variable
+ import azure.cli.command_modules.monitor._params # pylint: disable=redefined-outer-name, unused-variable
def load_commands():
diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_exception_handler.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_exception_handler.py
index 6d8680ad602..f6da9bf7582 100644
--- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_exception_handler.py
+++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_exception_handler.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
def monitor_exception_handler(ex):
diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_help.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_help.py
index 6a48d0d2f46..1cf83e19255 100644
--- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_help.py
+++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
# pylint: disable=line-too-long, too-many-lines
diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/params.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_params.py
similarity index 95%
rename from src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/params.py
rename to src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_params.py
index 4235e53b900..72adf1d1485 100644
--- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/params.py
+++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/_params.py
@@ -6,10 +6,8 @@
from azure.cli.core.sdk.util import ParametersContext
from azure.cli.core.util import get_json_object
-from azure.cli.core.commands import \
- (CliArgumentType, register_cli_argument, register_extra_cli_argument)
-from azure.cli.core.commands.parameters import \
- (location_type, enum_choice_list, tags_type, three_state_flag)
+from azure.cli.core.commands import register_cli_argument, register_extra_cli_argument
+from azure.cli.core.commands.parameters import location_type, tags_type, get_three_state_flag
from azure.cli.core.commands.validators import get_default_location_from_resource_group
from azure.cli.command_modules.monitor.actions import \
@@ -21,6 +19,8 @@
(ConditionOperator, TimeAggregationOperator)
from azure.mgmt.monitor.models import (LogProfileResource, RetentionPolicy)
+from knack.arguments import CLIArgumentType, enum_choice_list
+
# pylint: disable=line-too-long
@@ -33,7 +33,7 @@ def register_resource_parameter(command, dest, arg_group=None, required=True):
register_extra_cli_argument(command, 'resource_type', options_list=['--{}-type'.format(dest)], arg_group=arg_group, help="Target resource type. Can also accept namespace/type format (Ex: 'Microsoft.Compute/virtualMachines)')")
-name_arg_type = CliArgumentType(options_list=['--name', '-n'], metavar='NAME')
+name_arg_type = CLIArgumentType(options_list=['--name', '-n'], metavar='NAME')
register_cli_argument('monitor', 'location', location_type, validator=get_default_location_from_resource_group)
register_cli_argument('monitor', 'tags', tags_type)
@@ -45,8 +45,8 @@ def register_resource_parameter(command, dest, arg_group=None, required=True):
register_cli_argument('monitor alert create', 'rule_name', name_arg_type, id_part='name', help='Name of the alert rule.')
register_cli_argument('monitor alert create', 'custom_emails', nargs='+', arg_group='Action')
-register_cli_argument('monitor alert create', 'disabled', **three_state_flag())
-register_cli_argument('monitor alert create', 'email_service_owners', arg_group='Action', **three_state_flag())
+register_cli_argument('monitor alert create', 'disabled', arg_type=get_three_state_flag())
+register_cli_argument('monitor alert create', 'email_service_owners', arg_group='Action', arg_type=get_three_state_flag())
register_cli_argument('monitor alert create', 'actions', options_list=['--action', '-a'], action=AlertAddAction, nargs='+', arg_group='Action')
register_cli_argument('monitor alert create', 'condition', action=ConditionAction, nargs='+')
register_cli_argument('monitor alert create', 'metric_name', arg_group='Condition')
@@ -57,7 +57,7 @@ def register_resource_parameter(command, dest, arg_group=None, required=True):
register_resource_parameter('monitor alert create', 'target', 'Target Resource')
register_cli_argument('monitor alert update', 'rule_name', name_arg_type, id_part='name', help='Name of the alert rule.')
-register_cli_argument('monitor alert update', 'email_service_owners', arg_group='Action', **three_state_flag())
+register_cli_argument('monitor alert update', 'email_service_owners', arg_group='Action', arg_type=get_three_state_flag())
register_cli_argument('monitor alert update', 'add_actions', options_list=['--add-action', '-a'], nargs='+', action=AlertAddAction, arg_group='Action')
register_cli_argument('monitor alert update', 'remove_actions', options_list=['--remove-action', '-r'], nargs='+', action=AlertRemoveAction, arg_group='Action')
register_cli_argument('monitor alert update', 'condition', action=ConditionAction, nargs='+', arg_group='Condition')
diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/actions.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/actions.py
index f4ae85823c4..190ae9c21da 100644
--- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/actions.py
+++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/actions.py
@@ -6,7 +6,7 @@
import argparse
import re
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.monitor.custom import operator_map, aggregation_map
diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/commands.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/commands.py
index 082b2d586ac..fd607b8c24b 100644
--- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/commands.py
+++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/commands.py
@@ -6,8 +6,7 @@
# pylint: disable=line-too-long
from azure.cli.core.commands import cli_command
-from azure.cli.core.sdk.util import ServiceGroup, create_service_adapter
-from azure.cli.core.commands.arm import cli_generic_update_command
+from azure.cli.core.commands.arm import _cli_generic_update_command
from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
from ._client_factory import (cf_alert_rules, cf_metrics, cf_metric_def, cf_alert_rule_incidents, cf_log_profiles,
cf_autoscale, cf_diagnostics, cf_activity_log, cf_action_groups, cf_activity_log_alerts,
@@ -32,7 +31,7 @@ def monitor_command(*args, **kwargs):
monitor_command(__name__, 'monitor alert delete', ar_path + 'delete', cf_alert_rules)
monitor_command(__name__, 'monitor alert show', ar_path + 'get', cf_alert_rules)
monitor_command(__name__, 'monitor alert list', ar_path + 'list_by_resource_group', cf_alert_rules)
- cli_generic_update_command(__name__, 'monitor alert update',
+ _cli_generic_update_command(__name__, 'monitor alert update',
ar_path + 'get', ar_path + 'create_or_update', cf_alert_rules,
custom_function_op=custom_path + 'update_metric_rule',
exception_handler=monitor_exception_handler)
@@ -57,7 +56,7 @@ def monitor_command(*args, **kwargs):
monitor_command(__name__, 'monitor log-profiles delete', lp_path + 'delete', cf_log_profiles)
monitor_command(__name__, 'monitor log-profiles show', lp_path + 'get', cf_log_profiles)
monitor_command(__name__, 'monitor log-profiles list', lp_path + 'list', cf_log_profiles)
- cli_generic_update_command(__name__, 'monitor log-profiles update',
+ _cli_generic_update_command(__name__, 'monitor log-profiles update',
lp_path + 'get', lp_path + 'create_or_update', cf_log_profiles,
exception_handler=monitor_exception_handler)
@@ -68,7 +67,7 @@ def monitor_command(*args, **kwargs):
diag_path = 'azure.mgmt.monitor.operations.service_diagnostic_settings_operations#ServiceDiagnosticSettingsOperations.'
monitor_command(__name__, 'monitor diagnostic-settings create', custom_path + 'create_diagnostics_settings', cf_diagnostics)
monitor_command(__name__, 'monitor diagnostic-settings show', diag_path + 'get', cf_diagnostics)
- cli_generic_update_command(__name__, 'monitor diagnostic-settings update',
+ _cli_generic_update_command(__name__, 'monitor diagnostic-settings update',
diag_path + 'get', diag_path + 'create_or_update', cf_diagnostics,
exception_handler=monitor_exception_handler)
@@ -83,7 +82,7 @@ def monitor_command(*args, **kwargs):
monitor_command(__name__, 'monitor autoscale-settings show', autoscale_path + 'get', cf_autoscale)
monitor_command(__name__, 'monitor autoscale-settings list', autoscale_path + 'list_by_resource_group', cf_autoscale)
monitor_command(__name__, 'monitor autoscale-settings get-parameters-template', custom_path + 'scaffold_autoscale_settings_parameters', cf_autoscale)
- cli_generic_update_command(__name__, 'monitor autoscale-settings update',
+ _cli_generic_update_command(__name__, 'monitor autoscale-settings update',
autoscale_path + 'get', autoscale_path + 'create_or_update', cf_autoscale,
exception_handler=monitor_exception_handler)
diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/test_custom.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/test_custom.py
index ec3cd8fdb9e..493fb2a178d 100644
--- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/test_custom.py
+++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/tests/test_custom.py
@@ -9,7 +9,7 @@
except ImportError:
import mock
import re
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.monitor.custom import (_metric_names_filter_builder,
_metrics_odata_filter_builder,
_build_activity_log_odata_filter,
diff --git a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/validators.py b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/validators.py
index 48e159f9f2a..eafb30c21d9 100644
--- a/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/validators.py
+++ b/src/command_modules/azure-cli-monitor/azure/cli/command_modules/monitor/validators.py
@@ -3,8 +3,8 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from msrestazure.tools import is_valid_resource_id, resource_id, parse_resource_id
-from azure.cli.core.util import CLIError
+from azure.cli.core.commands.arm import is_valid_resource_id, resource_id, parse_resource_id
+from knack.util import CLIError
def get_target_resource_validator(dest, required):
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/__init__.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/__init__.py
index df2ddf6ea86..aeaaf4cf5f3 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/__init__.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/__init__.py
@@ -3,12 +3,32 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.profiles import ResourceType
+
import azure.cli.command_modules.network._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.network._params # pylint: disable=redefined-outer-name, unused-variable
+class NetworkCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ from azure.cli.core.sdk.util import CliCommandType
+ network_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.network.custom#{}')
+ super(NetworkCommandsLoader, self).__init__(cli_ctx=cli_ctx,
+ resource_type=ResourceType.MGMT_NETWORK,
+ custom_command_type=network_custom)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(NetworkCommandsLoader, self).load_command_table(args)
+ from azure.cli.command_modules.network.commands import load_command_table
+ load_command_table(self, args)
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(NetworkCommandsLoader, self).load_arguments(command)
+ from azure.cli.command_modules.network._params import load_arguments
+ load_arguments(self, command)
-def load_commands():
- import azure.cli.command_modules.network.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = NetworkCommandsLoader
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_client_factory.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_client_factory.py
index 92614296ab6..02c2a218c1d 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_client_factory.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_client_factory.py
@@ -4,147 +4,151 @@
# --------------------------------------------------------------------------------------------
-def _network_client_factory(**_):
+def network_client_factory(cli_ctx, **_):
from azure.cli.core.profiles import ResourceType
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- return get_mgmt_service_client(ResourceType.MGMT_NETWORK)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_NETWORK)
-def resource_client_factory(**_):
+def resource_client_factory(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
- return get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
-def cf_application_gateways(_):
- return _network_client_factory().application_gateways
+def cf_application_gateways(cli_ctx, _):
+ return network_client_factory(cli_ctx).application_gateways
-def cf_application_security_groups(_):
- return _network_client_factory().application_security_groups
+def cf_application_security_groups(cli_ctx, _):
+ return network_client_factory(cli_ctx).application_security_groups
-def cf_express_route_circuit_authorizations(_):
- return _network_client_factory().express_route_circuit_authorizations
+def cf_endpoint_services(cli_ctx, _):
+ return network_client_factory(cli_ctx).available_endpoint_services
-def cf_express_route_circuit_peerings(_):
- return _network_client_factory().express_route_circuit_peerings
+def cf_express_route_circuit_authorizations(cli_ctx, _):
+ return network_client_factory(cli_ctx).express_route_circuit_authorizations
-def cf_express_route_circuits(_):
- return _network_client_factory().express_route_circuits
+def cf_express_route_circuit_peerings(cli_ctx, _):
+ return network_client_factory(cli_ctx).express_route_circuit_peerings
-def cf_express_route_service_providers(_):
- return _network_client_factory().express_route_service_providers
+def cf_express_route_circuits(cli_ctx, _):
+ return network_client_factory(cli_ctx).express_route_circuits
-def cf_load_balancers(_):
- return _network_client_factory().load_balancers
+def cf_express_route_service_providers(cli_ctx, _):
+ return network_client_factory(cli_ctx).express_route_service_providers
-def cf_local_network_gateways(_):
- return _network_client_factory().local_network_gateways
+def cf_load_balancers(cli_ctx, _):
+ return network_client_factory(cli_ctx).load_balancers
-def cf_network_interfaces(_):
- return _network_client_factory().network_interfaces
+def cf_local_network_gateways(cli_ctx, _):
+ return network_client_factory(cli_ctx).local_network_gateways
-def cf_network_security_groups(_):
- return _network_client_factory().network_security_groups
+def cf_network_interfaces(cli_ctx, _):
+ return network_client_factory(cli_ctx).network_interfaces
-def cf_network_watcher(_):
- return _network_client_factory().network_watchers
+def cf_network_security_groups(cli_ctx, _):
+ return network_client_factory(cli_ctx).network_security_groups
-def cf_packet_capture(_):
- return _network_client_factory().packet_captures
+def cf_network_watcher(cli_ctx, _):
+ return network_client_factory(cli_ctx).network_watchers
-def cf_endpoint_service(_):
- return _network_client_factory().available_endpoint_services
+def cf_packet_capture(cli_ctx, _):
+ return network_client_factory(cli_ctx).packet_captures
-def cf_public_ip_addresses(_):
- return _network_client_factory().public_ip_addresses
+def cf_private_access(cli_ctx, _):
+ return network_client_factory(cli_ctx).available_private_access_services
-def cf_route_tables(_):
- return _network_client_factory().route_tables
+def cf_public_ip_addresses(cli_ctx, _):
+ return network_client_factory(cli_ctx).public_ip_addresses
-def cf_routes(_):
- return _network_client_factory().routes
+def cf_route_tables(cli_ctx, _):
+ return network_client_factory(cli_ctx).route_tables
-def cf_security_rules(_):
- return _network_client_factory().security_rules
+def cf_routes(cli_ctx, _):
+ return network_client_factory(cli_ctx).routes
-def cf_subnets(_):
- return _network_client_factory().subnets
+def cf_security_rules(cli_ctx, _):
+ return network_client_factory(cli_ctx).security_rules
-def cf_usages(_):
- return _network_client_factory().usages
+def cf_subnets(cli_ctx, _):
+ return network_client_factory(cli_ctx).subnets
-def cf_virtual_network_gateway_connections(_):
- return _network_client_factory().virtual_network_gateway_connections
+def cf_usages(cli_ctx, _):
+ return network_client_factory(cli_ctx).usages
-def cf_virtual_network_gateways(_):
- return _network_client_factory().virtual_network_gateways
+def cf_virtual_network_gateway_connections(cli_ctx, _):
+ return network_client_factory(cli_ctx).virtual_network_gateway_connections
-def cf_virtual_networks(_):
- return _network_client_factory().virtual_networks
+def cf_virtual_network_gateways(cli_ctx, _):
+ return network_client_factory(cli_ctx).virtual_network_gateways
-def cf_virtual_network_peerings(_):
- return _network_client_factory().virtual_network_peerings
+def cf_virtual_networks(cli_ctx, _):
+ return network_client_factory(cli_ctx).virtual_networks
-def cf_traffic_manager_mgmt_profiles(_):
+def cf_virtual_network_peerings(cli_ctx, _):
+ return network_client_factory(cli_ctx).virtual_network_peerings
+
+
+def cf_traffic_manager_mgmt_profiles(cli_ctx, _):
from azure.mgmt.trafficmanager import TrafficManagerManagementClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- return get_mgmt_service_client(TrafficManagerManagementClient).profiles
+ return get_mgmt_service_client(cli_ctx, TrafficManagerManagementClient).profiles
-def cf_traffic_manager_mgmt_endpoints(_):
+def cf_traffic_manager_mgmt_endpoints(cli_ctx, _):
from azure.mgmt.trafficmanager import TrafficManagerManagementClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- return get_mgmt_service_client(TrafficManagerManagementClient).endpoints
+ return get_mgmt_service_client(cli_ctx, TrafficManagerManagementClient).endpoints
-def cf_tm_geographic(_):
+def cf_tm_geographic(cli_ctx, _):
from azure.mgmt.trafficmanager import TrafficManagerManagementClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- return get_mgmt_service_client(TrafficManagerManagementClient).geographic_hierarchies
+ return get_mgmt_service_client(cli_ctx, TrafficManagerManagementClient).geographic_hierarchies
-def cf_dns_mgmt_zones(_):
+def cf_dns_mgmt_zones(cli_ctx, _):
from azure.mgmt.dns import DnsManagementClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- return get_mgmt_service_client(DnsManagementClient).zones
+ return get_mgmt_service_client(cli_ctx, DnsManagementClient).zones
-def cf_dns_mgmt_record_sets(_):
+def cf_dns_mgmt_record_sets(cli_ctx, _):
from azure.mgmt.dns import DnsManagementClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- return get_mgmt_service_client(DnsManagementClient).record_sets
+ return get_mgmt_service_client(cli_ctx, DnsManagementClient).record_sets
-def cf_route_filters(_):
- return _network_client_factory().route_filters
+def cf_route_filters(cli_ctx, _):
+ return network_client_factory(cli_ctx).route_filters
-def cf_route_filter_rules(_):
- return _network_client_factory().route_filter_rules
+def cf_route_filter_rules(cli_ctx, _):
+ return network_client_factory(cli_ctx).route_filter_rules
-def cf_service_community(_):
- return _network_client_factory().bgp_service_communities
+def cf_service_community(cli_ctx, _):
+ return network_client_factory(cli_ctx).bgp_service_communities
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_format.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_format.py
index 630e2ee207d..02bccf60923 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_format.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_format.py
@@ -100,22 +100,6 @@ def transform_vpn_connection(result):
return result
-def transform_vpn_connection_create_output(result):
- from azure.cli.core.commands import DeploymentOutputLongRunningOperation
- from msrest.pipeline import ClientRawResponse
- from msrestazure.azure_operation import AzureOperationPoller
- if isinstance(result, AzureOperationPoller):
- # normally returns a LRO poller
- result = DeploymentOutputLongRunningOperation('Starting network vpn-connection create')(result)
- return result['resource']
- elif isinstance(result, ClientRawResponse):
- # returns a raw response if --no-wait used
- return
-
- # returns a plain response (not a poller) if --validate used
- return result
-
-
def transform_vnet_create_output(result):
return {'newVNet': result.result()}
@@ -137,7 +121,8 @@ def transform_nsg_create_output(result):
def transform_vnet_gateway_create_output(result):
- return {'vnetGateway': result.result()}
+ result = {'vnetGateway': result.result()} if result else result
+ return result
def transform_geographic_hierachy_table_output(result):
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_help.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_help.py
index 9a530e62e8c..f9ec37a2857 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_help.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
# pylint: disable=line-too-long, too-many-lines
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_params.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_params.py
index 55a30efc306..dc9c80a2388 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_params.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_params.py
@@ -6,84 +6,35 @@
# pylint: disable=line-too-long
from argcomplete.completers import FilesCompleter
-from azure.cli.core.commands import \
- (VersionConstraint, CliArgumentType, register_cli_argument, register_extra_cli_argument)
-from azure.cli.core.commands.parameters import (location_type, get_resource_name_completion_list,
- enum_choice_list, tags_type, ignore_type,
+from azure.cli.core.commands.parameters import (get_location_type, get_resource_name_completion_list,
+ tags_type, zone_type,
file_type, get_resource_group_completion_list,
- three_state_flag, model_choice_list, zone_type)
+ get_three_state_flag, get_enum_type)
from azure.cli.core.commands.validators import get_default_location_from_resource_group
from azure.cli.core.commands.template_create import get_folded_parameter_help_string
-from azure.cli.command_modules.network._client_factory import _network_client_factory
+from azure.cli.command_modules.network._client_factory import network_client_factory
from azure.cli.command_modules.network._validators import \
(dns_zone_name_type,
- process_ag_create_namespace, process_ag_listener_create_namespace,
- process_ag_http_settings_create_namespace, process_ag_url_path_map_create_namespace,
- process_nic_create_namespace, process_lb_create_namespace, process_ag_rule_create_namespace,
- process_ag_url_path_map_rule_create_namespace, process_auth_create_namespace,
- process_public_ip_create_namespace, validate_private_ip_address,
- process_lb_frontend_ip_namespace, process_local_gateway_create_namespace,
- process_tm_endpoint_create_namespace, process_vnet_create_namespace,
- process_vnet_gateway_create_namespace, process_vnet_gateway_update_namespace,
- process_vpn_connection_create_namespace,
- process_nw_troubleshooting_start_namespace, process_nw_troubleshooting_show_namespace,
- process_nw_flow_log_set_namespace, process_nw_flow_log_show_namespace,
- process_ag_ssl_policy_set_namespace, process_route_table_create_namespace,
- process_nw_topology_namespace, process_nw_packet_capture_create_namespace,
- process_nw_test_connectivity_namespace,
validate_auth_cert, validate_cert, validate_inbound_nat_rule_id_list,
validate_address_pool_id_list, validate_inbound_nat_rule_name_or_id,
validate_address_pool_name_or_id, load_cert_file, validate_metadata,
validate_peering_type, validate_dns_record_type, validate_route_filter, validate_target_listener,
+ validate_private_ip_address,
get_servers_validator, get_public_ip_validator, get_nsg_validator, get_subnet_validator,
get_network_watcher_from_vm, get_network_watcher_from_location,
get_asg_validator)
from azure.mgmt.network.models import ApplicationGatewaySslProtocol
from azure.mgmt.trafficmanager.models import MonitorProtocol
from azure.cli.command_modules.network.custom import list_traffic_manager_endpoints
-from azure.cli.core.profiles import ResourceType, get_sdk, supported_api_version
from azure.cli.core.util import get_json_object
-(ApplicationGatewaySkuName, ApplicationGatewayCookieBasedAffinity, ApplicationGatewayFirewallMode,
- ApplicationGatewayProtocol, ApplicationGatewayRequestRoutingRuleType, ApplicationGatewaySslProtocol,
- ExpressRouteCircuitSkuFamily, ExpressRouteCircuitSkuTier, ExpressRouteCircuitPeeringType, IPVersion, LoadDistribution,
- ProbeProtocol, TransportProtocol, SecurityRuleAccess, SecurityRuleProtocol, SecurityRuleDirection,
- VirtualNetworkGatewayType, VirtualNetworkGatewaySkuName, VpnType, IPAllocationMethod, RouteNextHopType, Direction,
- Protocol, IPVersion) = get_sdk(ResourceType.MGMT_NETWORK,
- 'ApplicationGatewaySkuName',
- 'ApplicationGatewayCookieBasedAffinity',
- 'ApplicationGatewayFirewallMode',
- 'ApplicationGatewayProtocol',
- 'ApplicationGatewayRequestRoutingRuleType',
- 'ApplicationGatewaySslProtocol',
- 'ExpressRouteCircuitSkuFamily',
- 'ExpressRouteCircuitSkuTier',
- 'ExpressRouteCircuitPeeringType',
- 'IPVersion',
- 'LoadDistribution', 'ProbeProtocol',
- 'TransportProtocol',
- 'SecurityRuleAccess',
- 'SecurityRuleProtocol',
- 'SecurityRuleDirection',
- 'VirtualNetworkGatewayType',
- 'VirtualNetworkGatewaySkuName',
- 'VpnType', 'IPAllocationMethod',
- 'RouteNextHopType',
- 'Direction', 'Protocol', 'IPVersion',
- mod='models')
-
-# CHOICE LISTS
-
-# taken from Xplat. No enums in SDK
-routing_registry_values = ['ARIN', 'APNIC', 'AFRINIC', 'LACNIC', 'RIPENCC', 'RADB', 'ALTDB', 'LEVEL3']
-device_path_values = ['primary', 'secondary']
-
-# COMPLETERS
-
-
-def get_subnet_completion_list():
+from knack.arguments import CLIArgumentType, ignore_type
+
+
+# region Completers
+def get_subnet_completion_list(cli_ctx):
def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- client = _network_client_factory()
+ client = network_client_factory(cli_ctx)
if parsed_args.resource_group_name and parsed_args.virtual_network_name:
rg = parsed_args.resource_group_name
vnet = parsed_args.virtual_network_name
@@ -91,9 +42,9 @@ def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-
return completer
-def get_lb_subresource_completion_list(prop):
+def get_lb_subresource_completion_list(cli_ctx, prop):
def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- client = _network_client_factory()
+ client = network_client_factory(cli_ctx)
try:
lb_name = parsed_args.load_balancer_name
except AttributeError:
@@ -104,9 +55,9 @@ def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-
return completer
-def get_ag_subresource_completion_list(prop):
+def get_ag_subresource_completion_list(cli_ctx, prop):
def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- client = _network_client_factory()
+ client = network_client_factory(cli_ctx)
try:
ag_name = parsed_args.application_gateway_name
except AttributeError:
@@ -117,9 +68,9 @@ def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-
return completer
-def get_ag_url_map_rule_completion_list():
+def get_ag_url_map_rule_completion_list(cli_ctx):
def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- client = _network_client_factory()
+ client = network_client_factory(cli_ctx)
try:
ag_name = parsed_args.application_gateway_name
except AttributeError:
@@ -133,727 +84,884 @@ def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-
def get_tm_endpoint_completion_list():
def completer(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- return list_traffic_manager_endpoints(parsed_args.resource_group_name, parsed_args.profile_name) \
+ return list_traffic_manager_endpoints(parsed_args['cmd'], parsed_args.resource_group_name, parsed_args.profile_name) \
if parsed_args.resource_group_name and parsed_args.profile_name \
else []
return completer
+# endregion
+
+
+# pylint: disable=too-many-locals, too-many-branches, too-many-statements
+def load_arguments(self, _):
+
+ (Access, ApplicationGatewayFirewallMode, ApplicationGatewayProtocol, ApplicationGatewayRedirectType,
+ ApplicationGatewayRequestRoutingRuleType, ApplicationGatewaySkuName, AuthenticationMethod, Direction,
+ ExpressRouteCircuitPeeringType, ExpressRouteCircuitSkuFamily, ExpressRouteCircuitSkuTier, IPAllocationMethod,
+ IPVersion, LoadBalancerSkuName, LoadDistribution, ProbeProtocol, ProcessorArchitecture, Protocol, PublicIPAddressSkuName,
+ RouteNextHopType, SecurityRuleAccess, SecurityRuleProtocol, SecurityRuleDirection, TransportProtocol,
+ VirtualNetworkGatewaySkuName, VirtualNetworkGatewayType, VpnClientProtocol, VpnType) = self.get_models(
+ 'Access', 'ApplicationGatewayFirewallMode', 'ApplicationGatewayProtocol', 'ApplicationGatewayRedirectType',
+ 'ApplicationGatewayRequestRoutingRuleType', 'ApplicationGatewaySkuName', 'AuthenticationMethod', 'Direction',
+ 'ExpressRouteCircuitPeeringType', 'ExpressRouteCircuitSkuFamily', 'ExpressRouteCircuitSkuTier', 'IPAllocationMethod',
+ 'IPVersion', 'LoadBalancerSkuName', 'LoadDistribution', 'ProbeProtocol', 'ProcessorArchitecture', 'Protocol', 'PublicIPAddressSkuName',
+ 'RouteNextHopType', 'SecurityRuleAccess', 'SecurityRuleProtocol', 'SecurityRuleDirection', 'TransportProtocol',
+ 'VirtualNetworkGatewaySkuName', 'VirtualNetworkGatewayType', 'VpnClientProtocol', 'VpnType')
+
+ default_existing = 'If only one exists, omit to use as default.'
+
+ # taken from Xplat. No enums in SDK
+ routing_registry_values = ['ARIN', 'APNIC', 'AFRINIC', 'LACNIC', 'RIPENCC', 'RADB', 'ALTDB', 'LEVEL3']
+ device_path_values = ['primary', 'secondary']
+
+ name_arg_type = CLIArgumentType(options_list=('--name', '-n'), metavar='NAME')
+ nic_type = CLIArgumentType(options_list=('--nic-name',), metavar='NAME', help='The network interface (NIC).', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/networkInterfaces'))
+ nsg_name_type = CLIArgumentType(options_list=('--nsg-name',), metavar='NAME', help='Name of the network security group.')
+ circuit_name_type = CLIArgumentType(options_list=('--circuit-name',), metavar='NAME', help='ExpressRoute circuit name.', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/expressRouteCircuits'))
+ virtual_network_name_type = CLIArgumentType(options_list=('--vnet-name',), metavar='NAME', help='The virtual network (VNet) name.', completer=get_resource_name_completion_list('Microsoft.Network/virtualNetworks'))
+ subnet_name_type = CLIArgumentType(options_list=('--subnet-name',), metavar='NAME', help='The subnet name.')
+ load_balancer_name_type = CLIArgumentType(options_list=('--lb-name',), metavar='NAME', help='The load balancer name.', completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'), id_part='name')
+ private_ip_address_type = CLIArgumentType(help='Static private IP address to use.', validator=validate_private_ip_address)
+ cookie_based_affinity_type = CLIArgumentType(arg_type=get_three_state_flag(positive_label='Enabled', negative_label='Disabled', return_label=True))
+ http_protocol_type = CLIArgumentType(get_enum_type(ApplicationGatewayProtocol))
+ ag_servers_type = CLIArgumentType(nargs='+', help='Space separated list of IP addresses or DNS names corresponding to backend servers.', validator=get_servers_validator())
+
+ # region NetworkRoot
+ with self.argument_context('network') as c:
+ c.argument('subnet_name', subnet_name_type)
+ c.argument('virtual_network_name', virtual_network_name_type, id_part='name')
+ c.argument('tags', tags_type)
+ c.argument('network_security_group_name', nsg_name_type, id_part='name')
+ c.argument('private_ip_address', private_ip_address_type)
+ c.argument('private_ip_address_version', arg_type=get_enum_type(IPVersion))
+
+ # endregion
+
+ # region ApplicationGateways
+ with self.argument_context('network application-gateway') as c:
+ c.argument('application_gateway_name', name_arg_type, help='The name of the application gateway.', completer=get_resource_name_completion_list('Microsoft.Network/applicationGateways'), id_part='name')
+ c.argument('sku', arg_group='Gateway', help='The name of the SKU.', arg_type=get_enum_type(ApplicationGatewaySkuName), default=ApplicationGatewaySkuName.standard_medium.value)
+ c.argument('virtual_network_name', virtual_network_name_type, arg_group='Network')
+ c.argument('private_ip_address', arg_group='Network')
+ c.ignore('private_ip_address_allocation')
+ c.argument('public_ip_address_allocation', help='The kind of IP allocation to use when creating a new public IP.', arg_group='Network', default=IPAllocationMethod.dynamic.value)
+ c.argument('servers', ag_servers_type, arg_group='Gateway')
+ c.argument('http_settings_cookie_based_affinity', cookie_based_affinity_type, help='Enable or disable HTTP settings cookie-based affinity.', arg_group='Gateway')
+ c.argument('http_settings_protocol', http_protocol_type, help='The HTTP settings protocol.', arg_group='Gateway')
+ c.argument('subnet_address_prefix', help='The CIDR prefix to use when creating a new subnet.', arg_group='Network')
+ c.argument('vnet_address_prefix', help='The CIDR prefix to use when creating a new VNet.', arg_group='Network')
+ c.ignore('virtual_network_type')
+
+ with self.argument_context('network application-gateway create') as c:
+ c.argument('validate', help='Generate and validate the ARM template without creating any resources.', action='store_true')
+ c.argument('routing_rule_type', arg_group='Gateway', help='The request routing rule type.', arg_type=get_enum_type(ApplicationGatewayRequestRoutingRuleType))
+ c.argument('cert_data', options_list=('--cert-file',), type=file_type, completer=FilesCompleter(), help='The path to the PFX certificate file.', arg_group='Gateway')
+ c.ignore('frontend_type')
+ c.argument('frontend_port', help='The front end port number.', arg_group='Gateway')
+ c.argument('capacity', help='The number of instances to use with the application gateway.', arg_group='Gateway')
+ c.argument('cert_password', help='The certificate password', arg_group='Gateway')
+ c.argument('http_settings_port', help='The HTTP settings port.', arg_group='Gateway')
+ c.argument('servers', ag_servers_type, arg_group='Gateway')
+ public_ip_help = get_folded_parameter_help_string('public IP address', allow_none=True, allow_new=True, default_none=True)
+ c.argument('public_ip_address', help=public_ip_help, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'), arg_group='Network')
+ c.ignore('public_ip_address_type')
+
+ subnet_help = get_folded_parameter_help_string('subnet', other_required_option='--vnet-name', allow_new=True)
+ c.argument('subnet', help=subnet_help, completer=get_subnet_completion_list(self.cli_ctx), arg_group='Network')
+ c.ignore('subnet_type')
+
+ with self.argument_context('network application-gateway update') as c:
+ c.argument('sku', arg_group=None)
+
+ ag_subresources = [
+ {'name': 'auth-cert', 'display': 'authentication certificate', 'ref': 'authentication_certificates'},
+ {'name': 'ssl-cert', 'display': 'SSL certificate', 'ref': 'ssl_certificates'},
+ {'name': 'frontend-ip', 'display': 'frontend IP configuration', 'ref': 'frontend_ip_configurations'},
+ {'name': 'frontend-port', 'display': 'frontend port', 'ref': 'frontend_ports'},
+ {'name': 'address-pool', 'display': 'backend address pool', 'ref': 'backend_address_pools'},
+ {'name': 'http-settings', 'display': 'backed HTTP settings', 'ref': 'backend_http_settings_collection'},
+ {'name': 'http-listener', 'display': 'HTTP listener', 'ref': 'http_listeners'},
+ {'name': 'rule', 'display': 'request routing rule', 'ref': 'request_routing_rules'},
+ {'name': 'probe', 'display': 'probe', 'ref': 'probes'},
+ {'name': 'url-path-map', 'display': 'URL path map', 'ref': 'url_path_maps'},
+ {'name': 'redirect-config', 'display': 'redirect configuration', 'ref': 'redirect_configurations'}
+ ]
+
+ for item in ag_subresources:
+ with self.argument_context('network application-gateway {}'.format(item['name'])) as c:
+ c.argument('item_name', options_list=('--name', '-n'), help='The name of the {}.'.format(item['display']), completer=get_ag_subresource_completion_list(self.cli_ctx, item['ref']), id_part='child_name_1')
+ c.argument('resource_name', options_list=('--gateway-name',), help='The name of the application gateway.')
+ c.argument('application_gateway_name', options_list=('--gateway-name',), help='The name of the application gateway.')
+ c.argument('private_ip_address', arg_group=None)
+ c.argument('virtual_network_name', arg_group=None)
+
+ with self.argument_context('network application-gateway {} create'.format(item['name'])) as c:
+ c.argument('item_name', options_list=('--name', '-n'), help='The name of the {}.'.format(item['display']), completer=None)
+
+ with self.argument_context('network application-gateway {} list'.format(item['name'])) as c:
+ c.argument('resource_name', options_list=('--gateway-name',))
-# BASIC PARAMETER CONFIGURATION
-
-name_arg_type = CliArgumentType(options_list=('--name', '-n'), metavar='NAME')
-nic_type = CliArgumentType(options_list=('--nic-name',), metavar='NAME', help='The network interface (NIC).', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/networkInterfaces'))
-nsg_name_type = CliArgumentType(options_list=('--nsg-name',), metavar='NAME', help='Name of the network security group.')
-circuit_name_type = CliArgumentType(options_list=('--circuit-name',), metavar='NAME', help='ExpressRoute circuit name.', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/expressRouteCircuits'))
-virtual_network_name_type = CliArgumentType(options_list=('--vnet-name',), metavar='NAME', help='The virtual network (VNet) name.', completer=get_resource_name_completion_list('Microsoft.Network/virtualNetworks'))
-subnet_name_type = CliArgumentType(options_list=('--subnet-name',), metavar='NAME', help='The subnet name.')
-load_balancer_name_type = CliArgumentType(options_list=('--lb-name',), metavar='NAME', help='The load balancer name.', completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'), id_part='name')
-private_ip_address_type = CliArgumentType(help='Static private IP address to use.', validator=validate_private_ip_address)
-cookie_based_affinity_type = CliArgumentType(**three_state_flag(positive_label='Enabled', negative_label='Disabled', return_label=True))
-http_protocol_type = CliArgumentType(**enum_choice_list(ApplicationGatewayProtocol))
-ag_servers_type = CliArgumentType(nargs='+', help='Space separated list of IP addresses or DNS names corresponding to backend servers.', validator=get_servers_validator())
-
-# ARGUMENT REGISTRATION
-
-register_cli_argument('network', 'subnet_name', subnet_name_type)
-register_cli_argument('network', 'virtual_network_name', virtual_network_name_type, id_part='name')
-register_cli_argument('network', 'network_security_group_name', nsg_name_type, id_part='name')
-register_cli_argument('network', 'private_ip_address', private_ip_address_type)
-register_cli_argument('network', 'private_ip_address_version', **enum_choice_list(IPVersion))
-register_cli_argument('network', 'tags', tags_type)
-
-register_cli_argument('network application-gateway', 'application_gateway_name', name_arg_type, help='The name of the application gateway.', completer=get_resource_name_completion_list('Microsoft.Network/applicationGateways'), id_part='name')
-register_cli_argument('network application-gateway', 'sku', arg_group='Gateway', help='The name of the SKU.', **enum_choice_list(ApplicationGatewaySkuName))
-register_cli_argument('network application-gateway', 'virtual_network_name', virtual_network_name_type, arg_group='Network')
-register_cli_argument('network application-gateway', 'private_ip_address', arg_group='Network')
-register_cli_argument('network application-gateway', 'private_ip_address_allocation', ignore_type, arg_group='Network')
-register_cli_argument('network application-gateway', 'public_ip_address_allocation', help='The kind of IP allocation to use when creating a new public IP.', arg_group='Network')
-register_cli_argument('network application-gateway', 'servers', ag_servers_type, arg_group='Gateway')
-register_cli_argument('network application-gateway', 'http_settings_cookie_based_affinity', cookie_based_affinity_type, help='Enable or disable HTTP settings cookie-based affinity.', arg_group='Gateway')
-register_cli_argument('network application-gateway', 'http_settings_protocol', http_protocol_type, help='The HTTP settings protocol.', arg_group='Gateway')
-register_cli_argument('network application-gateway', 'subnet_address_prefix', help='The CIDR prefix to use when creating a new subnet.', arg_group='Network')
-register_cli_argument('network application-gateway', 'vnet_address_prefix', help='The CIDR prefix to use when creating a new VNet.', arg_group='Network')
-register_cli_argument('network application-gateway', 'virtual_network_type', ignore_type, arg_group='Network')
-
-register_cli_argument('network application-gateway create', 'validate', help='Generate and validate the ARM template without creating any resources.', action='store_true', validator=process_ag_create_namespace)
-register_cli_argument('network application-gateway create', 'routing_rule_type', arg_group='Gateway', help='The request routing rule type.', **enum_choice_list(ApplicationGatewayRequestRoutingRuleType))
-register_cli_argument('network application-gateway create', 'cert_data', options_list=('--cert-file',), type=file_type, completer=FilesCompleter(), help='The path to the PFX certificate file.', arg_group='Gateway')
-register_cli_argument('network application-gateway create', 'frontend_type', ignore_type, arg_group='Gateway')
-register_cli_argument('network application-gateway create', 'frontend_port', help='The front end port number.', arg_group='Gateway')
-register_cli_argument('network application-gateway create', 'capacity', help='The number of instances to use with the application gateway.', arg_group='Gateway')
-register_cli_argument('network application-gateway create', 'cert_password', help='The certificate password', arg_group='Gateway')
-register_cli_argument('network application-gateway create', 'http_settings_port', help='The HTTP settings port.', arg_group='Gateway')
-register_cli_argument('network application-gateway create', 'servers', ag_servers_type, validator=get_servers_validator(camel_case=True), arg_group='Gateway')
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2016-12-01') as c:
for item in ['create', 'http-settings']:
- c.register_cli_argument('network application-gateway {}'.format(item), 'connection_draining_timeout', type=int, help='The time in seconds after a backend server is removed during which on open connection remains active. Range: 0 (disabled) to 3600', arg_group='Gateway' if item == 'create' else None)
-
-register_cli_argument('network application-gateway update', 'sku', arg_group=None)
-
-public_ip_help = get_folded_parameter_help_string('public IP address', allow_none=True, allow_new=True, default_none=True)
-register_cli_argument('network application-gateway create', 'public_ip_address', help=public_ip_help, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'), arg_group='Network')
-register_cli_argument('network application-gateway create', 'public_ip_address_type', ignore_type)
-
-subnet_help = get_folded_parameter_help_string('subnet', other_required_option='--vnet-name', allow_new=True)
-register_cli_argument('network application-gateway create', 'subnet', help=subnet_help, completer=get_subnet_completion_list(), arg_group='Network')
-register_cli_argument('network application-gateway create', 'subnet_type', ignore_type)
-
-ag_subresources = [
- {'name': 'auth-cert', 'display': 'authentication certificate', 'ref': 'authentication_certificates'},
- {'name': 'ssl-cert', 'display': 'SSL certificate', 'ref': 'ssl_certificates'},
- {'name': 'frontend-ip', 'display': 'frontend IP configuration', 'ref': 'frontend_ip_configurations'},
- {'name': 'frontend-port', 'display': 'frontend port', 'ref': 'frontend_ports'},
- {'name': 'address-pool', 'display': 'backend address pool', 'ref': 'backend_address_pools'},
- {'name': 'http-settings', 'display': 'backed HTTP settings', 'ref': 'backend_http_settings_collection'},
- {'name': 'http-listener', 'display': 'HTTP listener', 'ref': 'http_listeners'},
- {'name': 'rule', 'display': 'request routing rule', 'ref': 'request_routing_rules'},
- {'name': 'probe', 'display': 'probe', 'ref': 'probes'},
- {'name': 'url-path-map', 'display': 'URL path map', 'ref': 'url_path_maps'},
- {'name': 'redirect-config', 'display': 'redirect configuration', 'ref': 'redirect_configurations'}
-]
-
-for item in ag_subresources:
- register_cli_argument('network application-gateway {}'.format(item['name']), 'item_name', options_list=('--name', '-n'), help='The name of the {}.'.format(item['display']), completer=get_ag_subresource_completion_list(item['ref']), id_part='child_name_1')
- register_cli_argument('network application-gateway {} create'.format(item['name']), 'item_name', options_list=('--name', '-n'), help='The name of the {}.'.format(item['display']), completer=None)
- register_cli_argument('network application-gateway {}'.format(item['name']), 'resource_name', options_list=('--gateway-name',), help='The name of the application gateway.')
- register_cli_argument('network application-gateway {}'.format(item['name']), 'application_gateway_name', options_list=('--gateway-name',), help='The name of the application gateway.')
- register_cli_argument('network application-gateway {} list'.format(item['name']), 'resource_name', options_list=('--gateway-name',))
- register_cli_argument('network application-gateway {}'.format(item['name']), 'private_ip_address', arg_group=None)
- register_cli_argument('network application-gateway {}'.format(item['name']), 'virtual_network_name', arg_group=None)
-
-register_cli_argument('network application-gateway address-pool', 'servers', ag_servers_type, arg_group=None)
-
-register_cli_argument('network application-gateway auth-cert', 'cert_data', options_list=['--cert-file'], help='Certificate file path.', type=file_type, completer=FilesCompleter(), validator=validate_auth_cert)
-
-register_cli_argument('network application-gateway frontend-ip', 'subnet', validator=get_subnet_validator(), help='The name or ID of the subnet.')
-register_cli_argument('network application-gateway frontend-ip', 'public_ip_address', validator=get_public_ip_validator(), help='The name or ID of the public IP address.', completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'))
-register_cli_argument('network application-gateway frontend-ip', 'virtual_network_name', help='The name of the virtual network corresponding to the subnet.', id_part=None, arg_group=None)
-
-for item in ['frontend-port', 'http-settings']:
- register_cli_argument('network application-gateway {}'.format(item), 'port', help='The port number.', type=int)
-
-for item in ['http-settings', 'probe']:
- register_cli_argument('network application-gateway {}'.format(item), 'protocol', http_protocol_type, help='The HTTP settings protocol.')
-
-register_cli_argument('network application-gateway http-listener', 'frontend_ip', help='The name or ID of the frontend IP configuration.', validator=process_ag_listener_create_namespace, completer=get_ag_subresource_completion_list('frontend_ip_configurations'))
-register_cli_argument('network application-gateway http-listener', 'frontend_port', help='The name or ID of the frontend port.', completer=get_ag_subresource_completion_list('frontend_ports'))
-register_cli_argument('network application-gateway http-listener', 'ssl_cert', help='The name or ID of the SSL certificate to use.', completer=get_ag_subresource_completion_list('ssl_certificates'))
-register_cli_argument('network application-gateway http-listener', 'protocol', ignore_type)
-register_cli_argument('network application-gateway http-listener', 'host_name', help='Host name to use for multisite gateways.')
-
-# Add help text to clarify the "default if one" policy.
-default_existing = 'If only one exists, omit to use as default.'
-register_cli_argument('network application-gateway http-listener create', 'frontend_ip', help='The name or ID of the frontend IP configuration. {}'.format(default_existing))
-register_cli_argument('network application-gateway rule create', 'address_pool', help='The name or ID of the backend address pool. {}'.format(default_existing))
-register_cli_argument('network application-gateway rule create', 'http_settings', help='The name or ID of the HTTP settings. {}'.format(default_existing))
-register_cli_argument('network application-gateway rule create', 'http_listener', help='The name or ID of the HTTP listener. {}'.format(default_existing))
-register_cli_argument('network lb rule create', 'backend_address_pool_name', help='The name of the backend address pool. {}'.format(default_existing))
-register_cli_argument('network lb rule create', 'frontend_ip_name', help='The name of the frontend IP configuration. {}'.format(default_existing))
-register_cli_argument('network lb inbound-nat-rule create', 'frontend_ip_name', help='The name of the frontend IP configuration. {}'.format(default_existing))
-
-register_cli_argument('network application-gateway http-settings', 'cookie_based_affinity', cookie_based_affinity_type, help='Enable or disable cookie-based affinity.')
-register_cli_argument('network application-gateway http-settings', 'timeout', help='Request timeout in seconds.')
-register_cli_argument('network application-gateway http-settings', 'probe', help='Name or ID of the probe to associate with the HTTP settings.', validator=process_ag_http_settings_create_namespace, completer=get_ag_subresource_completion_list('probes'))
-
-register_cli_argument('network application-gateway probe', 'host', help='The name of the host to send the probe.')
-register_cli_argument('network application-gateway probe', 'path', help='The relative path of the probe. Valid paths start from "/"')
-register_cli_argument('network application-gateway probe', 'interval', help='The time interval in seconds between consecutive probes.')
-register_cli_argument('network application-gateway probe', 'threshold', help='The number of failed probes after which the back end server is marked down.')
-register_cli_argument('network application-gateway probe', 'timeout', help='The probe timeout in seconds.')
-
-register_cli_argument('network application-gateway rule', 'address_pool', help='The name or ID of the backend address pool.', validator=process_ag_rule_create_namespace, completer=get_ag_subresource_completion_list('backend_address_pools'))
-register_cli_argument('network application-gateway rule', 'http_listener', help='The name or ID of the HTTP listener.', completer=get_ag_subresource_completion_list('http_listeners'))
-register_cli_argument('network application-gateway rule', 'http_settings', help='The name or ID of the backend HTTP settings.', completer=get_ag_subresource_completion_list('backend_http_settings_collection'))
-register_cli_argument('network application-gateway rule', 'rule_type', help='The rule type (Basic, PathBasedRouting).')
-register_cli_argument('network application-gateway rule', 'url_path_map', help='The name or ID of the URL path map.', completer=get_ag_subresource_completion_list('url_path_maps'))
-
-register_cli_argument('network application-gateway ssl-cert', 'cert_data', options_list=('--cert-file',), type=file_type, completer=FilesCompleter(), help='The path to the PFX certificate file.', validator=validate_cert)
-register_cli_argument('network application-gateway ssl-cert', 'cert_password', help='Certificate password.')
-
-register_cli_argument('network application-gateway ssl-policy', 'clear', action='store_true', help='Clear SSL policy.', validator=process_ag_ssl_policy_set_namespace)
-register_cli_argument('network application-gateway ssl-policy', 'disabled_ssl_protocols', nargs='+', help='Space separated list of protocols to disable.', **enum_choice_list(ApplicationGatewaySslProtocol))
-
-register_cli_argument('network application-gateway url-path-map create', 'default_address_pool', help='The name or ID of the default backend address pool, if different from --address-pool.', validator=process_ag_url_path_map_create_namespace, completer=get_ag_subresource_completion_list('backend_address_pools'))
-register_cli_argument('network application-gateway url-path-map create', 'default_http_settings', help='The name or ID of the default HTTP settings, if different from --http-settings.', completer=get_ag_subresource_completion_list('backend_http_settings_collection'))
-
-register_cli_argument('network application-gateway url-path-map update', 'default_address_pool', help='The name or ID of the default backend address pool.', validator=process_ag_url_path_map_create_namespace, completer=get_ag_subresource_completion_list('backend_address_pools'))
-register_cli_argument('network application-gateway url-path-map update', 'default_http_settings', help='The name or ID of the default HTTP settings.', completer=get_ag_subresource_completion_list('backend_http_settings_collection'))
-
-register_cli_argument('network application-gateway url-path-map', 'rule_name', help='The name of the url-path-map rule.', arg_group='First Rule')
-register_cli_argument('network application-gateway url-path-map', 'paths', nargs='+', help='Space separated list of paths to associate with the rule. Valid paths start and end with "/" (ex: "/bar/")', arg_group='First Rule')
-register_cli_argument('network application-gateway url-path-map', 'address_pool', help='The name or ID of the backend address pool to use with the created rule.', completer=get_ag_subresource_completion_list('backend_address_pools'), arg_group='First Rule')
-register_cli_argument('network application-gateway url-path-map', 'http_settings', help='The name or ID of the HTTP settings to use with the created rule.', completer=get_ag_subresource_completion_list('backend_http_settings_collection'), arg_group='First Rule')
-
-register_cli_argument('network application-gateway url-path-map rule', 'item_name', options_list=('--name', '-n'), help='The name of the url-path-map rule.', completer=get_ag_url_map_rule_completion_list(), id_part='child_name_2')
-register_cli_argument('network application-gateway url-path-map rule create', 'item_name', options_list=('--name', '-n'), help='The name of the url-path-map rule.', completer=None, validator=process_ag_url_path_map_rule_create_namespace)
-register_cli_argument('network application-gateway url-path-map rule', 'url_path_map_name', options_list=('--path-map-name',), help='The name of the URL path map.', completer=get_ag_subresource_completion_list('url_path_maps'), id_part='child_name_1')
-register_cli_argument('network application-gateway url-path-map rule', 'address_pool', help='The name or ID of the backend address pool. If not specified, the default for the map will be used.', completer=get_ag_subresource_completion_list('backend_address_pools'))
-register_cli_argument('network application-gateway url-path-map rule', 'http_settings', help='The name or ID of the HTTP settings. If not specified, the default for the map will be used.', completer=get_ag_subresource_completion_list('backend_http_settings_collection'))
-
-register_cli_argument('network application-gateway waf-config', 'enabled', help='Specify whether the application firewall is enabled.', **enum_choice_list(['true', 'false']))
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- register_cli_argument('network application-gateway waf-config', 'firewall_mode', help='Web application firewall mode.', default=ApplicationGatewayFirewallMode.detection.value, **enum_choice_list(ApplicationGatewayFirewallMode))
-else:
- register_cli_argument('network application-gateway waf-config', 'firewall_mode', ignore_type)
-
-for item in ['ssl-policy', 'waf-config']:
- register_cli_argument('network application-gateway {}'.format(item), 'application_gateway_name', options_list=('--gateway-name',), help='The name of the application gateway.')
-
-register_cli_argument('network application-gateway waf-config', 'disabled_rule_groups', nargs='+')
-register_cli_argument('network application-gateway waf-config', 'disabled_rules', nargs='+')
-register_cli_argument('network application-gateway waf-config list-rule-sets', '_type', options_list=['--type'])
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01') as c:
- c.register_cli_argument('network application-gateway ssl-policy predefined', 'predefined_policy_name', name_arg_type)
-
- c.register_cli_argument('network application-gateway redirect-config', 'redirect_type', options_list=['--type', '-t'], help='HTTP redirection type', **model_choice_list(ResourceType.MGMT_NETWORK, 'ApplicationGatewayRedirectType'))
- c.register_cli_argument('network application-gateway redirect-config', 'include_path', **three_state_flag())
- c.register_cli_argument('network application-gateway redirect-config', 'include_query_string', **three_state_flag())
- c.register_cli_argument('network application-gateway redirect-config', 'target_listener', validator=validate_target_listener, help='Name or ID of the HTTP listener to redirect the request to.')
- c.register_cli_argument('network application-gateway redirect-config', 'target_url', help='URL to redirect the request to.')
-
- c.register_cli_argument('network application-gateway ssl-policy', 'policy_name', name_arg_type)
- c.register_cli_argument('network application-gateway ssl-policy', 'cipher_suites', nargs='+')
- c.register_cli_argument('network application-gateway ssl-policy', 'min_protocol_version')
- c.register_cli_argument('network application-gateway ssl-policy', 'disabled_ssl_protocols', nargs='+', help='Space separated list of protocols to disable.')
-
- c.register_cli_argument('network application-gateway http-settings', 'host_name', help='Host header sent to the backend servers.')
- c.register_cli_argument('network application-gateway http-settings', 'host_name_from_backend_pool', help='Use host name of the backend server as the host header.', **three_state_flag())
- c.register_cli_argument('network application-gateway http-settings', 'affinity_cookie_name', help='Name used for the affinity cookie.')
- c.register_cli_argument('network application-gateway http-settings', 'enable_probe', help='Whether the probe is enabled.', **three_state_flag())
- c.register_cli_argument('network application-gateway http-settings', 'path', help='Path that will prefix all HTTP requests.')
-
- c.register_cli_argument('network application-gateway probe', 'host', default=None, required=False, help='The name of the host to send the probe.')
- c.register_cli_argument('network application-gateway probe', 'host_name_from_http_settings', help='Use host header from HTTP settings.', **three_state_flag())
- c.register_cli_argument('network application-gateway probe', 'min_servers', type=int, help='Minimum number of servers that are always marked healthy.')
- c.register_cli_argument('network application-gateway probe', 'match_body', help='Body that must be contained in the health response.')
- c.register_cli_argument('network application-gateway probe', 'match_status_codes', nargs='+', help='Space-separated list of allowed ranges of healthy status codes for the health response.')
-
- c.register_cli_argument('network application-gateway url-path-map', 'default_redirect_config', help='The name or ID of the default redirect configuration.')
- c.register_cli_argument('network application-gateway url-path-map', 'redirect_config', help='The name or ID of the redirect configuration to use with the created rule.', arg_group='First Rule')
-
- c.register_cli_argument('network application-gateway rule', 'redirect_config', help='The name or ID of the redirect configuration to use with the created rule.')
-
-for item in ['address_pool', 'http_settings', 'redirect_config', 'paths']:
- register_cli_argument('network application-gateway url-path-map rule', item, arg_group=None)
-
-# ApplicationSecurityGroups
-register_cli_argument('network asg', 'application_security_group_name', name_arg_type, id_part='name')
-register_cli_argument('network asg', 'location', location_type, validator=get_default_location_from_resource_group)
-
-# ExpressRoutes
-register_cli_argument('network express-route', 'circuit_name', circuit_name_type, options_list=('--name', '-n'))
-register_cli_argument('network express-route', 'sku_family', help='Chosen SKU family of ExpressRoute circuit.', **enum_choice_list(ExpressRouteCircuitSkuFamily))
-register_cli_argument('network express-route', 'sku_tier', help='SKU Tier of ExpressRoute circuit.', **enum_choice_list(ExpressRouteCircuitSkuTier))
-register_cli_argument('network express-route', 'bandwidth_in_mbps', options_list=('--bandwidth',), help="Bandwidth in Mbps of the circuit.")
-register_cli_argument('network express-route', 'service_provider_name', options_list=('--provider',), help="Name of the ExpressRoute Service Provider.")
-register_cli_argument('network express-route', 'peering_location', help="Name of the peering location.")
-register_cli_argument('network express-route', 'device_path', options_list=('--path',), **enum_choice_list(device_path_values))
-register_cli_argument('network express-route', 'vlan_id', type=int)
-register_cli_argument('network express-route', 'location', location_type, validator=get_default_location_from_resource_group)
-
-register_cli_argument('network express-route auth', 'circuit_name', circuit_name_type)
-register_cli_argument('network express-route auth', 'authorization_name', name_arg_type, id_part='child_name_1', help='Authorization name')
-
-register_cli_argument('network express-route auth create', 'authorization_parameters', ignore_type, validator=process_auth_create_namespace)
-
-register_cli_argument('network express-route peering', 'circuit_name', circuit_name_type)
-register_cli_argument('network express-route peering', 'peering_name', name_arg_type, id_part='child_name_1')
-register_cli_argument('network express-route peering', 'peering_type', validator=validate_peering_type, **enum_choice_list(ExpressRouteCircuitPeeringType))
-register_cli_argument('network express-route peering', 'sku_family', **enum_choice_list(ExpressRouteCircuitSkuFamily))
-register_cli_argument('network express-route peering', 'sku_tier', **enum_choice_list(ExpressRouteCircuitSkuTier))
-register_cli_argument('network express-route peering', 'primary_peer_address_prefix', options_list=['--primary-peer-subnet'])
-register_cli_argument('network express-route peering', 'secondary_peer_address_prefix', options_list=['--secondary-peer-subnet'])
-
-register_cli_argument('network express-route peering', 'advertised_public_prefixes', arg_group='Microsoft Peering', nargs='+')
-register_cli_argument('network express-route peering', 'customer_asn', arg_group='Microsoft Peering')
-register_cli_argument('network express-route peering', 'routing_registry_name', arg_group='Microsoft Peering', **enum_choice_list(routing_registry_values))
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2016-12-01') as c:
- c.register_cli_argument('network express-route peering', 'route_filter', arg_group='Microsoft Peering', help='Name or ID of a route filter to apply to the peering settings.', validator=validate_route_filter)
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01') as c:
- register_cli_argument('network express-route peering', 'ip_version', help='The IP version to update Microsoft Peering settings for.', arg_group='Microsoft Peering', **enum_choice_list(['IPv4', 'IPv6']))
-
-# Local Gateway
-register_cli_argument('network local-gateway', 'local_network_gateway_name', name_arg_type, help='Name of the local network gateway.', completer=get_resource_name_completion_list('Microsoft.Network/localNetworkGateways'), id_part='name')
-register_cli_argument('network local-gateway', 'local_address_prefix', nargs='+', options_list=('--local-address-prefixes',), help='List of CIDR block prefixes representing the address space of the OnPremise VPN\'s subnet.')
-register_cli_argument('network local-gateway', 'gateway_ip_address', help='Gateway\'s public IP address. (e.g. 10.1.1.1).')
-register_cli_argument('network local-gateway', 'bgp_peering_address', arg_group='BGP Peering', help='IP address from the OnPremise VPN\'s subnet to use for BGP peering.')
-
-register_cli_argument('network local-gateway create', 'use_bgp_settings', ignore_type)
-register_cli_argument('network local-gateway create', 'asn', validator=process_local_gateway_create_namespace)
-
-
-for item in ['local-gateway', 'vnet-gateway']:
- register_cli_argument('network {}'.format(item), 'asn', arg_group='BGP Peering', help='Autonomous System Number to use for the BGP settings.')
- register_cli_argument('network {}'.format(item), 'peer_weight', arg_group='BGP Peering', help='Weight (0-100) added to routes learned through BGP peering.')
-
-# NIC
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2016-09-01') as c:
- IPVersion = get_sdk(ResourceType.MGMT_NETWORK, 'IPVersion', mod='models')
- c.register_cli_argument('network nic create', 'private_ip_address_version', help='The private IP address version to use.', default=IPVersion.ipv4.value if IPVersion else '')
- c.register_cli_argument('network nic', 'enable_accelerated_networking', options_list=['--accelerated-networking'], help='Enable accelerated networking.', **three_state_flag())
-
-register_cli_argument('network nic', 'network_interface_name', nic_type, options_list=('--name', '-n'))
-register_cli_argument('network nic', 'internal_dns_name_label', options_list=('--internal-dns-name',), help='The internal DNS name label.', arg_group='DNS')
-register_cli_argument('network nic', 'dns_servers', help='Space separated list of DNS server IP addresses.', nargs='+', arg_group='DNS')
-register_cli_argument('network nic', 'enable_ip_forwarding', options_list=('--ip-forwarding',), help='Enable IP forwarding.', **three_state_flag())
-
-register_cli_argument('network nic create', 'network_interface_name', nic_type, options_list=('--name', '-n'), id_part=None, validator=process_nic_create_namespace)
-
-public_ip_help = get_folded_parameter_help_string('public IP address', allow_none=True, default_none=True)
-register_cli_argument('network nic create', 'public_ip_address', help=public_ip_help, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'))
-
-nsg_help = get_folded_parameter_help_string('network security group', allow_none=True, default_none=True)
-register_cli_argument('network nic create', 'network_security_group', help=nsg_help, completer=get_resource_name_completion_list('Microsoft.Network/networkSecurityGroups'))
-
-subnet_help = get_folded_parameter_help_string('subnet', other_required_option='--vnet-name')
-register_cli_argument('network nic create', 'subnet', help=subnet_help, completer=get_subnet_completion_list())
-
-register_cli_argument('network nic update', 'network_security_group', help='Name or ID of the associated network security group.', validator=get_nsg_validator(), completer=get_resource_name_completion_list('Microsoft.Network/networkSecurityGroups'))
-register_cli_argument('network nic update', 'dns_servers', help='Space separated list of DNS server IP addresses. Use "" to revert to default Azure servers.', nargs='+', arg_group='DNS')
-
-for item in ['create', 'ip-config update', 'ip-config create']:
- register_extra_cli_argument('network nic {}'.format(item), 'load_balancer_name', options_list=('--lb-name',), completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'), help='The name of the load balancer to use when adding NAT rules or address pools by name (ignored when IDs are specified).')
- register_cli_argument('network nic {}'.format(item), 'load_balancer_backend_address_pool_ids', options_list=('--lb-address-pools',), nargs='+', validator=validate_address_pool_id_list, help='Space separated list of names or IDs of load balancer address pools to associate with the NIC. If names are used, --lb-name must be specified.', completer=get_lb_subresource_completion_list('backendAddresPools'))
- register_cli_argument('network nic {}'.format(item), 'load_balancer_inbound_nat_rule_ids', options_list=('--lb-inbound-nat-rules',), nargs='+', validator=validate_inbound_nat_rule_id_list, help='Space separated list of names or IDs of load balancer inbound NAT rules to associate with the NIC. If names are used, --lb-name must be specified.', completer=get_lb_subresource_completion_list('inboundNatRules'))
-
- with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-09-01') as c:
- c.register_cli_argument('network nic {}'.format(item), 'application_security_groups', help='Space separated list of application security groups.', nargs='+', validator=get_asg_validator('application_security_groups'))
-
-
-register_cli_argument('network nic ip-config', 'network_interface_name', options_list=('--nic-name',), metavar='NIC_NAME', help='The network interface (NIC).', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/networkInterfaces'))
-register_cli_argument('network nic ip-config', 'ip_config_name', options_list=('--name', '-n'), metavar='IP_CONFIG_NAME', help='The name of the IP configuration.', id_part='child_name_1')
-register_cli_argument('network nic ip-config', 'resource_name', options_list=('--nic-name',), metavar='NIC_NAME', help='The network interface (NIC).', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/networkInterfaces'))
-register_cli_argument('network nic ip-config', 'item_name', options_list=('--name', '-n'), metavar='IP_CONFIG_NAME', help='The name of the IP configuration.', id_part='child_name_1')
-register_cli_argument('network nic ip-config', 'subnet', validator=get_subnet_validator(), help='Name or ID of an existing subnet. If name is specified, also specify --vnet-name.')
-register_cli_argument('network nic ip-config', 'virtual_network_name', help='The virtual network (VNet) associated with the subnet (Omit if supplying a subnet id).', id_part=None, metavar='')
-register_cli_argument('network nic ip-config', 'public_ip_address', help='Name or ID of the public IP to use.', validator=get_public_ip_validator())
-register_cli_argument('network nic ip-config', 'private_ip_address_allocation', ignore_type)
-register_cli_argument('network nic ip-config', 'make_primary', action='store_true', help='Set to make this configuration the primary one for the NIC.')
-
-for item in ['address-pool', 'inbound-nat-rule']:
- register_cli_argument('network nic ip-config {}'.format(item), 'ip_config_name', options_list=('--ip-config-name', '-n'), metavar='IP_CONFIG_NAME', help='The name of the IP configuration.', id_part='child_name_1')
- register_cli_argument('network nic ip-config {}'.format(item), 'network_interface_name', nic_type)
-
-register_cli_argument('network nic ip-config address-pool remove', 'network_interface_name', nic_type, id_part=None)
-register_cli_argument('network nic ip-config inbound-nat-rule remove', 'network_interface_name', nic_type, id_part=None)
-
-register_cli_argument('network nic ip-config address-pool', 'load_balancer_name', options_list=('--lb-name',), help='The name of the load balancer associated with the address pool (Omit if suppying an address pool ID).', completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'))
-register_cli_argument('network nic ip-config inbound-nat-rule', 'load_balancer_name', options_list=('--lb-name',), help='The name of the load balancer associated with the NAT rule (Omit if suppying a NAT rule ID).', completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'))
-
-register_cli_argument('network nic ip-config address-pool', 'backend_address_pool', options_list=('--address-pool',), help='The name or ID of an existing backend address pool.', validator=validate_address_pool_name_or_id)
-register_cli_argument('network nic ip-config inbound-nat-rule', 'inbound_nat_rule', options_list=('--inbound-nat-rule',), help='The name or ID of an existing inbound NAT rule.', validator=validate_inbound_nat_rule_name_or_id)
-
-# NSG
-register_cli_argument('network nsg', 'network_security_group_name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Network/networkSecurityGroups'), id_part='name')
-register_cli_argument('network nsg create', 'name', name_arg_type)
-register_cli_argument('network nsg create', 'location', location_type, validator=get_default_location_from_resource_group)
-
-# NSG Rule
-register_cli_argument('network nsg rule', 'security_rule_name', name_arg_type, id_part='child_name_1', help='Name of the network security group rule')
-register_cli_argument('network nsg rule', 'network_security_group_name', options_list=('--nsg-name',), metavar='NSGNAME', help='Name of the network security group', id_part='name')
-
-for item in ['create', 'update']:
- register_cli_argument('network nsg rule {}'.format(item), 'priority', help='Rule priority, between 100 (highest priority) and 4096 (lowest priority). Must be unique for each rule in the collection.', type=int)
- register_cli_argument('network nsg rule {}'.format(item), 'description', help='Rule description')
- register_cli_argument('network nsg rule {}'.format(item), 'access', help=None, **enum_choice_list(SecurityRuleAccess))
- register_cli_argument('network nsg rule {}'.format(item), 'protocol', help='Network protocol this rule applies to.', **enum_choice_list(SecurityRuleProtocol))
- register_cli_argument('network nsg rule {}'.format(item), 'direction', help=None, **enum_choice_list(SecurityRuleDirection))
-
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- register_cli_argument('network nsg rule {}'.format(item), 'source_port_ranges', nargs='+', help="Space-separated list of ports or port ranges between 0-65535. Use '*' to match all ports.", arg_group='Source')
- register_cli_argument('network nsg rule {}'.format(item), 'source_address_prefixes', nargs='+', help="Space-separated list of CIDR prefixes or IP ranges. Alternatively, specify ONE of 'VirtualNetwork', 'AzureLoadBalancer', 'Internet' or '*' to match all IPs.", arg_group='Source')
- register_cli_argument('network nsg rule {}'.format(item), 'destination_port_ranges', nargs='+', help="Space-separated list of ports or port ranges between 0-65535. Use '*' to match all ports.", arg_group='Destination')
- register_cli_argument('network nsg rule {}'.format(item), 'destination_address_prefixes', nargs='+', help="Space-separated list of CIDR prefixes or IP ranges. Alternatively, specify ONE of 'VirtualNetwork', 'AzureLoadBalancer', 'Internet' or '*' to match all IPs.", arg_group='Destination')
- else:
- register_cli_argument('network nsg rule {}'.format(item), 'source_port_range', help="Port or port range between 0-65535. Use '*' to match all ports.", arg_group='Source')
- register_cli_argument('network nsg rule {}'.format(item), 'source_address_prefix', help="CIDR prefix or IP range. Use '*' to match all IPs. Can also use 'VirtualNetwork', 'AzureLoadBalancer', and 'Internet'.", arg_group='Source')
- register_cli_argument('network nsg rule {}'.format(item), 'destination_port_range', help="Port or port range between 0-65535. Use '*' to match all ports.", arg_group='Destination')
- register_cli_argument('network nsg rule {}'.format(item), 'destination_address_prefix', help="CIDR prefix or IP range. Use '*' to match all IPs. Can also use 'VirtualNetwork', 'AzureLoadBalancer', and 'Internet'.", arg_group='Destination')
-
- with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-09-01') as c:
- c.register_cli_argument('network nsg rule {}'.format(item), 'source_asgs', nargs='+', help="Space-separated list of application security group names or IDs.", arg_group='Source', validator=get_asg_validator('source_asgs'))
- c.register_cli_argument('network nsg rule {}'.format(item), 'destination_asgs', nargs='+', help="Space-separated list of application security group names or IDs.", arg_group='Destination', validator=get_asg_validator('destination_asgs'))
-
-register_cli_argument('network nsg rule create', 'network_security_group_name', options_list=('--nsg-name',), metavar='NSGNAME', help='Name of the network security group', id_part=None)
-
-# Public IP
-register_cli_argument('network public-ip', 'public_ip_address_name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'), id_part='name', help='The name of the public IP address.')
-register_cli_argument('network public-ip', 'name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'), help='The name of the public IP address.')
-register_cli_argument('network public-ip', 'reverse_fqdn', help='Reverse FQDN (fully qualified domain name).')
-register_cli_argument('network public-ip', 'dns_name', help='Globally unique DNS entry.')
-register_cli_argument('network public-ip', 'idle_timeout', help='Idle timeout in minutes.')
-
-register_cli_argument('network public-ip create', 'name', completer=None)
-register_cli_argument('network public-ip create', 'dns_name', validator=process_public_ip_create_namespace)
-register_cli_argument('network public-ip create', 'dns_name_type', ignore_type)
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01') as c:
- c.register_cli_argument('network public-ip', 'zone', zone_type)
- c.register_cli_argument('network lb create', 'frontend_ip_zone', CliArgumentType(overrides=zone_type, options_list=('--frontend-ip-zone'), help='used to create internal facing Load balancer'))
- c.register_cli_argument('network lb create', 'public_ip_zone', CliArgumentType(overrides=zone_type, options_list=('--public-ip-zone'), help='used to created a new public ip for the load balancer, a.k.a public facing Load balancer'))
- c.register_cli_argument('network lb frontend-ip', 'zone', zone_type)
-
-for item in ['create', 'update']:
- register_cli_argument('network public-ip {}'.format(item), 'allocation_method', help='IP address allocation method', **enum_choice_list(IPAllocationMethod))
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- register_cli_argument('network public-ip {}'.format(item), 'version', help='IP address type.', default=IPVersion.ipv4.value, **enum_choice_list(IPVersion))
- else:
- register_cli_argument('network public-ip {}'.format(item), 'version', ignore_type)
- with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-08-01') as c:
- c.register_cli_argument('network public-ip {}'.format(item), 'sku', help='Public IP SKU', default='Basic') # **model_choice_list(ResourceType.MGMT_NETWORK, 'PublicIPAddressSkuName'))
-
-# Route table
-register_cli_argument('network route-table', 'route_table_name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Network/routeTables'), id_part='name')
-register_extra_cli_argument('network route-table create', 'tags')
-register_extra_cli_argument('network route-table create', 'location')
-
-register_cli_argument('network route-table create', 'location', location_type, validator=process_route_table_create_namespace)
-register_cli_argument('network route-table create', 'parameters', ignore_type)
-
-# Route Operation
-register_cli_argument('network route-table route', 'route_name', name_arg_type, id_part='child_name_1', help='Route name')
-register_cli_argument('network route-table route', 'route_table_name', options_list=('--route-table-name',), help='Route table name')
-register_cli_argument('network route-table route', 'next_hop_type', help='The type of Azure hop the packet should be sent to.', **enum_choice_list(RouteNextHopType))
-register_cli_argument('network route-table route', 'next_hop_ip_address', help='The IP address packets should be forwarded to when using the VirtualAppliance hop type.')
-register_cli_argument('network route-table route', 'address_prefix', help='The destination CIDR to which the route applies.')
-
-# Route Filter
-register_cli_argument('network route-filter', 'route_filter_name', name_arg_type, help='Name of the route filter.')
-register_cli_argument('network route-filter', 'expand', **enum_choice_list(['peerings']))
-
-register_cli_argument('network route-filter create', 'location', location_type, validator=get_default_location_from_resource_group)
-
-register_cli_argument('network route-filter rule', 'route_filter_name', options_list=['--filter-name'], help='Name of the route filter.', id_part='name')
-register_cli_argument('network route-filter rule', 'rule_name', name_arg_type, help='Name of the route filter rule.', id_part='child_name_1')
-register_cli_argument('network route-filter rule', 'access', help='The access type of the rule.', **model_choice_list(ResourceType.MGMT_NETWORK, 'Access'))
-register_cli_argument('network route-filter rule', 'communities', nargs='+')
-
-register_cli_argument('network route-filter rule create', 'location', location_type, validator=get_default_location_from_resource_group)
-
-# VNET
-register_cli_argument('network vnet', 'virtual_network_name', virtual_network_name_type, options_list=('--name', '-n'), id_part='name')
-register_cli_argument('network vnet', 'vnet_prefixes', nargs='+', help='Space separated list of IP address prefixes for the VNet.', options_list=('--address-prefixes',), metavar='PREFIX')
-register_cli_argument('network vnet', 'dns_servers', nargs='+', help='Space separated list of DNS server IP addresses.', metavar='IP')
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-09-01') as c:
- c.register_cli_argument('network vnet', 'ddos_protection', help='Enable DDoS protection for protected resources in the VNet.', **three_state_flag())
- c.register_cli_argument('network vnet', 'vm_protection', help='Enable VM protection for all subnets in the VNet.', **three_state_flag())
-
-register_cli_argument('network vnet create', 'location', location_type)
-register_cli_argument('network vnet create', 'subnet_name', help='Name of a new subnet to create within the VNet.', validator=process_vnet_create_namespace)
-register_cli_argument('network vnet create', 'subnet_prefix', help='IP address prefix for the new subnet. If omitted, automatically reserves a /24 (or as large as available) block within the VNet address space.', metavar='PREFIX')
-register_cli_argument('network vnet create', 'vnet_name', virtual_network_name_type, options_list=('--name', '-n'), completer=None)
-
-register_cli_argument('network vnet update', 'address_prefixes', nargs='+')
-
-register_cli_argument('network vnet peering', 'virtual_network_name', virtual_network_name_type)
-register_cli_argument('network vnet peering', 'virtual_network_peering_name', options_list=('--name', '-n'), help='The name of the VNet peering.', id_part='child_name_1')
-register_cli_argument('network vnet peering', 'remote_virtual_network', options_list=('--remote-vnet-id',), help='ID of the remote VNet.')
-
-register_cli_argument('network vnet peering create', 'allow_virtual_network_access', options_list=('--allow-vnet-access',), action='store_true', help='Allows VMs in the remote VNet to access all VMs in the local VNet.')
-register_cli_argument('network vnet peering create', 'allow_gateway_transit', action='store_true', help='Allows gateway link to be used in the remote VNet.')
-register_cli_argument('network vnet peering create', 'allow_forwarded_traffic', action='store_true', help='Allows forwarded traffic from the VMs in the remote VNet.')
-register_cli_argument('network vnet peering create', 'use_remote_gateways', action='store_true', help='Allows VNet to use the remote VNet\'s gateway. Remote VNet gateway must have --allow-gateway-transit enabled for remote peering. Only 1 peering can have this flag enabled. Cannot be set if the VNet already has a gateway.')
-
-register_cli_argument('network vnet subnet', 'subnet_name', arg_type=subnet_name_type, options_list=('--name', '-n'), id_part='child_name_1')
-register_cli_argument('network vnet subnet', 'address_prefix', metavar='PREFIX', help='the address prefix in CIDR format.')
-register_cli_argument('network vnet subnet', 'virtual_network_name', virtual_network_name_type)
-register_cli_argument('network vnet subnet', 'network_security_group', validator=get_nsg_validator())
-register_cli_argument('network vnet subnet', 'route_table', help='Name or ID of a route table to associate with the subnet.')
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01') as c:
- c.register_cli_argument('network vnet subnet', 'service_endpoints', nargs='+')
-
-lb_subresources = [
- {'name': 'address-pool', 'display': 'backend address pool', 'ref': 'backend_address_pools'},
- {'name': 'frontend-ip', 'display': 'frontend IP configuration', 'ref': 'frontend_ip_configurations'},
- {'name': 'inbound-nat-rule', 'display': 'inbound NAT rule', 'ref': 'inbound_nat_rules'},
- {'name': 'inbound-nat-pool', 'display': 'inbound NAT pool', 'ref': 'inbound_nat_pools'},
- {'name': 'rule', 'display': 'load balancing rule', 'ref': 'load_balancing_rules'},
- {'name': 'probe', 'display': 'probe', 'ref': 'probes'},
-]
-for item in lb_subresources:
- register_cli_argument('network lb {}'.format(item['name']), 'item_name', options_list=('--name', '-n'), help='The name of the {}'.format(item['display']), completer=get_lb_subresource_completion_list(item['ref']), id_part='child_name_1')
- register_cli_argument('network lb {}'.format(item['name']), 'resource_name', options_list=('--lb-name',), help='The name of the load balancer.', completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'))
- register_cli_argument('network lb {}'.format(item['name']), 'load_balancer_name', load_balancer_name_type)
-
-register_cli_argument('network lb', 'load_balancer_name', load_balancer_name_type, options_list=('--name', '-n'))
-register_cli_argument('network lb', 'frontend_port', help='Port number')
-register_cli_argument('network lb', 'frontend_port_range_start', help='Port number')
-register_cli_argument('network lb', 'frontend_port_range_end', help='Port number')
-register_cli_argument('network lb', 'backend_port', help='Port number')
-register_cli_argument('network lb', 'frontend_ip_name', help='The name of the frontend IP configuration.', completer=get_lb_subresource_completion_list('frontend_ip_configurations'))
-register_cli_argument('network lb', 'floating_ip', help='Enable floating IP.', **enum_choice_list(['true', 'false']))
-register_cli_argument('network lb', 'idle_timeout', help='Idle timeout in minutes.')
-register_cli_argument('network lb', 'protocol', help='', **enum_choice_list(TransportProtocol))
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-08-01') as c:
- c.register_cli_argument('network lb', 'sku', help='Load balancer SKU', default='Basic') # **model_choice_list(ResourceType.MGMT_NETWORK, 'LoadBalancerSkuName'))
-
-for item in ['backend_pool_name', 'backend_address_pool_name']:
- register_cli_argument('network lb', item, options_list=('--backend-pool-name',), help='The name of the backend address pool.', completer=get_lb_subresource_completion_list('backend_address_pools'))
-
-register_cli_argument('network lb create', 'validate', help='Generate and validate the ARM template without creating any resources.', action='store_true', validator=process_lb_create_namespace)
-register_cli_argument('network lb create', 'public_ip_address_allocation', **enum_choice_list(IPAllocationMethod))
-register_cli_argument('network lb create', 'public_ip_dns_name', help='Globally unique DNS name for a new public IP.')
-
-public_ip_help = get_folded_parameter_help_string('public IP address', allow_none=True, allow_new=True)
-register_cli_argument('network lb create', 'public_ip_address', help=public_ip_help, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'))
-register_cli_argument('network lb create', 'public_ip_type', ignore_type)
-
-subnet_help = get_folded_parameter_help_string('subnet', other_required_option='--vnet-name', allow_new=True, allow_none=True, default_none=True)
-register_cli_argument('network lb create', 'subnet', help=subnet_help, completer=get_subnet_completion_list())
-register_cli_argument('network lb create', 'subnet_address_prefix', help='The CIDR address prefix to use when creating a new subnet.')
-register_cli_argument('network lb create', 'vnet_name', virtual_network_name_type)
-register_cli_argument('network lb create', 'vnet_address_prefix', help='The CIDR address prefix to use when creating a new VNet.')
-register_cli_argument('network lb create', 'vnet_type', ignore_type)
-
-for item in ['create', 'update']:
- register_cli_argument('network lb frontend-ip {}'.format(item), 'public_ip_address', help='Name or ID of the existing public IP to associate with the configuration.', validator=process_lb_frontend_ip_namespace)
- register_cli_argument('network lb frontend-ip {}'.format(item), 'subnet', help='Name or ID of an existing subnet. If name is specified, also specify --vnet-name.')
- register_cli_argument('network lb frontend-ip {}'.format(item), 'virtual_network_name', virtual_network_name_type, help='The virtual network (VNet) associated with the subnet (Omit if supplying a subnet id).', id_part=None, metavar='')
- register_cli_argument('network lb frontend-ip {}'.format(item), 'private_ip_address', help='Static private IP address to associate with the configuration.')
- register_cli_argument('network lb frontend-ip {}'.format(item), 'private_ip_address_allocation', ignore_type)
-
-register_cli_argument('network lb probe', 'interval', help='Probing time interval in seconds.')
-register_cli_argument('network lb probe', 'path', help='The endpoint to interrogate (http only).')
-register_cli_argument('network lb probe', 'port', help='The port to interrogate.')
-register_cli_argument('network lb probe', 'protocol', help='The protocol to probe.', **enum_choice_list(ProbeProtocol))
-register_cli_argument('network lb probe', 'threshold', help='The number of consecutive probe failures before an instance is deemed unhealthy.')
-
-register_cli_argument('network lb rule', 'load_distribution', help='Affinity rule settings.', **enum_choice_list(LoadDistribution))
-
-register_cli_argument('network nsg create', 'name', name_arg_type)
-
-# VNET gateway
-
-register_cli_argument('network vnet-gateway', 'virtual_network_gateway_name', options_list=('--name', '-n'), help='Name of the VNet gateway.', completer=get_resource_name_completion_list('Microsoft.Network/virtualNetworkGateways'), id_part='name')
-register_cli_argument('network vnet-gateway', 'cert_name', help='Root certificate name', options_list=('--name', '-n'))
-register_cli_argument('network vnet-gateway', 'gateway_name', help='Virtual network gateway name')
-register_cli_argument('network vnet-gateway', 'gateway_type', help='The gateway type.', **enum_choice_list(VirtualNetworkGatewayType))
-register_cli_argument('network vnet-gateway', 'sku', help='VNet gateway SKU.', **enum_choice_list(VirtualNetworkGatewaySkuName))
-register_cli_argument('network vnet-gateway', 'vpn_type', help='VPN routing type.', **enum_choice_list(VpnType))
-register_cli_argument('network vnet-gateway', 'bgp_peering_address', arg_group='BGP Peering', help='IP address to use for BGP peering.')
-register_cli_argument('network vnet-gateway', 'public_ip_address', options_list=['--public-ip-addresses'], nargs='+', help='Specify a single public IP (name or ID) for an active-standby gateway. Specify two space-separated public IPs for an active-active gateway.', completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'))
-register_cli_argument('network vnet-gateway', 'address_prefixes', help='Space separated list of CIDR prefixes representing the address space for the P2S client.', nargs='+', arg_group='VPN Client')
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01') as c:
- c.register_cli_argument('network vnet-gateway', 'radius_server', help='Radius server address to connect to.', arg_group='VPN Client')
- c.register_cli_argument('network vnet-gateway', 'radius_secret', help='Radius secret to use for authentication.', arg_group='VPN Client')
- c.register_cli_argument('network vnet-gateway', 'client_protocol', help='Protocols to use for connecting', nargs='+', arg_group='VPN Client', **model_choice_list(ResourceType.MGMT_NETWORK, 'VpnClientProtocol'))
-
-register_cli_argument('network vnet-gateway create', 'asn', validator=process_vnet_gateway_create_namespace)
-
-register_cli_argument('network vnet-gateway update', 'enable_bgp', help='Enable BGP (Border Gateway Protocol)', arg_group='BGP Peering', **enum_choice_list(['true', 'false']))
-register_cli_argument('network vnet-gateway update', 'virtual_network', virtual_network_name_type, options_list=('--vnet',), help="Name or ID of a virtual network that contains a subnet named 'GatewaySubnet'.", validator=process_vnet_gateway_update_namespace)
-
-vnet_help = "Name or ID of an existing virtual network which has a subnet named 'GatewaySubnet'."
-register_cli_argument('network vnet-gateway create', 'virtual_network', options_list=('--vnet',), help=vnet_help)
-
-register_cli_argument('network vnet-gateway root-cert create', 'public_cert_data', help='Base64 contents of the root certificate file or file path.', type=file_type, completer=FilesCompleter(), validator=load_cert_file('public_cert_data'))
-register_cli_argument('network vnet-gateway root-cert create', 'cert_name', help='Root certificate name', options_list=('--name', '-n'))
-register_cli_argument('network vnet-gateway root-cert create', 'gateway_name', help='Virtual network gateway name')
-
-register_cli_argument('network vnet-gateway revoked-cert create', 'thumbprint', help='Certificate thumbprint.')
-
-register_extra_cli_argument('network vnet-gateway update', 'address_prefixes', options_list=('--address-prefixes',), help='List of address prefixes for the VPN gateway. Prerequisite for uploading certificates.', nargs='+')
-
-register_cli_argument('network vnet-gateway vpn-client', 'processor_architecture', **model_choice_list(ResourceType.MGMT_NETWORK, 'ProcessorArchitecture'))
-register_cli_argument('network vnet-gateway vpn-client', 'authentication_method', **model_choice_list(ResourceType.MGMT_NETWORK, 'AuthenticationMethod'))
-register_cli_argument('network vnet-gateway vpn-client', 'radius_server_auth_certificate', help='Public certificate data for the Radius server auth certificate in Base-64 format. Required only if external Radius auth has been configured with EAPTLS auth.')
-register_cli_argument('network vnet-gateway vpn-client', 'client_root_certificates', nargs='+', help='Space separated list of client root certificate public certificate data in Base-64 format. Optional for external Radius-based auth with EAPTLS')
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, '2017-06-01') as c:
- c.register_cli_argument('network vnet-gateway vpn-client', 'use_legacy', help='Generate VPN client package using legacy implementation.', **three_state_flag())
-
-# VPN connection
-register_cli_argument('network vpn-connection', 'virtual_network_gateway_connection_name', options_list=('--name', '-n'), metavar='NAME', id_part='name', help='Connection name.')
-register_cli_argument('network vpn-connection', 'shared_key', help='Shared IPSec key.')
-register_cli_argument('network vpn-connection', 'connection_name', help='Connection name.')
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-03-01') as c:
- c.register_cli_argument('network vpn-connection', 'use_policy_based_traffic_selectors', help='Enable policy-based traffic selectors.', **three_state_flag())
-
-register_cli_argument('network vpn-connection create', 'connection_name', options_list=('--name', '-n'), metavar='NAME', help='Connection name.')
-register_cli_argument('network vpn-connection create', 'vnet_gateway1', validator=process_vpn_connection_create_namespace)
-register_cli_argument('network vpn-connection create', 'connection_type', ignore_type)
-
-for item in ['vnet_gateway2', 'local_gateway2', 'express_route_circuit2']:
- register_cli_argument('network vpn-connection create', item, arg_group='Destination')
-
-register_cli_argument('network vpn-connection update', 'routing_weight', type=int, help='Connection routing weight')
-register_cli_argument('network vpn-connection update', 'enable_bgp', help='Enable BGP (Border Gateway Protocol)', **enum_choice_list(['true', 'false']))
-
-# VPN connection shared key
-register_cli_argument('network vpn-connection shared-key', 'connection_shared_key_name', options_list=('--name', '-n'), id_part='name')
-register_cli_argument('network vpn-connection shared-key', 'virtual_network_gateway_connection_name', options_list=('--connection-name',), metavar='NAME', id_part='name')
-register_cli_argument('network vpn-connection shared-key', 'key_length', type=int)
-
-# VPN connection IPSec policy
-param_map = {
- 'dh_group': 'DhGroup',
- 'ike_encryption': 'IkeEncryption',
- 'ike_integrity': 'IkeIntegrity',
- 'ipsec_encryption': 'IpsecEncryption',
- 'ipsec_integrity': 'IpsecIntegrity',
- 'pfs_group': 'PfsGroup'
-}
-for dest, model_name in param_map.items():
- register_cli_argument('network vpn-connection ipsec-policy', dest, **model_choice_list(ResourceType.MGMT_NETWORK, model_name))
-register_cli_argument('network vpn-connection ipsec-policy', 'sa_data_size_kilobytes', options_list=['--sa-max-size'], type=int)
-register_cli_argument('network vpn-connection ipsec-policy', 'sa_life_time_seconds', options_list=['--sa-lifetime'], type=int)
-
-# Traffic manager profiles
-register_cli_argument('network traffic-manager profile', 'traffic_manager_profile_name', name_arg_type, id_part='name', help='Traffic manager profile name', completer=get_resource_name_completion_list('Microsoft.Network/trafficManagerProfiles'))
-register_cli_argument('network traffic-manager profile', 'profile_name', name_arg_type, id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/trafficManagerProfiles'))
-register_cli_argument('network traffic-manager profile', 'monitor_path', help='Path to monitor.')
-register_cli_argument('network traffic-manager profile', 'monitor_port', help='Port to monitor.', type=int)
-register_cli_argument('network traffic-manager profile', 'monitor_protocol', help='Monitor protocol.', **enum_choice_list(MonitorProtocol))
-register_cli_argument('network traffic-manager profile', 'profile_status', options_list=('--status',), help='Status of the Traffic Manager profile.', **enum_choice_list(['Enabled', 'Disabled']))
-register_cli_argument('network traffic-manager profile', 'routing_method', help='Routing method.', **enum_choice_list(['Performance', 'Weighted', 'Priority', 'Geographic']))
-register_cli_argument('network traffic-manager profile', 'unique_dns_name', help="Relative DNS name for the traffic manager profile. Resulting FQDN will be `.trafficmanager.net` and must be globally unique.")
-register_cli_argument('network traffic-manager profile', 'ttl', help='DNS config time-to-live in seconds.', type=int)
-
-register_cli_argument('network traffic-manager profile create', 'status', help='Create an enabled or disabled profile.', **enum_choice_list(['Enabled', 'Disabled']))
-
-register_cli_argument('network traffic-manager profile check-dns', 'name', name_arg_type, help='DNS prefix to verify availability for.', required=True)
-register_cli_argument('network traffic-manager profile check-dns', 'type', ignore_type, default='Microsoft.Network/trafficManagerProfiles')
-
-# Traffic manager endpoints
-endpoint_types = ['azureEndpoints', 'externalEndpoints', 'nestedEndpoints']
-register_cli_argument('network traffic-manager endpoint', 'endpoint_name', name_arg_type, id_part='child_name_1', help='Endpoint name.', completer=get_tm_endpoint_completion_list())
-register_cli_argument('network traffic-manager endpoint', 'endpoint_type', options_list=['--type', '-t'], help='Endpoint type.', id_part='child_name_1', **enum_choice_list(endpoint_types))
-register_cli_argument('network traffic-manager endpoint', 'profile_name', help='Name of parent profile.', completer=get_resource_name_completion_list('Microsoft.Network/trafficManagerProfiles'), id_part='name')
-register_cli_argument('network traffic-manager endpoint', 'endpoint_location', help="Location of the external or nested endpoints when using the 'Performance' routing method.")
-register_cli_argument('network traffic-manager endpoint', 'endpoint_monitor_status', help='The monitoring status of the endpoint.')
-register_cli_argument('network traffic-manager endpoint', 'endpoint_status', help="The status of the endpoint. If enabled the endpoint is probed for endpoint health and included in the traffic routing method.")
-register_cli_argument('network traffic-manager endpoint', 'min_child_endpoints', help="The minimum number of endpoints that must be available in the child profile for the parent profile to be considered available. Only applicable to an endpoint of type 'NestedEndpoints'.")
-register_cli_argument('network traffic-manager endpoint', 'priority', help="Priority of the endpoint when using the 'Priority' traffic routing method. Values range from 1 to 1000, with lower values representing higher priority.", type=int)
-register_cli_argument('network traffic-manager endpoint', 'target', help='Fully-qualified DNS name of the endpoint.')
-register_cli_argument('network traffic-manager endpoint', 'target_resource_id', help="The Azure Resource URI of the endpoint. Not applicable for endpoints of type 'ExternalEndpoints'.")
-register_cli_argument('network traffic-manager endpoint', 'weight', help="Weight of the endpoint when using the 'Weighted' traffic routing method. Values range from 1 to 1000.", type=int)
-register_cli_argument('network traffic-manager endpoint', 'geo_mapping', nargs='+')
-
-register_cli_argument('network traffic-manager endpoint create', 'target', help='Fully-qualified DNS name of the endpoint.', validator=process_tm_endpoint_create_namespace)
-
-# DNS
-register_cli_argument('network dns', 'record_set_name', name_arg_type, help='The name of the record set, relative to the name of the zone.')
-register_cli_argument('network dns', 'relative_record_set_name', name_arg_type, help='The name of the record set, relative to the name of the zone.')
-register_cli_argument('network dns', 'zone_name', options_list=('--zone-name', '-z'), help='The name of the zone.', type=dns_zone_name_type)
-register_cli_argument('network dns', 'metadata', nargs='+', help='Metadata in space-separated key=value pairs. This overwrites any existing metadata.', validator=validate_metadata)
-
-register_cli_argument('network dns zone', 'zone_name', name_arg_type)
-register_cli_argument('network dns zone', 'location', ignore_type)
-
-# TODO: remove when feature ready
-register_cli_argument('network dns zone', 'zone_type', ignore_type)
-register_cli_argument('network dns zone', 'registration_vnets', ignore_type)
-register_cli_argument('network dns zone', 'resolution_vnets', ignore_type)
-
-# TODO: Uncomment when feature is ready
-# register_cli_argument('network dns zone', 'zone_type', help='Type of DNS zone to create.', **enum_choice_list(ZoneType))
-# register_cli_argument('network dns zone', 'registration_vnets', arg_group='Private Zone', nargs='+', help='Space separated names or IDs of virtual networks that register hostnames in this DNS zone.', validator=get_vnet_validator('registration_vnets'))
-# register_cli_argument('network dns zone', 'resolution_vnets', arg_group='Private Zone', nargs='+', help='Space separated names or IDs of virtual networks that resolve records in this DNS zone.', validator=get_vnet_validator('resolution_vnets'))
-
-register_cli_argument('network dns zone import', 'file_name', options_list=('--file-name', '-f'), type=file_type, completer=FilesCompleter(), help='Path to the DNS zone file to import')
-register_cli_argument('network dns zone export', 'file_name', options_list=('--file-name', '-f'), type=file_type, completer=FilesCompleter(), help='Path to the DNS zone file to save')
-register_cli_argument('network dns zone update', 'if_none_match', ignore_type)
-
-for item in ['record_type', 'record_set_type']:
- register_cli_argument('network dns record-set', item, ignore_type, validator=validate_dns_record_type)
-
-register_cli_argument('network dns record-set create', 'ttl', help='Record set TTL (time-to-live)')
-register_cli_argument('network dns record-set create', 'if_none_match', help='Create the record set only if it does not already exist.', action='store_true')
-
-for item in ['a', 'aaaa', 'cname', 'mx', 'ns', 'ptr', 'srv', 'txt', 'caa']:
- register_cli_argument('network dns record-set {} add-record'.format(item), 'record_set_name', options_list=('--record-set-name', '-n'), help='The name of the record set relative to the zone. Creates a new record set if one does not exist.')
- register_cli_argument('network dns record-set {} remove-record'.format(item), 'record_set_name', options_list=('--record-set-name', '-n'), help='The name of the record set relative to the zone.')
- register_cli_argument('network dns record-set {} remove-record'.format(item), 'keep_empty_record_set', action='store_true', help='Keep the empty record set if the last record is removed.')
-register_cli_argument('network dns record-set cname set-record', 'record_set_name', options_list=('--record-set-name', '-n'), help='The name of the record set relative to the zone. Creates a new record set if one does not exist.')
-
-register_cli_argument('network dns record-set soa', 'relative_record_set_name', ignore_type, default='@')
-
-register_cli_argument('network dns record-set a', 'ipv4_address', options_list=('--ipv4-address', '-a'), help='IPV4 address in string notation.')
-register_cli_argument('network dns record-set aaaa', 'ipv6_address', options_list=('--ipv6-address', '-a'), help='IPV6 address in string notation.')
-register_cli_argument('network dns record-set caa', 'value', help='Value of the CAA record.')
-register_cli_argument('network dns record-set caa', 'flags', help='Integer flags for the record.', type=int)
-register_cli_argument('network dns record-set caa', 'tag', help='Record tag')
-register_cli_argument('network dns record-set cname', 'cname', options_list=('--cname', '-c'), help='Canonical name.')
-register_cli_argument('network dns record-set mx', 'exchange', options_list=('--exchange', '-e'), help='Exchange metric.')
-register_cli_argument('network dns record-set mx', 'preference', options_list=('--preference', '-p'), help='Preference metric.')
-register_cli_argument('network dns record-set ns', 'dname', options_list=('--nsdname', '-d'), help='Name server domain name.')
-register_cli_argument('network dns record-set ptr', 'dname', options_list=('--ptrdname', '-d'), help='PTR target domain name.')
-register_cli_argument('network dns record-set soa', 'host', options_list=('--host', '-t'), help='Host name.')
-register_cli_argument('network dns record-set soa', 'email', options_list=('--email', '-e'), help='Email address.')
-register_cli_argument('network dns record-set soa', 'expire_time', options_list=('--expire-time', '-x'), help='Expire time (seconds).')
-register_cli_argument('network dns record-set soa', 'minimum_ttl', options_list=('--minimum-ttl', '-m'), help='Minimum TTL (time-to-live, seconds).')
-register_cli_argument('network dns record-set soa', 'refresh_time', options_list=('--refresh-time', '-f'), help='Refresh value (seconds).')
-register_cli_argument('network dns record-set soa', 'retry_time', options_list=('--retry-time', '-r'), help='Retry time (seconds).')
-register_cli_argument('network dns record-set soa', 'serial_number', options_list=('--serial-number', '-s'), help='Serial number.')
-register_cli_argument('network dns record-set srv', 'priority', options_list=('--priority', '-p'), help='Priority metric.')
-register_cli_argument('network dns record-set srv', 'weight', options_list=('--weight', '-w'), help='Weight metric.')
-register_cli_argument('network dns record-set srv', 'port', options_list=('--port', '-r'), help='Service port.')
-register_cli_argument('network dns record-set srv', 'target', options_list=('--target', '-t'), help='Target domain name.')
-register_cli_argument('network dns record-set txt', 'value', options_list=('--value', '-v'), nargs='+', help='Space separated list of text values which will be concatenated together.')
-
-# NetworkWatcher commands
-register_cli_argument('network watcher', 'network_watcher_name', name_arg_type, help='Name of the Network Watcher.')
-
-register_cli_argument('network watcher configure', 'locations', location_type, options_list=['--locations', '-l'], nargs='+')
-register_cli_argument('network watcher configure', 'enabled', **three_state_flag())
-
-register_cli_argument('network watcher show-topology', 'network_watcher_name', ignore_type, options_list=['--watcher'])
-register_cli_argument('network watcher show-topology', 'resource_group_name', ignore_type, options_list=['--watcher-resource-group'])
-register_cli_argument('network watcher show-topology', 'target_resource_group_name', options_list=['--resource-group', '-g'], completer=get_resource_group_completion_list)
-register_extra_cli_argument('network watcher show-topology', 'location', validator=process_nw_topology_namespace)
-
-register_cli_argument('network watcher create', 'location', validator=get_default_location_from_resource_group)
-
-register_cli_argument('network watcher', 'watcher_rg', ignore_type)
-register_cli_argument('network watcher', 'watcher_name', ignore_type)
-
-for item in ['test-ip-flow', 'show-next-hop', 'show-security-group-view', 'packet-capture create']:
- register_cli_argument('network watcher {}'.format(item), 'watcher_name', ignore_type, validator=get_network_watcher_from_vm)
- register_cli_argument('network watcher {}'.format(item), 'location', ignore_type)
- register_cli_argument('network watcher {}'.format(item), 'watcher_rg', ignore_type)
- register_cli_argument('network watcher {}'.format(item), 'vm', help='Name or ID of the VM to target.')
- register_cli_argument('network watcher {}'.format(item), 'resource_group_name', help='Name of the resource group the target VM is in. Do not use when supplying VM ID.')
- register_cli_argument('network watcher {}'.format(item), 'nic', help='Name or ID of the NIC resource to test. If the VM has multiple NICs and IP forwarding is enabled on any of them, this parameter is required.')
-
-register_cli_argument('network watcher test-connectivity', 'source_resource', validator=process_nw_test_connectivity_namespace)
-register_cli_argument('network watcher test-connectivity', 'source_port', type=int)
-register_cli_argument('network watcher test-connectivity', 'dest_resource', arg_group='Destination')
-register_cli_argument('network watcher test-connectivity', 'dest_address', arg_group='Destination')
-register_cli_argument('network watcher test-connectivity', 'dest_port', type=int, arg_group='Destination')
-
-register_cli_argument('network watcher packet-capture', 'capture_name', name_arg_type, help='Name of the packet capture session.')
-register_cli_argument('network watcher packet-capture', 'storage_account', arg_group='Storage')
-register_cli_argument('network watcher packet-capture', 'storage_path', arg_group='Storage')
-register_cli_argument('network watcher packet-capture', 'file_path', arg_group='Storage')
-register_cli_argument('network watcher packet-capture', 'filters', type=get_json_object)
-
-register_cli_argument('network watcher flow-log', 'enabled', validator=process_nw_flow_log_set_namespace, **three_state_flag())
-
-register_cli_argument('network watcher flow-log show', 'nsg', validator=process_nw_flow_log_show_namespace)
-
-for item in ['list', 'stop', 'delete', 'show', 'show-status']:
- register_extra_cli_argument('network watcher packet-capture {}'.format(item), 'location')
- register_cli_argument('network watcher packet-capture {}'.format(item), 'location', location_type, required=True)
- register_cli_argument('network watcher packet-capture {}'.format(item), 'packet_capture_name', name_arg_type)
- register_cli_argument('network watcher packet-capture {}'.format(item), 'network_watcher_name', ignore_type, options_list=['--network-watcher-name'], validator=get_network_watcher_from_location(remove=True, rg_name='resource_group_name', watcher_name='network_watcher_name'))
- register_cli_argument('network watcher packet-capture {}'.format(item), 'resource_group_name', ignore_type)
-
-register_cli_argument('network watcher packet-capture create', 'vm', validator=process_nw_packet_capture_create_namespace)
-
-register_cli_argument('network watcher test-ip-flow', 'direction', **enum_choice_list(Direction))
-register_cli_argument('network watcher test-ip-flow', 'protocol', **enum_choice_list(Protocol))
-
-register_cli_argument('network watcher show-next-hop', 'source_ip', help='Source IPv4 address.')
-register_cli_argument('network watcher show-next-hop', 'dest_ip', help='Destination IPv4 address.')
-
-register_cli_argument('network watcher troubleshooting', 'resource_type', options_list=['--resource-type', '-t'], id_part='resource_type', **enum_choice_list(['vnetGateway', 'vpnConnection']))
-register_cli_argument('network watcher troubleshooting start', 'resource', help='Name or ID of the resource to troubleshoot.', validator=process_nw_troubleshooting_start_namespace)
-register_cli_argument('network watcher troubleshooting show', 'resource', help='Name or ID of the resource to troubleshoot.', validator=process_nw_troubleshooting_show_namespace)
+ with self.argument_context('network application-gateway {}'.format(item)) as c:
+ c.argument('connection_draining_timeout', min_api='2016-12-01', type=int, help='The time in seconds after a backend server is removed during which on open connection remains active. Range: 0 (disabled) to 3600', arg_group='Gateway' if item == 'create' else None)
+
+ with self.argument_context('network application-gateway address-pool') as c:
+ c.argument('servers', ag_servers_type, arg_group=None)
+
+ with self.argument_context('network application-gateway auth-cert') as c:
+ c.argument('cert_data', options_list=['--cert-file'], help='Certificate file path.', type=file_type, completer=FilesCompleter(), validator=validate_auth_cert)
+
+ with self.argument_context('network application-gateway frontend-ip') as c:
+ c.argument('subnet', validator=get_subnet_validator(), help='The name or ID of the subnet.')
+ c.argument('public_ip_address', validator=get_public_ip_validator(), help='The name or ID of the public IP address.', completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'))
+ c.argument('virtual_network_name', help='The name of the virtual network corresponding to the subnet.', id_part=None, arg_group=None)
+
+ for item in ['frontend-port', 'http-settings']:
+ with self.argument_context('network application-gateway {}'.format(item)) as c:
+ c.argument('port', help='The port number.', type=int)
+
+ for item in ['http-settings', 'probe']:
+ with self.argument_context('network application-gateway {}'.format(item)) as c:
+ c.argument('protocol', http_protocol_type, help='The HTTP settings protocol.')
+
+ with self.argument_context('network application-gateway http-listener') as c:
+ c.argument('frontend_ip', help='The name or ID of the frontend IP configuration.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'frontend_ip_configurations'))
+ c.argument('frontend_port', help='The name or ID of the frontend port.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'frontend_ports'))
+ c.argument('ssl_cert', help='The name or ID of the SSL certificate to use.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'ssl_certificates'))
+ c.ignore('protocol')
+ c.argument('host_name', help='Host name to use for multisite gateways.')
+
+ with self.argument_context('network application-gateway http-listener create') as c:
+ c.argument('frontend_ip', help='The name or ID of the frontend IP configuration. {}'.format(default_existing))
+
+ with self.argument_context('network application-gateway rule create') as c:
+ c.argument('address_pool', help='The name or ID of the backend address pool. {}'.format(default_existing))
+ c.argument('http_settings', help='The name or ID of the HTTP settings. {}'.format(default_existing))
+ c.argument('http_listener', help='The name or ID of the HTTP listener. {}'.format(default_existing))
+
+ with self.argument_context('network lb rule create') as c:
+ c.argument('backend_address_pool_name', help='The name of the backend address pool. {}'.format(default_existing))
+ c.argument('frontend_ip_name', help='The name of the frontend IP configuration. {}'.format(default_existing))
+
+ with self.argument_context('network lb inbound-nat-rule create') as c:
+ c.argument('frontend_ip_name', help='The name of the frontend IP configuration. {}'.format(default_existing))
+
+ with self.argument_context('network application-gateway http-settings') as c:
+ c.argument('cookie_based_affinity', cookie_based_affinity_type, help='Enable or disable cookie-based affinity.')
+ c.argument('timeout', help='Request timeout in seconds.')
+ c.argument('probe', help='Name or ID of the probe to associate with the HTTP settings.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'probes'))
+
+ with self.argument_context('network application-gateway probe') as c:
+ c.argument('host', help='The name of the host to send the probe.')
+ c.argument('path', help='The relative path of the probe. Valid paths start from "/"')
+ c.argument('interval', help='The time interval in seconds between consecutive probes.')
+ c.argument('threshold', help='The number of failed probes after which the back end server is marked down.')
+ c.argument('timeout', help='The probe timeout in seconds.')
+
+ with self.argument_context('network application-gateway rule') as c:
+ c.argument('address_pool', help='The name or ID of the backend address pool.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_address_pools'))
+ c.argument('http_listener', help='The name or ID of the HTTP listener.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'http_listeners'))
+ c.argument('http_settings', help='The name or ID of the backend HTTP settings.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_http_settings_collection'))
+ c.argument('rule_type', help='The rule type (Basic, PathBasedRouting).')
+ c.argument('url_path_map', help='The name or ID of the URL path map.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'url_path_maps'))
+
+ with self.argument_context('network application-gateway ssl-cert') as c:
+ c.argument('cert_data', options_list=('--cert-file',), type=file_type, completer=FilesCompleter(), help='The path to the PFX certificate file.', validator=validate_cert)
+ c.argument('cert_password', help='Certificate password.')
+
+ with self.argument_context('network application-gateway ssl-policy') as c:
+ c.argument('clear', action='store_true', help='Clear SSL policy.')
+ c.argument('disabled_ssl_protocols', nargs='+', help='Space separated list of protocols to disable.', arg_type=get_enum_type(ApplicationGatewaySslProtocol))
+
+ with self.argument_context('network application-gateway url-path-map') as c:
+ c.argument('rule_name', help='The name of the url-path-map rule.', arg_group='First Rule')
+ c.argument('paths', nargs='+', help='Space separated list of paths to associate with the rule. Valid paths start and end with "/" (ex: "/bar/")', arg_group='First Rule')
+ c.argument('address_pool', help='The name or ID of the backend address pool to use with the created rule.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_address_pools'), arg_group='First Rule')
+ c.argument('http_settings', help='The name or ID of the HTTP settings to use with the created rule.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_http_settings_collection'), arg_group='First Rule')
+
+ with self.argument_context('network application-gateway url-path-map create') as c:
+ c.argument('default_address_pool', help='The name or ID of the default backend address pool, if different from --address-pool.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_address_pools'))
+ c.argument('default_http_settings', help='The name or ID of the default HTTP settings, if different from --http-settings.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_http_settings_collection'))
+
+ with self.argument_context('network application-gateway url-path-map update') as c:
+ c.argument('default_address_pool', help='The name or ID of the default backend address pool.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_address_pools'))
+ c.argument('default_http_settings', help='The name or ID of the default HTTP settings.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_http_settings_collection'))
+
+ with self.argument_context('network application-gateway url-path-map rule') as c:
+ c.argument('item_name', options_list=('--name', '-n'), help='The name of the url-path-map rule.', completer=get_ag_url_map_rule_completion_list(self.cli_ctx), id_part='child_name_2')
+ c.argument('url_path_map_name', options_list=('--path-map-name',), help='The name of the URL path map.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'url_path_maps'), id_part='child_name_1')
+ c.argument('address_pool', help='The name or ID of the backend address pool. If not specified, the default for the map will be used.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_address_pools'))
+ c.argument('http_settings', help='The name or ID of the HTTP settings. If not specified, the default for the map will be used.', completer=get_ag_subresource_completion_list(self.cli_ctx, 'backend_http_settings_collection'))
+ for item in ['address_pool', 'http_settings', 'redirect_config', 'paths']:
+ c.argument(item, arg_group=None)
+
+ with self.argument_context('network application-gateway url-path-map rule create') as c:
+ c.argument('item_name', options_list=('--name', '-n'), help='The name of the url-path-map rule.', completer=None)
+
+ with self.argument_context('network application-gateway waf-config') as c:
+ c.argument('disabled_rule_groups', nargs='+')
+ c.argument('disabled_rules', nargs='+')
+ c.argument('enabled', help='Specify whether the application firewall is enabled.', arg_type=get_enum_type(['true', 'false']))
+ c.argument('firewall_mode', min_api='2016-09-01', help='Web application firewall mode.', arg_type=get_enum_type(ApplicationGatewayFirewallMode, default='detection'))
+
+ for item in ['ssl-policy', 'waf-config']:
+ with self.argument_context('network application-gateway {}'.format(item)) as c:
+ c.argument('application_gateway_name', options_list=['--gateway-name'], help='The name of the application gateway.')
+
+ with self.argument_context('network application-gateway waf-config list-rule-sets') as c:
+ c.argument('_type', options_list=['--type'])
+
+ with self.argument_context('network application-gateway redirect-config', min_api='2017-06-01') as c:
+ c.argument('redirect_type', options_list=['--type', '-t'], help='HTTP redirection type', arg_type=get_enum_type(ApplicationGatewayRedirectType))
+ c.argument('include_path', arg_type=get_three_state_flag())
+ c.argument('include_query_string', arg_type=get_three_state_flag())
+ c.argument('target_listener', validator=validate_target_listener, help='Name or ID of the HTTP listener to redirect the request to.')
+ c.argument('target_url', help='URL to redirect the request to.')
+
+ with self.argument_context('network application-gateway ssl-policy predefined', min_api='2017-06-01') as c:
+ c.argument('predefined_policy_name', name_arg_type)
+
+ with self.argument_context('network application-gateway ssl-policy', min_api='2017-06-01') as c:
+ c.argument('policy_name', name_arg_type)
+ c.argument('cipher_suites', nargs='+')
+ c.argument('min_protocol_version')
+ c.argument('disabled_ssl_protocols', nargs='+', help='Space separated list of protocols to disable.')
+
+ with self.argument_context('network application-gateway http-settings', min_api='2017-06-01') as c:
+ c.argument('host_name', help='Host header sent to the backend servers.')
+ c.argument('host_name_from_backend_pool', help='Use host name of the backend server as the host header.', arg_type=get_three_state_flag())
+ c.argument('affinity_cookie_name', help='Name used for the affinity cookie.')
+ c.argument('enable_probe', help='Whether the probe is enabled.', arg_type=get_three_state_flag())
+ c.argument('path', help='Path that will prefix all HTTP requests.')
+
+ with self.argument_context('network application-gateway probe', min_api='2017-06-01') as c:
+ c.argument('host', default=None, required=False, help='The name of the host to send the probe.')
+ c.argument('host_name_from_http_settings', help='Use host header from HTTP settings.', arg_type=get_three_state_flag())
+ c.argument('min_servers', type=int, help='Minimum number of servers that are always marked healthy.')
+ c.argument('match_body', help='Body that must be contained in the health response.')
+ c.argument('match_status_codes', nargs='+', help='Space-separated list of allowed ranges of healthy status codes for the health response.')
+
+ with self.argument_context('network application-gateway url-path-map', min_api='2017-06-01') as c:
+ c.argument('default_redirect_config', help='The name or ID of the default redirect configuration.')
+ c.argument('redirect_config', help='The name or ID of the redirect configuration to use with the created rule.', arg_group='First Rule')
+
+ with self.argument_context('network application-gateway rule', min_api='2017-06-01') as c:
+ c.argument('redirect_config', help='The name or ID of the redirect configuration to use with the created rule.')
+
+ # endregion
+
+ # region ApplicationSecurityGroups
+ with self.argument_context('network asg') as c:
+ c.argument('application_security_group_name', name_arg_type, id_part='name')
+ c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group)
+
+ # endregion
+
+ # region DNS
+ with self.argument_context('network dns') as c:
+ c.argument('record_set_name', name_arg_type, help='The name of the record set, relative to the name of the zone.')
+ c.argument('relative_record_set_name', name_arg_type, help='The name of the record set, relative to the name of the zone.')
+ c.argument('zone_name', options_list=('--zone-name', '-z'), help='The name of the zone.', type=dns_zone_name_type)
+ c.argument('metadata', nargs='+', help='Metadata in space-separated key=value pairs. This overwrites any existing metadata.', validator=validate_metadata)
+
+ with self.argument_context('network dns zone') as c:
+ c.argument('zone_name', name_arg_type)
+ c.ignore('location')
+
+ # TODO: remove when feature ready
+ c.ignore('zone_type')
+ c.ignore('registration_vnets')
+ c.ignore('resolution_vnets')
+
+ # TODO: Uncomment when feature is ready
+ # c.argument('zone_type', help='Type of DNS zone to create.', arg_type=get_enum_type(ZoneType))
+ # c.argument('registration_vnets', arg_group='Private Zone', nargs='+', help='Space separated names or IDs of virtual networks that register hostnames in this DNS zone.', validator=get_vnet_validator('registration_vnets'))
+ # c.argument('resolution_vnets', arg_group='Private Zone', nargs='+', help='Space separated names or IDs of virtual networks that resolve records in this DNS zone.', validator=get_vnet_validator('resolution_vnets'))
+
+ with self.argument_context('network dns zone import') as c:
+ c.argument('file_name', options_list=('--file-name', '-f'), type=file_type, completer=FilesCompleter(), help='Path to the DNS zone file to import')
+
+ with self.argument_context('network dns zone export') as c:
+ c.argument('file_name', options_list=('--file-name', '-f'), type=file_type, completer=FilesCompleter(), help='Path to the DNS zone file to save')
+
+ with self.argument_context('network dns zone update') as c:
+ c.ignore('if_none_match')
+
+ with self.argument_context('network dns record-set') as c:
+ for item in ['record_type', 'record_set_type']:
+ c.argument(item, ignore_type, validator=validate_dns_record_type)
+
+ with self.argument_context('network dns record-set create') as c:
+ c.argument('ttl', help='Record set TTL (time-to-live)')
+ c.argument('if_none_match', help='Create the record set only if it does not already exist.', action='store_true')
+
+ for item in ['a', 'aaaa', 'caa', 'cname', 'mx', 'ns', 'ptr', 'srv', 'txt']:
+ with self.argument_context('network dns record-set {} add-record'.format(item)) as c:
+ c.argument('record_set_name', options_list=('--record-set-name', '-n'), help='The name of the record set relative to the zone. Creates a new record set if one does not exist.')
+
+ with self.argument_context('network dns record-set {} remove-record'.format(item)) as c:
+ c.argument('record_set_name', options_list=('--record-set-name', '-n'), help='The name of the record set relative to the zone.')
+ c.argument('keep_empty_record_set', action='store_true', help='Keep the empty record set if the last record is removed.')
+
+ with self.argument_context('network dns record-set cname set-record') as c:
+ c.argument('record_set_name', options_list=['--record-set-name', '-n'], help='The name of the record set relative to the zone. Creates a new record set if one does not exist.')
+
+ with self.argument_context('network dns record-set soa') as c:
+ c.argument('relative_record_set_name', ignore_type, default='@')
+
+ with self.argument_context('network dns record-set a') as c:
+ c.argument('ipv4_address', options_list=('--ipv4-address', '-a'), help='IPV4 address in string notation.')
+
+ with self.argument_context('network dns record-set aaaa') as c:
+ c.argument('ipv6_address', options_list=('--ipv6-address', '-a'), help='IPV6 address in string notation.')
+
+ with self.argument_context('network dns record-set caa') as c:
+ c.argument('value', help='Value of the CAA record.')
+ c.argument('flags', help='Integer flags for the record.', type=int)
+ c.argument('tag', help='Record tag')
+
+ with self.argument_context('network dns record-set cname') as c:
+ c.argument('cname', options_list=('--cname', '-c'), help='Canonical name.')
+
+ with self.argument_context('network dns record-set mx') as c:
+ c.argument('exchange', options_list=('--exchange', '-e'), help='Exchange metric.')
+ c.argument('preference', options_list=('--preference', '-p'), help='Preference metric.')
+
+ with self.argument_context('network dns record-set ns') as c:
+ c.argument('dname', options_list=('--nsdname', '-d'), help='Name server domain name.')
+
+ with self.argument_context('network dns record-set ptr') as c:
+ c.argument('dname', options_list=('--ptrdname', '-d'), help='PTR target domain name.')
+
+ with self.argument_context('network dns record-set soa') as c:
+ c.argument('host', options_list=('--host', '-t'), help='Host name.')
+ c.argument('email', options_list=('--email', '-e'), help='Email address.')
+ c.argument('expire_time', options_list=('--expire-time', '-x'), help='Expire time (seconds).')
+ c.argument('minimum_ttl', options_list=('--minimum-ttl', '-m'), help='Minimum TTL (time-to-live, seconds).')
+ c.argument('refresh_time', options_list=('--refresh-time', '-f'), help='Refresh value (seconds).')
+ c.argument('retry_time', options_list=('--retry-time', '-r'), help='Retry time (seconds).')
+ c.argument('serial_number', options_list=('--serial-number', '-s'), help='Serial number.')
+
+ with self.argument_context('network dns record-set srv') as c:
+ c.argument('priority', options_list=('--priority', '-p'), help='Priority metric.')
+ c.argument('weight', options_list=('--weight', '-w'), help='Weight metric.')
+ c.argument('port', options_list=('--port', '-r'), help='Service port.')
+ c.argument('target', options_list=('--target', '-t'), help='Target domain name.')
+
+ with self.argument_context('network dns record-set txt') as c:
+ c.argument('value', options_list=('--value', '-v'), nargs='+', help='Space separated list of text values which will be concatenated together.')
+
+ # endregion
+
+ # region ExpressRoutes
+ with self.argument_context('network express-route') as c:
+ c.argument('circuit_name', circuit_name_type, options_list=('--name', '-n'))
+ c.argument('sku_family', help='Chosen SKU family of ExpressRoute circuit.', arg_type=get_enum_type(ExpressRouteCircuitSkuFamily), default=ExpressRouteCircuitSkuFamily.metered_data.value)
+ c.argument('sku_tier', help='SKU Tier of ExpressRoute circuit.', arg_type=get_enum_type(ExpressRouteCircuitSkuTier), default=ExpressRouteCircuitSkuTier.standard.value)
+ c.argument('bandwidth_in_mbps', options_list=('--bandwidth',), help="Bandwidth in Mbps of the circuit.")
+ c.argument('service_provider_name', options_list=('--provider',), help="Name of the ExpressRoute Service Provider.")
+ c.argument('peering_location', help="Name of the peering location.")
+ c.argument('device_path', options_list=('--path',), arg_type=get_enum_type(device_path_values))
+ c.argument('vlan_id', type=int)
+ c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group)
+
+ with self.argument_context('network express-route auth') as c:
+ c.argument('circuit_name', circuit_name_type)
+ c.argument('authorization_name', name_arg_type, id_part='child_name_1', help='Authorization name')
+
+ with self.argument_context('network express-route auth create') as c:
+ c.argument('authorization_parameters', ignore_type)
+ c.extra('cmd')
+
+ with self.argument_context('network express-route peering') as c:
+ c.argument('peer_asn', help='Autonomous system number of the customer/connectivity provider.')
+ c.argument('vlan_id', help='Identifier used to identify the customer.')
+ c.argument('circuit_name', circuit_name_type)
+ c.argument('peering_name', name_arg_type, id_part='child_name_1')
+ c.argument('peering_type', validator=validate_peering_type, arg_type=get_enum_type(ExpressRouteCircuitPeeringType), help='BGP peering type for the circuit.')
+ c.argument('sku_family', arg_type=get_enum_type(ExpressRouteCircuitSkuFamily))
+ c.argument('sku_tier', arg_type=get_enum_type(ExpressRouteCircuitSkuTier))
+ c.argument('primary_peer_address_prefix', options_list=['--primary-peer-subnet'], help='/30 subnet used to configure IP addresses for primary interface.')
+ c.argument('secondary_peer_address_prefix', options_list=['--secondary-peer-subnet'], help='/30 subnet used to configure IP addresses for secondary interface.')
+ c.argument('advertised_public_prefixes', arg_group='Microsoft Peering', nargs='+', help='Space separated list of prefixes to be advertised through the BGP peering.')
+ c.argument('customer_asn', arg_group='Microsoft Peering', help='Autonomous system number of the customer.')
+ c.argument('routing_registry_name', arg_group='Microsoft Peering', arg_type=get_enum_type(routing_registry_values), help='Internet Routing Registry / Regional Internet Registry')
+ c.argument('route_filter', min_api='2016-12-01', arg_group='Microsoft Peering', help='Name or ID of a route filter to apply to the peering settings.', validator=validate_route_filter)
+ c.argument('ip_version', min_api='2017-06-01', help='The IP version to update Microsoft Peering settings for.', arg_group='Microsoft Peering', arg_type=get_enum_type(['IPv4', 'IPv6']))
+ c.argument('shared_key', help='Key for generating an MD5 for the BGP session.')
+
+ # endregion
+
+ # region LoadBalancers
+ lb_subresources = [
+ {'name': 'address-pool', 'display': 'backend address pool', 'ref': 'backend_address_pools'},
+ {'name': 'frontend-ip', 'display': 'frontend IP configuration', 'ref': 'frontend_ip_configurations'},
+ {'name': 'inbound-nat-rule', 'display': 'inbound NAT rule', 'ref': 'inbound_nat_rules'},
+ {'name': 'inbound-nat-pool', 'display': 'inbound NAT pool', 'ref': 'inbound_nat_pools'},
+ {'name': 'rule', 'display': 'load balancing rule', 'ref': 'load_balancing_rules'},
+ {'name': 'probe', 'display': 'probe', 'ref': 'probes'},
+ ]
+ for item in lb_subresources:
+ with self.argument_context('network lb {}'.format(item['name'])) as c:
+ c.argument('item_name', options_list=('--name', '-n'), help='The name of the {}'.format(item['display']), completer=get_lb_subresource_completion_list(self.cli_ctx, item['ref']), id_part='child_name_1')
+ c.argument('resource_name', options_list=('--lb-name',), help='The name of the load balancer.', completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'))
+ c.argument('load_balancer_name', load_balancer_name_type)
+
+ with self.argument_context('network lb') as c:
+ c.argument('load_balancer_name', load_balancer_name_type, options_list=('--name', '-n'))
+ c.argument('frontend_port', help='Port number')
+ c.argument('frontend_port_range_start', help='Port number')
+ c.argument('frontend_port_range_end', help='Port number')
+ c.argument('backend_port', help='Port number')
+ c.argument('frontend_ip_name', help='The name of the frontend IP configuration.', completer=get_lb_subresource_completion_list(self.cli_ctx, 'frontend_ip_configurations'))
+ c.argument('floating_ip', help='Enable floating IP.', arg_type=get_enum_type(['true', 'false']))
+ c.argument('idle_timeout', help='Idle timeout in minutes.')
+ c.argument('protocol', help='', arg_type=get_enum_type(TransportProtocol))
+ c.argument('sku', min_api='2017-08-01', help='Load balancer SKU', arg_type=get_enum_type(LoadBalancerSkuName, default='basic'))
+ for item in ['backend_pool_name', 'backend_address_pool_name']:
+ c.argument(item, options_list=('--backend-pool-name',), help='The name of the backend address pool.', completer=get_lb_subresource_completion_list(self.cli_ctx, 'backend_address_pools'))
+
+ with self.argument_context('network lb create') as c:
+ c.argument('frontend_ip_zone', zone_type, min_api='2017-06-01', options_list=('--frontend-ip-zone'), help='used to create internal facing Load balancer')
+ c.argument('public_ip_zone', zone_type, min_api='2017-06-01', options_list=('--public-ip-zone'), help='used to created a new public ip for the load balancer, a.k.a public facing Load balancer')
+ c.argument('validate', help='Generate and validate the ARM template without creating any resources.', action='store_true')
+ c.argument('public_ip_address_allocation', arg_type=get_enum_type(IPAllocationMethod))
+ c.argument('public_ip_dns_name', help='Globally unique DNS name for a new public IP.')
+
+ public_ip_help = get_folded_parameter_help_string('public IP address', allow_none=True, allow_new=True)
+ c.argument('public_ip_address', help=public_ip_help, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'))
+ c.ignore('public_ip_type')
+
+ subnet_help = get_folded_parameter_help_string('subnet', other_required_option='--vnet-name', allow_new=True, allow_none=True, default_none=True)
+ c.argument('subnet', help=subnet_help, completer=get_subnet_completion_list(self.cli_ctx))
+ c.argument('subnet_address_prefix', help='The CIDR address prefix to use when creating a new subnet.')
+ c.argument('vnet_name', virtual_network_name_type)
+ c.argument('vnet_address_prefix', help='The CIDR address prefix to use when creating a new VNet.')
+ c.ignore('vnet_type')
+
+ with self.argument_context('network lb frontend-ip') as c:
+ c.argument('zone', zone_type, min_api='2017-06-01')
+
+ for item in ['create', 'update']:
+ with self.argument_context('network lb frontend-ip {}'.format(item)) as c:
+ c.argument('public_ip_address', help='Name or ID of the existing public IP to associate with the configuration.')
+ c.argument('subnet', help='Name or ID of an existing subnet. If name is specified, also specify --vnet-name.')
+ c.argument('virtual_network_name', virtual_network_name_type, help='The virtual network (VNet) associated with the subnet (Omit if supplying a subnet id).', id_part=None, metavar='')
+ c.argument('private_ip_address', help='Static private IP address to associate with the configuration.')
+ c.ignore('private_ip_address_allocation')
+
+ with self.argument_context('network lb probe') as c:
+ c.argument('interval', help='Probing time interval in seconds.')
+ c.argument('path', help='The endpoint to interrogate (http only).')
+ c.argument('port', help='The port to interrogate.')
+ c.argument('protocol', help='The protocol to probe.', arg_type=get_enum_type(ProbeProtocol))
+ c.argument('threshold', help='The number of consecutive probe failures before an instance is deemed unhealthy.')
+
+ with self.argument_context('network lb rule') as c:
+ c.argument('load_distribution', help='Affinity rule settings.', arg_type=get_enum_type(LoadDistribution))
+
+ # endregion
+
+ # region LocalGateway
+ with self.argument_context('network local-gateway') as c:
+ c.argument('local_network_gateway_name', name_arg_type, help='Name of the local network gateway.', completer=get_resource_name_completion_list('Microsoft.Network/localNetworkGateways'), id_part='name')
+ c.argument('local_address_prefix', nargs='+', options_list=('--local-address-prefixes',), help='List of CIDR block prefixes representing the address space of the OnPremise VPN\'s subnet.')
+ c.argument('gateway_ip_address', help='Gateway\'s public IP address. (e.g. 10.1.1.1).')
+ c.argument('bgp_peering_address', arg_group='BGP Peering', help='IP address from the OnPremise VPN\'s subnet to use for BGP peering.')
+
+ with self.argument_context('network local-gateway create') as c:
+ c.ignore('use_bgp_settings')
+
+ for item in ['local-gateway', 'vnet-gateway']:
+ with self.argument_context('network {}'.format(item)) as c:
+ c.argument('asn', arg_group='BGP Peering', help='Autonomous System Number to use for the BGP settings.')
+ c.argument('peer_weight', arg_group='BGP Peering', help='Weight (0-100) added to routes learned through BGP peering.')
+
+ # endregion
+
+ # region NetworkInterfaces (NIC)
+ with self.argument_context('network nic') as c:
+ c.argument('enable_accelerated_networking', min_api='2016-09-01', options_list=['--accelerated-networking'], help='Enable accelerated networking.', arg_type=get_three_state_flag())
+ c.argument('network_interface_name', nic_type, options_list=('--name', '-n'))
+ c.argument('internal_dns_name_label', options_list=('--internal-dns-name',), help='The internal DNS name label.', arg_group='DNS')
+ c.argument('dns_servers', help='Space separated list of DNS server IP addresses.', nargs='+', arg_group='DNS')
+ c.argument('enable_ip_forwarding', options_list=('--ip-forwarding',), help='Enable IP forwarding.', arg_type=get_three_state_flag())
+
+ with self.argument_context('network nic create') as c:
+ c.argument('private_ip_address_version', min_api='2016-09-01', help='The private IP address version to use.', default=IPVersion.ipv4.value if IPVersion else '')
+ c.argument('network_interface_name', nic_type, options_list=('--name', '-n'), id_part=None)
+
+ public_ip_help = get_folded_parameter_help_string('public IP address', allow_none=True, default_none=True)
+ c.argument('public_ip_address', help=public_ip_help, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'))
+
+ nsg_help = get_folded_parameter_help_string('network security group', allow_none=True, default_none=True)
+ c.argument('network_security_group', help=nsg_help, completer=get_resource_name_completion_list('Microsoft.Network/networkSecurityGroups'))
+
+ subnet_help = get_folded_parameter_help_string('subnet', other_required_option='--vnet-name')
+ c.argument('subnet', help=subnet_help, completer=get_subnet_completion_list(self.cli_ctx))
+
+ with self.argument_context('network nic update') as c:
+ c.argument('network_security_group', help='Name or ID of the associated network security group.', validator=get_nsg_validator(), completer=get_resource_name_completion_list('Microsoft.Network/networkSecurityGroups'))
+ c.argument('dns_servers', help='Space separated list of DNS server IP addresses. Use "" to revert to default Azure servers.', nargs='+', arg_group='DNS')
+
+ for item in ['create', 'ip-config update', 'ip-config create']:
+ with self.argument_context('network nic {}'.format(item)) as c:
+ c.extra('load_balancer_name', options_list=('--lb-name',), completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'), help='The name of the load balancer to use when adding NAT rules or address pools by name (ignored when IDs are specified).')
+ c.argument('load_balancer_backend_address_pool_ids', options_list=('--lb-address-pools',), nargs='+', validator=validate_address_pool_id_list, help='Space separated list of names or IDs of load balancer address pools to associate with the NIC. If names are used, --lb-name must be specified.', completer=get_lb_subresource_completion_list(self.cli_ctx, 'backendAddresPools'))
+ c.argument('load_balancer_inbound_nat_rule_ids', options_list=('--lb-inbound-nat-rules',), nargs='+', validator=validate_inbound_nat_rule_id_list, help='Space separated list of names or IDs of load balancer inbound NAT rules to associate with the NIC. If names are used, --lb-name must be specified.', completer=get_lb_subresource_completion_list(self.cli_ctx, 'inboundNatRules'))
+ c.argument('application_security_groups', min_api='2017-09-01', help='Space separated list of application security groups.', nargs='+', validator=get_asg_validator(self, 'application_security_groups'))
+
+ with self.argument_context('network nic ip-config') as c:
+ c.argument('network_interface_name', options_list=('--nic-name',), metavar='NIC_NAME', help='The network interface (NIC).', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/networkInterfaces'))
+ c.argument('ip_config_name', options_list=('--name', '-n'), metavar='IP_CONFIG_NAME', help='The name of the IP configuration.', id_part='child_name_1')
+ c.argument('resource_name', options_list=('--nic-name',), metavar='NIC_NAME', help='The network interface (NIC).', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/networkInterfaces'))
+ c.argument('item_name', options_list=('--name', '-n'), metavar='IP_CONFIG_NAME', help='The name of the IP configuration.', id_part='child_name_1')
+ c.argument('subnet', validator=get_subnet_validator(), help='Name or ID of an existing subnet. If name is specified, also specify --vnet-name.')
+ c.argument('virtual_network_name', help='The virtual network (VNet) associated with the subnet (Omit if supplying a subnet id).', id_part=None, metavar='')
+ c.argument('public_ip_address', help='Name or ID of the public IP to use.', validator=get_public_ip_validator())
+ c.argument('private_ip_address_allocation', ignore_type, default=IPAllocationMethod.dynamic.value)
+ c.argument('make_primary', action='store_true', help='Set to make this configuration the primary one for the NIC.')
+
+ with self.argument_context('network nic ip-config address-pool') as c:
+ c.argument('load_balancer_name', options_list=('--lb-name',), help='The name of the load balancer associated with the address pool (Omit if suppying an address pool ID).', completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'))
+ c.argument('backend_address_pool', options_list=('--address-pool',), help='The name or ID of an existing backend address pool.', validator=validate_address_pool_name_or_id)
+
+ with self.argument_context('network nic ip-config inbound-nat-rule') as c:
+ c.argument('load_balancer_name', options_list=('--lb-name',), help='The name of the load balancer associated with the NAT rule (Omit if suppying a NAT rule ID).', completer=get_resource_name_completion_list('Microsoft.Network/loadBalancers'))
+ c.argument('inbound_nat_rule', options_list=('--inbound-nat-rule',), help='The name or ID of an existing inbound NAT rule.', validator=validate_inbound_nat_rule_name_or_id)
+
+ for item in ['address-pool', 'inbound-nat-rule']:
+ with self.argument_context('network nic ip-config {}'.format(item)) as c:
+ c.argument('ip_config_name', options_list=('--ip-config-name', '-n'), metavar='IP_CONFIG_NAME', help='The name of the IP configuration.', id_part='child_name_1')
+ c.argument('network_interface_name', nic_type)
+
+ for item in ['address-pool', 'inbound-nat-rule']:
+ with self.argument_context('network nic ip-config {} remove'.format(item)) as c:
+ c.argument('network_interface_name', nic_type, id_part=None)
+
+ # endregion
+
+ # region NetworkSecurityGroups
+ with self.argument_context('network nsg') as c:
+ c.argument('network_security_group_name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Network/networkSecurityGroups'), id_part='name')
+
+ with self.argument_context('network nsg create') as c:
+ c.argument('name', name_arg_type)
+ c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group)
+
+ with self.argument_context('network nsg rule') as c:
+ c.argument('security_rule_name', name_arg_type, id_part='child_name_1', help='Name of the network security group rule')
+ c.argument('network_security_group_name', options_list=('--nsg-name',), metavar='NSGNAME', help='Name of the network security group', id_part='name')
+
+ with self.argument_context('network nsg rule create') as c:
+ c.argument('network_security_group_name', options_list=('--nsg-name',), metavar='NSGNAME', help='Name of the network security group', id_part=None)
+
+ for item in ['create', 'update']:
+ with self.argument_context('network nsg rule {}'.format(item)) as c:
+ c.argument('priority', help='Rule priority, between 100 (highest priority) and 4096 (lowest priority). Must be unique for each rule in the collection.', type=int)
+ c.argument('description', help='Rule description')
+ c.argument('access', help=None, arg_type=get_enum_type(SecurityRuleAccess), default=SecurityRuleAccess.allow.value)
+ c.argument('protocol', help='Network protocol this rule applies to.', arg_type=get_enum_type(SecurityRuleProtocol), default=SecurityRuleProtocol.asterisk.value)
+ c.argument('direction', help=None, arg_type=get_enum_type(SecurityRuleDirection), default=SecurityRuleDirection.inbound.value)
+
+ with self.argument_context('network nsg rule {}'.format(item), min_api='2017-06-01') as c:
+ c.argument('source_port_ranges', nargs='+', help="Space-separated list of ports or port ranges between 0-65535. Use '*' to match all ports.", arg_group='Source')
+ c.argument('source_address_prefixes', nargs='+', help="Space-separated list of CIDR prefixes or IP ranges. Alternatively, specify ONE of 'VirtualNetwork', 'AzureLoadBalancer', 'Internet' or '*' to match all IPs.", arg_group='Source')
+ c.argument('destination_port_ranges', nargs='+', help="Space-separated list of ports or port ranges between 0-65535. Use '*' to match all ports.", arg_group='Destination')
+ c.argument('destination_address_prefixes', nargs='+', help="Space-separated list of CIDR prefixes or IP ranges. Alternatively, specify ONE of 'VirtualNetwork', 'AzureLoadBalancer', 'Internet' or '*' to match all IPs.", arg_group='Destination')
+
+ with self.argument_context('network nsg rule {}'.format(item), max_api='2017-03-01') as c:
+ c.argument('source_port_range', help="Port or port range between 0-65535. Use '*' to match all ports.", arg_group='Source')
+ c.argument('source_address_prefix', help="CIDR prefix or IP range. Use '*' to match all IPs. Can also use 'VirtualNetwork', 'AzureLoadBalancer', and 'Internet'.", arg_group='Source')
+ c.argument('destination_port_range', help="Port or port range between 0-65535. Use '*' to match all ports.", arg_group='Destination')
+ c.argument('destination_address_prefix', help="CIDR prefix or IP range. Use '*' to match all IPs. Can also use 'VirtualNetwork', 'AzureLoadBalancer', and 'Internet'.", arg_group='Destination')
+
+ with self.argument_context('network nsg rule {}'.format(item), min_api='2017-09-01') as c:
+ c.argument('source_asgs', nargs='+', help="Space-separated list of application security group names or IDs.", arg_group='Source', validator=get_asg_validator(self, 'source_asgs'))
+ c.argument('destination_asgs', nargs='+', help="Space-separated list of application security group names or IDs.", arg_group='Destination', validator=get_asg_validator(self, 'destination_asgs'))
+
+ # endregion
+
+ # region NetworkWatchers
+ with self.argument_context('network watcher') as c:
+ c.argument('network_watcher_name', name_arg_type, help='Name of the Network Watcher.')
+ c.ignore('watcher_rg')
+ c.ignore('watcher_name')
+
+ with self.argument_context('network watcher configure') as c:
+ c.argument('locations', get_location_type(self.cli_ctx), options_list=['--locations', '-l'], nargs='+')
+ c.argument('enabled', arg_type=get_three_state_flag())
+
+ with self.argument_context('network watcher show-topology') as c:
+ c.argument('network_watcher_name', ignore_type, options_list=['--watcher'])
+ c.argument('resource_group_name', ignore_type, options_list=['--watcher-resource-group'])
+ c.argument('target_resource_group_name', options_list=['--resource-group', '-g'], completer=get_resource_group_completion_list)
+ c.extra('location')
+
+ with self.argument_context('network watcher create') as c:
+ c.argument('location', validator=get_default_location_from_resource_group)
+
+ for item in ['test-ip-flow', 'show-next-hop', 'show-security-group-view', 'packet-capture create']:
+ with self.argument_context('network watcher {}'.format(item)) as c:
+ c.argument('watcher_name', ignore_type, validator=get_network_watcher_from_vm)
+ c.ignore('location')
+ c.ignore('watcher_rg')
+ c.argument('vm', help='Name or ID of the VM to target.')
+ c.argument('resource_group_name', help='Name of the resource group the target VM is in. Do not use when supplying VM ID.')
+ c.argument('nic', help='Name or ID of the NIC resource to test. If the VM has multiple NICs and IP forwarding is enabled on any of them, this parameter is required.')
+
+ with self.argument_context('network watcher test-connectivity') as c:
+ c.argument('source_port', type=int)
+ c.argument('dest_resource', arg_group='Destination')
+ c.argument('dest_address', arg_group='Destination')
+ c.argument('dest_port', type=int, arg_group='Destination')
+
+ with self.argument_context('network watcher packet-capture') as c:
+ c.argument('capture_name', name_arg_type, help='Name of the packet capture session.')
+ c.argument('storage_account', arg_group='Storage')
+ c.argument('storage_path', arg_group='Storage')
+ c.argument('file_path', arg_group='Storage')
+ c.argument('filters', type=get_json_object)
+
+ with self.argument_context('network watcher flow-log') as c:
+ c.argument('enabled', arg_type=get_three_state_flag())
+
+ for item in ['list', 'stop', 'delete', 'show', 'show-status']:
+ with self.argument_context('network watcher packet-capture {}'.format(item)) as c:
+ c.extra('location')
+ c.argument('location', get_location_type(self.cli_ctx), required=True)
+ c.argument('packet_capture_name', name_arg_type)
+ c.argument('network_watcher_name', ignore_type, options_list=['--network-watcher-name'], validator=get_network_watcher_from_location(remove=True, rg_name='resource_group_name', watcher_name='network_watcher_name'))
+ c.ignore('resource_group_name')
+
+ with self.argument_context('network watcher test-ip-flow') as c:
+ c.argument('direction', arg_type=get_enum_type(Direction))
+ c.argument('protocol', arg_type=get_enum_type(Protocol))
+
+ with self.argument_context('network watcher show-next-hop') as c:
+ c.argument('source_ip', help='Source IPv4 address.')
+ c.argument('dest_ip', help='Destination IPv4 address.')
+
+ with self.argument_context('network watcher troubleshooting') as c:
+ c.argument('resource_type', options_list=['--resource-type', '-t'], id_part='resource_type', arg_type=get_enum_type(['vnetGateway', 'vpnConnection']))
+
+ with self.argument_context('network watcher troubleshooting start') as c:
+ c.argument('resource', help='Name or ID of the resource to troubleshoot.')
+
+ with self.argument_context('network watcher troubleshooting stop') as c:
+ c.argument('resource', help='Name or ID of the resource to troubleshoot.')
+
+ # endregion
+
+ # region PublicIPAddresses
+ with self.argument_context('network public-ip') as c:
+ c.argument('public_ip_address_name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'), id_part='name', help='The name of the public IP address.')
+ c.argument('name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'), help='The name of the public IP address.')
+ c.argument('reverse_fqdn', help='Reverse FQDN (fully qualified domain name).')
+ c.argument('dns_name', help='Globally unique DNS entry.')
+ c.argument('idle_timeout', help='Idle timeout in minutes.')
+ c.argument('zone', zone_type, min_api='2017-06-01')
+
+ with self.argument_context('network public-ip create') as c:
+ c.argument('name', completer=None)
+ c.ignore('dns_name_type')
+
+ for item in ['create', 'update']:
+ with self.argument_context('network public-ip {}'.format(item)) as c:
+ c.argument('allocation_method', help='IP address allocation method', arg_type=get_enum_type(IPAllocationMethod))
+ c.argument('sku', min_api='2017-08-01', help='Public IP SKU', default='Basic', arg_type=get_enum_type(PublicIPAddressSkuName))
+ c.argument('version', min_api='2016-09-01', help='IP address type.', arg_type=get_enum_type(IPVersion, 'ipv4'))
+
+ # endregion
+
+ # region RouteFilters
+ with self.argument_context('network route-filter') as c:
+ c.argument('route_filter_name', name_arg_type, help='Name of the route filter.')
+ c.argument('expand', arg_type=get_enum_type(['peerings']))
+
+ with self.argument_context('network route-filter create') as c:
+ c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group)
+
+ with self.argument_context('network route-filter rule') as c:
+ c.argument('route_filter_name', options_list=['--filter-name'], help='Name of the route filter.', id_part='name')
+ c.argument('rule_name', name_arg_type, help='Name of the route filter rule.', id_part='child_name_1')
+ c.argument('access', help='The access type of the rule.', arg_type=get_enum_type(Access))
+ c.argument('communities', nargs='+')
+
+ with self.argument_context('network route-filter rule create') as c:
+ c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group)
+
+ # endregion
+
+ # region RouteTables
+ with self.argument_context('network route-table') as c:
+ c.argument('route_table_name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Network/routeTables'), id_part='name')
+
+ with self.argument_context('network route-table create') as c:
+ c.extra('tags')
+ c.extra('location')
+ c.extra('cmd')
+ c.argument('location', get_location_type(self.cli_ctx))
+ c.ignore('parameters')
+
+ with self.argument_context('network route-table route') as c:
+ c.argument('route_name', name_arg_type, id_part='child_name_1', help='Route name')
+ c.argument('route_table_name', options_list=('--route-table-name',), help='Route table name')
+ c.argument('next_hop_type', help='The type of Azure hop the packet should be sent to.', arg_type=get_enum_type(RouteNextHopType))
+ c.argument('next_hop_ip_address', help='The IP address packets should be forwarded to when using the VirtualAppliance hop type.')
+ c.argument('address_prefix', help='The destination CIDR to which the route applies.')
+
+ # endregion
+
+ # region TrafficManagers
+ with self.argument_context('network traffic-manager profile') as c:
+ c.argument('traffic_manager_profile_name', name_arg_type, id_part='name', help='Traffic manager profile name', completer=get_resource_name_completion_list('Microsoft.Network/trafficManagerProfiles'))
+ c.argument('profile_name', name_arg_type, id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/trafficManagerProfiles'))
+ c.argument('monitor_path', help='Path to monitor.')
+ c.argument('monitor_port', help='Port to monitor.', type=int)
+ c.argument('monitor_protocol', help='Monitor protocol.', arg_type=get_enum_type(MonitorProtocol, default='http'))
+ c.argument('profile_status', options_list=('--status',), help='Status of the Traffic Manager profile.', arg_type=get_enum_type(['Enabled', 'Disabled']))
+ c.argument('routing_method', help='Routing method.', arg_type=get_enum_type(['Performance', 'Weighted', 'Priority', 'Geographic']))
+ c.argument('unique_dns_name', help="Relative DNS name for the traffic manager profile. Resulting FQDN will be `.trafficmanager.net` and must be globally unique.")
+ c.argument('ttl', help='DNS config time-to-live in seconds.', type=int)
+
+ with self.argument_context('network traffic-manager profile check-dns') as c:
+ c.argument('name', name_arg_type, help='DNS prefix to verify availability for.', required=True)
+ c.argument('type', ignore_type, default='Microsoft.Network/trafficManagerProfiles')
+
+ endpoint_types = ['azureEndpoints', 'externalEndpoints', 'nestedEndpoints']
+ with self.argument_context('network traffic-manager endpoint') as c:
+ c.argument('endpoint_name', name_arg_type, id_part='child_name_1', help='Endpoint name.', completer=get_tm_endpoint_completion_list())
+ c.argument('endpoint_type', options_list=['--type', '-t'], help='Endpoint type.', id_part='child_name_1', arg_type=get_enum_type(endpoint_types))
+ c.argument('profile_name', help='Name of parent profile.', completer=get_resource_name_completion_list('Microsoft.Network/trafficManagerProfiles'), id_part='name')
+ c.argument('endpoint_location', help="Location of the external or nested endpoints when using the 'Performance' routing method.")
+ c.argument('endpoint_monitor_status', help='The monitoring status of the endpoint.')
+ c.argument('endpoint_status', help="The status of the endpoint. If enabled the endpoint is probed for endpoint health and included in the traffic routing method.")
+ c.argument('min_child_endpoints', help="The minimum number of endpoints that must be available in the child profile for the parent profile to be considered available. Only applicable to an endpoint of type 'NestedEndpoints'.")
+ c.argument('priority', help="Priority of the endpoint when using the 'Priority' traffic routing method. Values range from 1 to 1000, with lower values representing higher priority.", type=int)
+ c.argument('target', help='Fully-qualified DNS name of the endpoint.')
+ c.argument('target_resource_id', help="The Azure Resource URI of the endpoint. Not applicable for endpoints of type 'ExternalEndpoints'.")
+ c.argument('weight', help="Weight of the endpoint when using the 'Weighted' traffic routing method. Values range from 1 to 1000.", type=int)
+ c.argument('geo_mapping', nargs='+')
+
+ with self.argument_context('network traffic-manager endpoint create') as c:
+ c.argument('target', help='Fully-qualified DNS name of the endpoint.')
+
+ # endregion
+
+ # region VirtualNetworks
+ with self.argument_context('network vnet') as c:
+ c.argument('virtual_network_name', virtual_network_name_type, options_list=('--name', '-n'), id_part='name')
+ c.argument('vnet_prefixes', nargs='+', help='Space separated list of IP address prefixes for the VNet.', options_list=('--address-prefixes',), metavar='PREFIX')
+ c.argument('dns_servers', nargs='+', help='Space separated list of DNS server IP addresses.', metavar='IP')
+ c.argument('ddos_protection', arg_type=get_three_state_flag(), help='Enable DDoS protection for protected resources in the VNet.', min_api='2017-09-01')
+ c.argument('vm_protection', arg_type=get_three_state_flag(), help='Enable VM protection for all subnets in the VNet.', min_api='2017-09-01')
+
+ with self.argument_context('network vnet create') as c:
+ c.argument('location', get_location_type(self.cli_ctx))
+ c.argument('subnet_name', help='Name of a new subnet to create within the VNet.')
+ c.argument('subnet_prefix', help='IP address prefix for the new subnet. If omitted, automatically reserves a /24 (or as large as available) block within the VNet address space.', metavar='PREFIX')
+ c.argument('vnet_name', virtual_network_name_type, options_list=('--name', '-n'), completer=None)
+
+ with self.argument_context('network vnet update') as c:
+ c.argument('address_prefixes', nargs='+')
+
+ with self.argument_context('network vnet peering') as c:
+ c.argument('virtual_network_name', virtual_network_name_type)
+ c.argument('virtual_network_peering_name', options_list=('--name', '-n'), help='The name of the VNet peering.', id_part='child_name_1')
+ c.argument('remote_virtual_network', options_list=('--remote-vnet-id',), help='ID of the remote VNet.')
+
+ with self.argument_context('network vnet peering create') as c:
+ c.argument('allow_virtual_network_access', options_list=('--allow-vnet-access',), action='store_true', help='Allows VMs in the remote VNet to access all VMs in the local VNet.')
+ c.argument('allow_gateway_transit', action='store_true', help='Allows gateway link to be used in the remote VNet.')
+ c.argument('allow_forwarded_traffic', action='store_true', help='Allows forwarded traffic from the VMs in the remote VNet.')
+ c.argument('use_remote_gateways', action='store_true', help='Allows VNet to use the remote VNet\'s gateway. Remote VNet gateway must have --allow-gateway-transit enabled for remote peering. Only 1 peering can have this flag enabled. Cannot be set if the VNet already has a gateway.')
+
+ with self.argument_context('network vnet subnet') as c:
+ c.argument('subnet_name', arg_type=subnet_name_type, options_list=('--name', '-n'), id_part='child_name_1')
+ c.argument('address_prefix', metavar='PREFIX', help='the address prefix in CIDR format.')
+ c.argument('virtual_network_name', virtual_network_name_type)
+ c.argument('network_security_group', validator=get_nsg_validator())
+ c.argument('route_table', help='Name or ID of a route table to associate with the subnet.')
+ c.argument('service_endpoints', nargs='+', min_api='2017-06-01')
+
+ # endregion
+
+ # region VirtualNetworkGateways
+ with self.argument_context('network vnet-gateway') as c:
+ c.argument('virtual_network_gateway_name', options_list=('--name', '-n'), help='Name of the VNet gateway.', completer=get_resource_name_completion_list('Microsoft.Network/virtualNetworkGateways'), id_part='name')
+ c.argument('cert_name', help='Root certificate name', options_list=('--name', '-n'))
+ c.argument('gateway_name', help='Virtual network gateway name')
+ c.argument('gateway_type', help='The gateway type.', arg_type=get_enum_type(VirtualNetworkGatewayType), default=VirtualNetworkGatewayType.vpn.value)
+ c.argument('sku', help='VNet gateway SKU.', arg_type=get_enum_type(VirtualNetworkGatewaySkuName), default=VirtualNetworkGatewaySkuName.basic.value)
+ c.argument('vpn_type', help='VPN routing type.', arg_type=get_enum_type(VpnType), default=VpnType.route_based.value)
+ c.argument('bgp_peering_address', arg_group='BGP Peering', help='IP address to use for BGP peering.')
+ c.argument('public_ip_address', options_list=['--public-ip-addresses'], nargs='+', help='Specify a single public IP (name or ID) for an active-standby gateway. Specify two space-separated public IPs for an active-active gateway.', completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'))
+ c.argument('address_prefixes', help='Space separated list of CIDR prefixes representing the address space for the P2S client.', nargs='+', arg_group='VPN Client')
+ c.argument('radius_server', min_api='2017-06-01', help='Radius server address to connect to.', arg_group='VPN Client')
+ c.argument('radius_secret', min_api='2017-06-01', help='Radius secret to use for authentication.', arg_group='VPN Client')
+ c.argument('client_protocol', min_api='2017-06-01', help='Protocols to use for connecting', nargs='+', arg_group='VPN Client', arg_type=get_enum_type(VpnClientProtocol))
+
+ with self.argument_context('network vnet-gateway create') as c:
+ vnet_help = "Name or ID of an existing virtual network which has a subnet named 'GatewaySubnet'."
+ c.argument('virtual_network', options_list=('--vnet',), help=vnet_help)
+
+ with self.argument_context('network vnet-gateway update') as c:
+ c.argument('enable_bgp', help='Enable BGP (Border Gateway Protocol)', arg_group='BGP Peering', arg_type=get_enum_type(['true', 'false']))
+ c.argument('virtual_network', virtual_network_name_type, options_list=('--vnet',), help="Name or ID of a virtual network that contains a subnet named 'GatewaySubnet'.")
+ c.extra('address_prefixes', options_list=('--address-prefixes',), help='List of address prefixes for the VPN gateway. Prerequisite for uploading certificates.', nargs='+')
+
+ with self.argument_context('network vnet-gateway root-cert create') as c:
+ c.argument('public_cert_data', help='Base64 contents of the root certificate file or file path.', type=file_type, completer=FilesCompleter(), validator=load_cert_file('public_cert_data'))
+ c.argument('cert_name', help='Root certificate name', options_list=('--name', '-n'))
+ c.argument('gateway_name', help='Virtual network gateway name')
+
+ with self.argument_context('network vnet-gateway revoked-cert create') as c:
+ c.argument('thumbprint', help='Certificate thumbprint.')
+
+ with self.argument_context('network vnet-gateway vpn-client') as c:
+ c.argument('processor_architecture', arg_type=get_enum_type(ProcessorArchitecture))
+ c.argument('authentication_method', arg_type=get_enum_type(AuthenticationMethod))
+ c.argument('radius_server_auth_certificate', help='Public certificate data for the Radius server auth certificate in Base-64 format. Required only if external Radius auth has been configured with EAPTLS auth.')
+ c.argument('client_root_certificates', nargs='+', help='Space separated list of client root certificate public certificate data in Base-64 format. Optional for external Radius-based auth with EAPTLS')
+ c.argument('use_legacy', min_api='2017-06-01', help='Generate VPN client package using legacy implementation.', arg_type=get_three_state_flag())
+
+ # endregion
+
+ # region VirtualNetworkGatewayConnections
+ with self.argument_context('network vpn-connection') as c:
+ c.argument('virtual_network_gateway_connection_name', options_list=('--name', '-n'), metavar='NAME', id_part='name', help='Connection name.')
+ c.argument('shared_key', help='Shared IPSec key.')
+ c.argument('connection_name', help='Connection name.')
+ c.argument('use_policy_based_traffic_selectors', min_api='2017-03-01', help='Enable policy-based traffic selectors.', arg_type=get_three_state_flag())
+
+ with self.argument_context('network vpn-connection create') as c:
+ c.argument('connection_name', options_list=('--name', '-n'), metavar='NAME', help='Connection name.')
+ c.ignore('connection_type')
+ for item in ['vnet_gateway2', 'local_gateway2', 'express_route_circuit2']:
+ c.argument(item, arg_group='Destination')
+
+ with self.argument_context('network vpn-connection update') as c:
+ c.argument('routing_weight', type=int, help='Connection routing weight')
+ c.argument('enable_bgp', help='Enable BGP (Border Gateway Protocol)', arg_type=get_enum_type(['true', 'false']))
+
+ with self.argument_context('network vpn-connection shared-key') as c:
+ c.argument('connection_shared_key_name', options_list=('--name', '-n'), id_part='name')
+ c.argument('virtual_network_gateway_connection_name', options_list=('--connection-name',), metavar='NAME', id_part='name')
+ c.argument('key_length', type=int)
+
+ param_map = {
+ 'dh_group': 'DhGroup',
+ 'ike_encryption': 'IkeEncryption',
+ 'ike_integrity': 'IkeIntegrity',
+ 'ipsec_encryption': 'IpsecEncryption',
+ 'ipsec_integrity': 'IpsecIntegrity',
+ 'pfs_group': 'PfsGroup'
+ }
+ with self.argument_context('network vpn-connection ipsec-policy') as c:
+ for dest, model_name in param_map.items():
+ model = self.get_models(model_name)
+ c.argument(dest, arg_type=get_enum_type(model))
+ c.argument('sa_data_size_kilobytes', options_list=['--sa-max-size'], type=int)
+ c.argument('sa_life_time_seconds', options_list=['--sa-lifetime'], type=int)
+ # endregion
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_template_builder.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_template_builder.py
index ab59f30a7a1..364a58bff34 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_template_builder.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_template_builder.py
@@ -6,8 +6,6 @@
from collections import OrderedDict
import json
-from azure.cli.core.profiles import ResourceType, supported_api_version, get_api_version
-
class ArmTemplateBuilder(object):
def __init__(self):
@@ -62,7 +60,7 @@ def build(self):
return json.loads(json.dumps(self.template))
-def _build_frontend_ip_config(name, public_ip_id=None, subnet_id=None, private_ip_address=None,
+def _build_frontend_ip_config(cmd, name, public_ip_id=None, subnet_id=None, private_ip_address=None,
private_ip_allocation=None, zone=None):
frontend_ip_config = {
'name': name
@@ -83,14 +81,14 @@ def _build_frontend_ip_config(name, public_ip_id=None, subnet_id=None, private_i
}
})
- if zone and supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
+ if zone and cmd.supported_api_version(min_api='2017-06-01'):
frontend_ip_config['zones'] = zone
return frontend_ip_config
# pylint: disable=too-many-locals
-def build_application_gateway_resource(name, location, tags, sku_name, sku_tier, capacity, servers, frontend_port,
+def build_application_gateway_resource(cmd, name, location, tags, sku_name, sku_tier, capacity, servers, frontend_port,
private_ip_address, private_ip_allocation, cert_data, cert_password,
cookie_based_affinity, http_settings_protocol, http_settings_port,
http_listener_protocol, routing_rule_type, public_ip_id, subnet_id,
@@ -107,7 +105,7 @@ def build_application_gateway_resource(name, location, tags, sku_name, sku_tier,
ssl_cert = None
- frontend_ip_config = _build_frontend_ip_config(frontend_ip_name, public_ip_id, subnet_id,
+ frontend_ip_config = _build_frontend_ip_config(cmd, frontend_ip_name, public_ip_id, subnet_id,
private_ip_address, private_ip_allocation)
backend_address_pool = {'name': backend_pool_name}
if servers:
@@ -151,7 +149,7 @@ def _ag_subresource_id(_type, name):
'CookieBasedAffinity': cookie_based_affinity
}
}
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-12-01'):
+ if cmd.supported_api_version(min_api='2016-12-01'):
backend_http_settings['properties']['connectionDraining'] = {
'enabled': bool(connection_draining_timeout),
'drainTimeoutInSec': connection_draining_timeout if connection_draining_timeout else 1
@@ -203,16 +201,16 @@ def _ag_subresource_id(_type, name):
'name': name,
'location': location,
'tags': tags,
- 'apiVersion': get_api_version(ResourceType.MGMT_NETWORK),
+ 'apiVersion': cmd.get_api_version(),
'dependsOn': [],
'properties': ag_properties
}
return ag
-def build_load_balancer_resource(name, location, tags, backend_pool_name, frontend_ip_name, public_ip_id, subnet_id,
- private_ip_address, private_ip_allocation, sku, frontend_ip_zone):
- frontend_ip_config = _build_frontend_ip_config(frontend_ip_name, public_ip_id, subnet_id, private_ip_address,
+def build_load_balancer_resource(cmd, name, location, tags, backend_pool_name, frontend_ip_name, public_ip_id,
+ subnet_id, private_ip_address, private_ip_allocation, sku, frontend_ip_zone):
+ frontend_ip_config = _build_frontend_ip_config(cmd, frontend_ip_name, public_ip_id, subnet_id, private_ip_address,
private_ip_allocation, frontend_ip_zone)
lb_properties = {
@@ -228,23 +226,23 @@ def build_load_balancer_resource(name, location, tags, backend_pool_name, fronte
'name': name,
'location': location,
'tags': tags,
- 'apiVersion': get_api_version(ResourceType.MGMT_NETWORK),
+ 'apiVersion': cmd.get_api_version(),
'dependsOn': [],
'properties': lb_properties
}
- if sku and supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-08-01'):
+ if sku and cmd.supported_api_version(min_api='2017-08-01'):
lb['sku'] = {'name': sku}
return lb
-def build_public_ip_resource(name, location, tags, address_allocation, dns_name, sku, zone):
+def build_public_ip_resource(cmd, name, location, tags, address_allocation, dns_name, sku, zone):
public_ip_properties = {'publicIPAllocationMethod': address_allocation}
if dns_name:
public_ip_properties['dnsSettings'] = {'domainNameLabel': dns_name}
public_ip = {
- 'apiVersion': get_api_version(ResourceType.MGMT_NETWORK),
+ 'apiVersion': cmd.get_api_version(),
'type': 'Microsoft.Network/publicIPAddresses',
'name': name,
'location': location,
@@ -252,14 +250,14 @@ def build_public_ip_resource(name, location, tags, address_allocation, dns_name,
'dependsOn': [],
'properties': public_ip_properties
}
- if sku and supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-08-01'):
+ if sku and cmd.supported_api_version(min_api='2017-08-01'):
public_ip['sku'] = {'name': sku}
- if zone and supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
+ if zone and cmd.supported_api_version(min_api='2017-06-01'):
public_ip['zones'] = zone
return public_ip
-def build_vnet_resource(name, location, tags, vnet_prefix=None, subnet=None, subnet_prefix=None, dns_servers=None):
+def build_vnet_resource(_, name, location, tags, vnet_prefix=None, subnet=None, subnet_prefix=None, dns_servers=None):
vnet = {
'name': name,
'type': 'Microsoft.Network/virtualNetworks',
@@ -285,8 +283,8 @@ def build_vnet_resource(name, location, tags, vnet_prefix=None, subnet=None, sub
return vnet
-def build_vpn_connection_resource(name, location, tags, gateway1, gateway2, vpn_type, authorization_key, enable_bgp,
- routing_weight, shared_key, use_policy_based_traffic_selectors):
+def build_vpn_connection_resource(cmd, name, location, tags, gateway1, gateway2, vpn_type, authorization_key,
+ enable_bgp, routing_weight, shared_key, use_policy_based_traffic_selectors):
vpn_properties = {
'virtualNetworkGateway1': {'id': gateway1},
'authorizationKey': authorization_key,
@@ -294,7 +292,7 @@ def build_vpn_connection_resource(name, location, tags, gateway1, gateway2, vpn_
'connectionType': vpn_type,
'routingWeight': routing_weight
}
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-03-01'):
+ if cmd.supported_api_version(min_api='2017-03-01'):
vpn_properties['usePolicyBasedTrafficSelectors'] = use_policy_based_traffic_selectors
# add scenario specific properties
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_util.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_util.py
index 99945e65c32..45a5c392044 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_util.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_util.py
@@ -4,8 +4,8 @@
# --------------------------------------------------------------------------------------------
import sys
-from azure.cli.core.util import CLIError
-from ._client_factory import _network_client_factory
+from knack.util import CLIError
+from ._client_factory import network_client_factory
def _get_property(items, name):
@@ -26,8 +26,8 @@ def _set_param(item, prop, value):
def list_network_resource_property(resource, prop):
""" Factory method for creating list functions. """
- def list_func(resource_group_name, resource_name):
- client = getattr(_network_client_factory(), resource)
+ def list_func(cmd, resource_group_name, resource_name):
+ client = getattr(network_client_factory(cmd.cli_ctx), resource)
return client.get(resource_group_name, resource_name).__getattribute__(prop)
func_name = 'list_network_resource_property_{}_{}'.format(resource, prop)
@@ -38,8 +38,8 @@ def list_func(resource_group_name, resource_name):
def get_network_resource_property_entry(resource, prop):
""" Factory method for creating get functions. """
- def get_func(resource_group_name, resource_name, item_name):
- client = getattr(_network_client_factory(), resource)
+ def get_func(cmd, resource_group_name, resource_name, item_name):
+ client = getattr(network_client_factory(cmd.cli_ctx), resource)
items = getattr(client.get(resource_group_name, resource_name), prop)
result = next((x for x in items if x.name.lower() == item_name.lower()), None)
@@ -57,8 +57,8 @@ def get_func(resource_group_name, resource_name, item_name):
def delete_network_resource_property_entry(resource, prop):
""" Factory method for creating delete functions. """
- def delete_func(resource_group_name, resource_name, item_name, no_wait=False): # pylint: disable=unused-argument
- client = getattr(_network_client_factory(), resource)
+ def delete_func(cmd, resource_group_name, resource_name, item_name, no_wait=False): # pylint: disable=unused-argument
+ client = getattr(network_client_factory(cmd.cli_ctx), resource)
item = client.get(resource_group_name, resource_name)
keep_items = \
[x for x in item.__getattribute__(prop) if x.name.lower() != item_name.lower()]
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_validators.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_validators.py
index 614b02026fa..1d77fb518d5 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_validators.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/_validators.py
@@ -8,24 +8,25 @@
import socket
import os
-from msrestazure.tools import is_valid_resource_id, resource_id
from azure.cli.core.commands.validators import \
(validate_tags, get_default_location_from_resource_group)
-from azure.cli.core.util import CLIError
from azure.cli.core.commands.template_create import get_folded_parameter_validator
from azure.cli.core.commands.client_factory import get_subscription_id, get_mgmt_service_client
from azure.cli.core.commands.validators import validate_parameter_set
-from azure.cli.core.profiles import ResourceType, get_sdk, get_api_version
+from azure.cli.core.profiles import ResourceType
+from knack.util import CLIError
# PARAMETER VALIDATORS
-def get_asg_validator(dest):
- ApplicationSecurityGroup = get_sdk(ResourceType.MGMT_NETWORK, 'ApplicationSecurityGroup', mod='models')
+def get_asg_validator(loader, dest):
+ from msrestazure.tools import is_valid_resource_id, resource_id
+
+ ApplicationSecurityGroup = loader.get_models('ApplicationSecurityGroup')
def _validate_asg_name_or_id(namespace):
- subscription_id = get_subscription_id()
+ subscription_id = get_subscription_id(namespace.cmd.cli_ctx)
resource_group = namespace.resource_group_name
names_or_ids = getattr(namespace, dest)
ids = []
@@ -48,11 +49,13 @@ def _validate_asg_name_or_id(namespace):
def get_vnet_validator(dest):
-
- SubResource = get_sdk(ResourceType.MGMT_NETWORK, 'SubResource', mod='models')
- subscription_id = get_subscription_id()
+ from msrestazure.tools import is_valid_resource_id, resource_id
def _validate_vnet_name_or_id(namespace):
+ cmd = namespace.cmd
+ SubResource = cmd.get_models('SubResource')
+ subscription_id = get_subscription_id(cmd.cli_ctx)
+
resource_group = namespace.resource_group_name
names_or_ids = getattr(namespace, dest)
ids = []
@@ -80,8 +83,9 @@ def dns_zone_name_type(value):
def _generate_ag_subproperty_id(namespace, child_type, child_name, subscription=None):
+ from msrestazure.tools import resource_id
return resource_id(
- subscription=subscription or get_subscription_id(),
+ subscription=subscription or get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type='applicationGateways',
@@ -91,8 +95,9 @@ def _generate_ag_subproperty_id(namespace, child_type, child_name, subscription=
def _generate_lb_subproperty_id(namespace, child_type, child_name, subscription=None):
+ from msrestazure.tools import resource_id
return resource_id(
- subscription=subscription or get_subscription_id(),
+ subscription=subscription or get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type='loadBalancers',
@@ -102,6 +107,7 @@ def _generate_lb_subproperty_id(namespace, child_type, child_name, subscription=
def _generate_lb_id_list_from_names_or_ids(namespace, prop, child_type):
+ from msrestazure.tools import is_valid_resource_id
raw = getattr(namespace, prop)
if not raw:
return
@@ -126,6 +132,7 @@ def validate_address_pool_id_list(namespace):
def validate_address_pool_name_or_id(namespace):
+ from msrestazure.tools import is_valid_resource_id
pool_name = namespace.backend_address_pool
lb_name = namespace.load_balancer_name
@@ -204,6 +211,7 @@ def validate_inbound_nat_rule_id_list(namespace):
def validate_inbound_nat_rule_name_or_id(namespace):
+ from msrestazure.tools import is_valid_resource_id
rule_name = namespace.inbound_nat_rule
lb_name = namespace.load_balancer_name
@@ -236,10 +244,11 @@ def validate_private_ip_address(namespace):
def validate_route_filter(namespace):
+ from msrestazure.tools import is_valid_resource_id, resource_id
if namespace.route_filter:
if not is_valid_resource_id(namespace.route_filter):
namespace.route_filter = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type='routeFilters',
@@ -250,6 +259,7 @@ def get_public_ip_validator(has_type_field=False, allow_none=False, allow_new=Fa
default_none=False):
""" Retrieves a validator for public IP address. Accepting all defaults will perform a check
for an existing name or ID with no ARM-required -type parameter. """
+ from msrestazure.tools import is_valid_resource_id, resource_id
def simple_validator(namespace):
if namespace.public_ip_address:
@@ -259,7 +269,7 @@ def _validate_name_or_id(public_ip):
# determine if public_ip_address is name or ID
is_id = is_valid_resource_id(public_ip)
return public_ip if is_id else resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type='publicIPAddresses',
@@ -281,6 +291,8 @@ def complex_validator_with_type(namespace):
def get_subnet_validator(has_type_field=False, allow_none=False, allow_new=False,
default_none=False):
+ from msrestazure.tools import is_valid_resource_id, resource_id
+
def simple_validator(namespace):
if namespace.virtual_network_name is None and namespace.subnet is None:
return
@@ -302,7 +314,7 @@ def simple_validator(namespace):
if not is_id:
namespace.subnet = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type='virtualNetworks',
@@ -321,13 +333,15 @@ def complex_validator_with_type(namespace):
def get_nsg_validator(has_type_field=False, allow_none=False, allow_new=False, default_none=False):
+ from msrestazure.tools import is_valid_resource_id, resource_id
+
def simple_validator(namespace):
if namespace.network_security_group:
# determine if network_security_group is name or ID
is_id = is_valid_resource_id(namespace.network_security_group)
if not is_id:
namespace.network_security_group = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type='networkSecurityGroups',
@@ -355,9 +369,10 @@ def validate_servers(namespace):
def validate_target_listener(namespace):
+ from msrestazure.tools import is_valid_resource_id, resource_id
if namespace.target_listener and not is_valid_resource_id(namespace.target_listener):
namespace.target_listener = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
name=namespace.application_gateway_name,
namespace='Microsoft.Network',
@@ -368,13 +383,15 @@ def validate_target_listener(namespace):
def get_virtual_network_validator(has_type_field=False, allow_none=False, allow_new=False,
default_none=False):
+ from msrestazure.tools import is_valid_resource_id, resource_id
+
def simple_validator(namespace):
if namespace.virtual_network:
# determine if vnet is name or ID
is_id = is_valid_resource_id(namespace.virtual_network)
if not is_id:
namespace.virtual_network = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type='virtualNetworks',
@@ -391,6 +408,7 @@ def complex_validator_with_type(namespace):
# COMMAND NAMESPACE VALIDATORS
def process_ag_listener_create_namespace(namespace): # pylint: disable=unused-argument
+ from msrestazure.tools import is_valid_resource_id
if namespace.frontend_ip and not is_valid_resource_id(namespace.frontend_ip):
namespace.frontend_ip = _generate_ag_subproperty_id(
namespace, 'frontendIpConfigurations', namespace.frontend_ip)
@@ -405,12 +423,14 @@ def process_ag_listener_create_namespace(namespace): # pylint: disable=unused-a
def process_ag_http_settings_create_namespace(namespace): # pylint: disable=unused-argument
+ from msrestazure.tools import is_valid_resource_id
if namespace.probe and not is_valid_resource_id(namespace.probe):
namespace.probe = _generate_ag_subproperty_id(
namespace, 'probes', namespace.probe)
def process_ag_rule_create_namespace(namespace): # pylint: disable=unused-argument
+ from msrestazure.tools import is_valid_resource_id
if namespace.address_pool and not is_valid_resource_id(namespace.address_pool):
namespace.address_pool = _generate_ag_subproperty_id(
namespace, 'backendAddressPools', namespace.address_pool)
@@ -433,11 +453,12 @@ def process_ag_rule_create_namespace(namespace): # pylint: disable=unused-argum
def process_ag_ssl_policy_set_namespace(namespace):
- if namespace.disabled_ssl_protocols and namespace.clear:
+ if namespace.disabled_ssl_protocols and getattr(namespace, 'clear', None):
raise ValueError('incorrect usage: --disabled-ssl-protocols PROTOCOL [...] | --clear')
def process_ag_url_path_map_create_namespace(namespace): # pylint: disable=unused-argument
+ from msrestazure.tools import is_valid_resource_id
if namespace.default_address_pool and not is_valid_resource_id(namespace.default_address_pool):
namespace.default_address_pool = _generate_ag_subproperty_id(
namespace, 'backendAddressPools', namespace.default_address_pool)
@@ -457,6 +478,7 @@ def process_ag_url_path_map_create_namespace(namespace): # pylint: disable=unus
def process_ag_url_path_map_rule_create_namespace(namespace): # pylint: disable=unused-argument
+ from msrestazure.tools import is_valid_resource_id
if namespace.address_pool and not is_valid_resource_id(namespace.address_pool):
namespace.address_pool = _generate_ag_subproperty_id(
namespace, 'backendAddressPools', namespace.address_pool)
@@ -474,6 +496,8 @@ def process_ag_url_path_map_rule_create_namespace(namespace): # pylint: disable
def process_ag_create_namespace(namespace):
get_default_location_from_resource_group(namespace)
+ get_servers_validator(camel_case=True)(namespace)
+
# process folded parameters
if namespace.subnet or namespace.virtual_network_name:
get_subnet_validator(has_type_field=True, allow_new=True)(namespace)
@@ -489,7 +513,7 @@ def process_ag_create_namespace(namespace):
def process_auth_create_namespace(namespace):
ExpressRouteCircuitAuthorization = \
- get_sdk(ResourceType.MGMT_NETWORK, 'ExpressRouteCircuitAuthorization', mod='models')
+ namespace.cmd.get_models('ExpressRouteCircuitAuthorization')
namespace.authorization_parameters = ExpressRouteCircuitAuthorization()
@@ -546,6 +570,10 @@ def process_local_gateway_create_namespace(namespace):
def process_nic_create_namespace(namespace):
get_default_location_from_resource_group(namespace)
+ validate_address_pool_id_list(namespace)
+ validate_inbound_nat_rule_id_list(namespace)
+ get_asg_validator(namespace.cmd.loader, 'application_security_groups')(namespace)
+
# process folded parameters
get_subnet_validator(has_type_field=False)(namespace)
get_public_ip_validator(has_type_field=False, allow_none=True, default_none=True)(namespace)
@@ -557,7 +585,7 @@ def process_public_ip_create_namespace(namespace):
def process_route_table_create_namespace(namespace):
- RouteTable = get_sdk(ResourceType.MGMT_NETWORK, 'RouteTable', mod='models')
+ RouteTable = namespace.cmd.get_models('RouteTable')
get_default_location_from_resource_group(namespace)
validate_tags(namespace)
namespace.parameters = RouteTable(location=namespace.location, tags=namespace.tags)
@@ -566,7 +594,7 @@ def process_route_table_create_namespace(namespace):
def process_tm_endpoint_create_namespace(namespace):
from azure.mgmt.trafficmanager import TrafficManagerManagementClient
- client = get_mgmt_service_client(TrafficManagerManagementClient).profiles
+ client = get_mgmt_service_client(namespace.cmd.cli_ctx, TrafficManagerManagementClient).profiles
profile = client.get(namespace.resource_group_name, namespace.profile_name)
routing_type = profile.traffic_routing_method # pylint: disable=no-member
@@ -622,6 +650,7 @@ def process_tm_endpoint_create_namespace(namespace):
def process_vnet_create_namespace(namespace):
get_default_location_from_resource_group(namespace)
+ validate_tags(namespace)
if namespace.subnet_prefix and not namespace.subnet_name:
raise ValueError('incorrect usage: --subnet-name NAME [--subnet-prefix PREFIX]')
@@ -664,6 +693,7 @@ def process_vnet_gateway_update_namespace(namespace):
def process_vpn_connection_create_namespace(namespace):
+ from msrestazure.tools import is_valid_resource_id, resource_id
get_default_location_from_resource_group(namespace)
args = [a for a in [namespace.express_route_circuit2,
@@ -674,9 +704,9 @@ def process_vpn_connection_create_namespace(namespace):
raise ValueError('usage error: --vnet-gateway2 NAME_OR_ID | --local-gateway2 NAME_OR_ID '
'| --express-route-circuit2 NAME_OR_ID')
- def _validate_name_or_id(namespace, value, resource_type):
+ def _validate_name_or_id(value, resource_type):
if not is_valid_resource_id(value):
- subscription = getattr(namespace, 'subscription', get_subscription_id())
+ subscription = getattr(namespace, 'subscription', get_subscription_id(namespace.cmd.cli_ctx))
return resource_id(
subscription=subscription,
resource_group=namespace.resource_group_name,
@@ -692,20 +722,20 @@ def _validate_name_or_id(namespace, value, resource_type):
raise CLIError('--shared-key cannot be used with an ExpressRoute connection.')
namespace.vnet_gateway1 = \
- _validate_name_or_id(namespace, namespace.vnet_gateway1, 'virtualNetworkGateways')
+ _validate_name_or_id(namespace.vnet_gateway1, 'virtualNetworkGateways')
if namespace.express_route_circuit2:
namespace.express_route_circuit2 = \
_validate_name_or_id(
- namespace, namespace.express_route_circuit2, 'expressRouteCircuits')
+ namespace.express_route_circuit2, 'expressRouteCircuits')
namespace.connection_type = 'ExpressRoute'
elif namespace.local_gateway2:
namespace.local_gateway2 = \
- _validate_name_or_id(namespace, namespace.local_gateway2, 'localNetworkGateways')
+ _validate_name_or_id(namespace.local_gateway2, 'localNetworkGateways')
namespace.connection_type = 'IPSec'
elif namespace.vnet_gateway2:
namespace.vnet_gateway2 = \
- _validate_name_or_id(namespace, namespace.vnet_gateway2, 'virtualNetworkGateways')
+ _validate_name_or_id(namespace.vnet_gateway2, 'virtualNetworkGateways')
namespace.connection_type = 'Vnet2Vnet'
@@ -721,7 +751,7 @@ def load_cert_validator(namespace):
def get_network_watcher_from_vm(namespace):
from msrestazure.tools import parse_resource_id
- compute_client = get_mgmt_service_client(ResourceType.MGMT_COMPUTE).virtual_machines
+ compute_client = get_mgmt_service_client(namespace.cmd.cli_ctx, ResourceType.MGMT_COMPUTE).virtual_machines
vm_name = parse_resource_id(namespace.vm)['name']
vm = compute_client.get(namespace.resource_group_name, vm_name)
namespace.location = vm.location # pylint: disable=no-member
@@ -729,9 +759,9 @@ def get_network_watcher_from_vm(namespace):
def get_network_watcher_from_resource(namespace):
- resource_client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).resources
+ resource_client = get_mgmt_service_client(namespace.cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).resources
resource = resource_client.get_by_id(namespace.resource,
- get_api_version(ResourceType.MGMT_NETWORK))
+ namespace.cmd.get_api_version(ResourceType.MGMT_NETWORK))
namespace.location = resource.location # pylint: disable=no-member
get_network_watcher_from_location(remove=True)(namespace)
@@ -742,7 +772,7 @@ def _validator(namespace):
from msrestazure.tools import parse_resource_id
location = namespace.location
- network_client = get_mgmt_service_client(ResourceType.MGMT_NETWORK).network_watchers
+ network_client = get_mgmt_service_client(namespace.cmd.cli_ctx, ResourceType.MGMT_NETWORK).network_watchers
watcher = next((x for x in network_client.list_all() if x.location == location), None)
if not watcher:
raise CLIError("network watcher is not enabled for region '{}'.".format(location))
@@ -757,9 +787,9 @@ def _validator(namespace):
def process_nw_test_connectivity_namespace(namespace):
- from msrestazure.tools import parse_resource_id
+ from msrestazure.tools import is_valid_resource_id, resource_id, parse_resource_id
- compute_client = get_mgmt_service_client(ResourceType.MGMT_COMPUTE).virtual_machines
+ compute_client = get_mgmt_service_client(namespace.cmd.cli_ctx, ResourceType.MGMT_COMPUTE).virtual_machines
vm_name = parse_resource_id(namespace.source_resource)['name']
rg = namespace.resource_group_name or parse_resource_id(namespace.source_resource).get('resource_group', None)
if not rg:
@@ -770,7 +800,7 @@ def process_nw_test_connectivity_namespace(namespace):
if namespace.source_resource and not is_valid_resource_id(namespace.source_resource):
namespace.source_resource = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=rg,
namespace='Microsoft.Compute',
type='virtualMachines',
@@ -778,7 +808,7 @@ def process_nw_test_connectivity_namespace(namespace):
if namespace.dest_resource and not is_valid_resource_id(namespace.dest_resource):
namespace.dest_resource = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Compute',
type='virtualMachines',
@@ -786,9 +816,10 @@ def process_nw_test_connectivity_namespace(namespace):
def process_nw_flow_log_set_namespace(namespace):
+ from msrestazure.tools import is_valid_resource_id, resource_id
if namespace.storage_account and not is_valid_resource_id(namespace.storage_account):
namespace.storage_account = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Storage',
type='storageAccounts',
@@ -798,17 +829,17 @@ def process_nw_flow_log_set_namespace(namespace):
def process_nw_flow_log_show_namespace(namespace):
- from msrestazure.tools import parse_resource_id
+ from msrestazure.tools import is_valid_resource_id, resource_id, parse_resource_id
if not is_valid_resource_id(namespace.nsg):
namespace.nsg = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type='networkSecurityGroups',
name=namespace.nsg)
- network_client = get_mgmt_service_client(ResourceType.MGMT_NETWORK).network_security_groups
+ network_client = get_mgmt_service_client(namespace.cmd.cli_ctx, ResourceType.MGMT_NETWORK).network_security_groups
id_parts = parse_resource_id(namespace.nsg)
nsg_name = id_parts['name']
rg = id_parts['resource_group']
@@ -821,7 +852,7 @@ def process_nw_topology_namespace(namespace):
location = namespace.location
if not location:
resource_client = \
- get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).resource_groups
+ get_mgmt_service_client(namespace.cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).resource_groups
resource_group = resource_client.get(namespace.target_resource_group_name)
namespace.location = resource_group.location # pylint: disable=no-member
@@ -830,6 +861,7 @@ def process_nw_topology_namespace(namespace):
def process_nw_packet_capture_create_namespace(namespace):
+ from msrestazure.tools import is_valid_resource_id, resource_id
get_network_watcher_from_vm(namespace)
storage_usage = CLIError('usage error: --storage-account NAME_OR_ID [--storage-path '
@@ -842,7 +874,7 @@ def process_nw_packet_capture_create_namespace(namespace):
if not is_valid_resource_id(namespace.vm):
namespace.vm = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Compute',
type='virtualMachines',
@@ -850,7 +882,7 @@ def process_nw_packet_capture_create_namespace(namespace):
if namespace.storage_account and not is_valid_resource_id(namespace.storage_account):
namespace.storage_account = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Storage',
type='storageAccounts',
@@ -865,13 +897,14 @@ def process_nw_packet_capture_create_namespace(namespace):
def process_nw_troubleshooting_start_namespace(namespace):
+ from msrestazure.tools import is_valid_resource_id, resource_id
storage_usage = CLIError('usage error: --storage-account NAME_OR_ID [--storage-path PATH]')
if namespace.storage_path and not namespace.storage_account:
raise storage_usage
if not is_valid_resource_id(namespace.storage_account):
namespace.storage_account = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Storage',
type='storageAccounts',
@@ -881,6 +914,7 @@ def process_nw_troubleshooting_start_namespace(namespace):
def process_nw_troubleshooting_show_namespace(namespace):
+ from msrestazure.tools import is_valid_resource_id, resource_id
resource_usage = CLIError('usage error: --resource ID | --resource NAME --resource-type TYPE '
'--resource-group-name NAME')
id_params = [namespace.resource_type, namespace.resource_group_name]
@@ -892,7 +926,7 @@ def process_nw_troubleshooting_show_namespace(namespace):
'vpnConnection': 'connections'
}
namespace.resource = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=namespace.resource_group_name,
namespace='Microsoft.Network',
type=type_map[namespace.resource_type],
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/commands.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/commands.py
index f63239f50e6..c3202719879 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/commands.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/commands.py
@@ -5,524 +5,645 @@
# pylint: disable=line-too-long
-from azure.cli.core.commands.arm import \
- (cli_generic_update_command, cli_generic_wait_command, deployment_validate_table_format)
-from azure.cli.core.commands import DeploymentOutputLongRunningOperation, cli_command, VersionConstraint
+from azure.cli.core.commands import DeploymentOutputLongRunningOperation
+from azure.cli.core.commands.arm import deployment_validate_table_format
+from azure.cli.core.sdk.util import CliCommandType
from azure.cli.core.util import empty_on_404
-from azure.cli.core.profiles import supported_api_version, ResourceType
-
-from ._client_factory import (cf_application_gateways, cf_express_route_circuit_authorizations,
- cf_express_route_circuit_peerings, cf_express_route_circuits,
- cf_express_route_service_providers, cf_load_balancers, cf_local_network_gateways,
- cf_network_interfaces, cf_network_security_groups, cf_network_watcher, cf_packet_capture,
- cf_route_tables, cf_routes, cf_route_filter_rules, cf_route_filters, cf_virtual_networks,
- cf_virtual_network_peerings, cf_virtual_network_gateway_connections,
- cf_virtual_network_gateways, cf_traffic_manager_mgmt_endpoints,
- cf_traffic_manager_mgmt_profiles, cf_dns_mgmt_record_sets, cf_dns_mgmt_zones,
- cf_tm_geographic, cf_security_rules, cf_subnets, cf_usages, cf_service_community,
- cf_public_ip_addresses, cf_endpoint_service, cf_application_security_groups)
-from ._util import (list_network_resource_property,
- get_network_resource_property_entry,
- delete_network_resource_property_entry)
-from ._format import \
- (transform_local_gateway_table_output, transform_dns_record_set_output,
- transform_dns_record_set_table_output, transform_dns_zone_table_output,
- transform_vnet_create_output, transform_public_ip_create_output,
- transform_traffic_manager_create_output, transform_nic_create_output,
- transform_nsg_create_output, transform_vnet_gateway_create_output,
- transform_vpn_connection, transform_vpn_connection_list,
- transform_vpn_connection_create_output, transform_geographic_hierachy_table_output,
- transform_service_community_table_output, transform_waf_rule_sets_table_output,
- transform_network_usage_list, transform_network_usage_table)
-
-
-custom_path = 'azure.cli.command_modules.network.custom#'
-
-# Application gateways
-ag_path = 'azure.mgmt.network.operations.application_gateways_operations#ApplicationGatewaysOperations.'
-cli_command(__name__, 'network application-gateway create', custom_path + 'create_application_gateway', transform=DeploymentOutputLongRunningOperation('Starting network application-gateway create'), no_wait_param='no_wait', table_transformer=deployment_validate_table_format)
-cli_command(__name__, 'network application-gateway delete', ag_path + 'delete', cf_application_gateways, no_wait_param='raw')
-cli_command(__name__, 'network application-gateway show', ag_path + 'get', cf_application_gateways, exception_handler=empty_on_404)
-cli_command(__name__, 'network application-gateway list', custom_path + 'list_application_gateways')
-cli_command(__name__, 'network application-gateway start', ag_path + 'start', cf_application_gateways)
-cli_command(__name__, 'network application-gateway stop', ag_path + 'stop', cf_application_gateways)
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- cli_command(__name__, 'network application-gateway show-backend-health', ag_path + 'backend_health', cf_application_gateways)
-
-cli_generic_update_command(__name__, 'network application-gateway update',
- ag_path + 'get', ag_path + 'create_or_update', cf_application_gateways,
- no_wait_param='raw', custom_function_op=custom_path + 'update_application_gateway')
-cli_generic_wait_command(__name__, 'network application-gateway wait', ag_path + 'get', cf_application_gateways)
-
-
-property_map = {
- 'authentication_certificates': 'auth-cert',
- 'ssl_certificates': 'ssl-cert',
- 'frontend_ip_configurations': 'frontend-ip',
- 'frontend_ports': 'frontend-port',
- 'backend_address_pools': 'address-pool',
- 'backend_http_settings_collection': 'http-settings',
- 'http_listeners': 'http-listener',
- 'request_routing_rules': 'rule',
- 'probes': 'probe',
- 'url_path_maps': 'url-path-map',
-}
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- property_map['redirect_configurations'] = 'redirect-config'
-
-
-def _make_singular(value):
- try:
- if value.endswith('ies'):
- value = value[:-3] + 'y'
- elif value.endswith('s'):
- value = value[:-1]
- return value
- except AttributeError:
- return value
-
-
-for subresource, alias in property_map.items():
- cli_command(__name__, 'network application-gateway {} list'.format(alias), 'azure.cli.command_modules.network._util#{}'.format(list_network_resource_property('application_gateways', subresource)))
- cli_command(__name__, 'network application-gateway {} show'.format(alias), 'azure.cli.command_modules.network._util#{}'.format(get_network_resource_property_entry('application_gateways', subresource)), exception_handler=empty_on_404)
- cli_command(__name__, 'network application-gateway {} delete'.format(alias), 'azure.cli.command_modules.network._util#{}'.format(delete_network_resource_property_entry('application_gateways', subresource)), no_wait_param='no_wait')
- cli_command(__name__, 'network application-gateway {} create'.format(alias), custom_path + 'create_ag_{}'.format(_make_singular(subresource)), no_wait_param='no_wait')
- cli_generic_update_command(__name__, 'network application-gateway {} update'.format(alias),
- ag_path + 'get', ag_path + 'create_or_update', cf_application_gateways,
- no_wait_param='raw',
- custom_function_op=custom_path + 'update_ag_{}'.format(_make_singular(subresource)),
- child_collection_prop_name=subresource)
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- cli_command(__name__, 'network application-gateway ssl-policy set', custom_path + 'set_ag_ssl_policy_2017_06_01', no_wait_param='no_wait')
-else:
- cli_command(__name__, 'network application-gateway ssl-policy set', custom_path + 'set_ag_ssl_policy_2017_03_01', no_wait_param='no_wait')
-
-cli_command(__name__, 'network application-gateway ssl-policy show', custom_path + 'show_ag_ssl_policy', exception_handler=empty_on_404)
-
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01') as c:
- c.cli_command(__name__, 'network application-gateway ssl-policy list-options', ag_path + 'list_available_ssl_options', cf_application_gateways)
- c.cli_command(__name__, 'network application-gateway ssl-policy predefined list', ag_path + 'list_available_ssl_predefined_policies', cf_application_gateways)
- c.cli_command(__name__, 'network application-gateway ssl-policy predefined show', ag_path + 'get_ssl_predefined_policy', cf_application_gateways)
-
-cli_command(__name__, 'network application-gateway url-path-map rule create', custom_path + 'create_ag_url_path_map_rule', no_wait_param='no_wait')
-cli_command(__name__, 'network application-gateway url-path-map rule delete', custom_path + 'delete_ag_url_path_map_rule', no_wait_param='no_wait')
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-03-01'):
- cli_command(__name__, 'network application-gateway waf-config set', custom_path + 'set_ag_waf_config_2017_03_01', no_wait_param='no_wait')
-else:
- cli_command(__name__, 'network application-gateway waf-config set', custom_path + 'set_ag_waf_config_2016_09_01', no_wait_param='no_wait')
-
-cli_command(__name__, 'network application-gateway waf-config show', custom_path + 'show_ag_waf_config', exception_handler=empty_on_404)
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-03-01'):
- cli_command(__name__, 'network application-gateway waf-config list-rule-sets', custom_path + 'list_ag_waf_rule_sets', cf_application_gateways, table_transformer=transform_waf_rule_sets_table_output)
-
-# ApplicationSecurityGroupsOperations
-asg_path = 'azure.mgmt.network.operations.application_security_groups_operations#ApplicationSecurityGroupsOperations.'
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-09-01'):
- cli_command(__name__, 'network asg create', custom_path + 'create_asg', cf_application_security_groups)
- cli_command(__name__, 'network asg show', asg_path + 'get', cf_application_security_groups)
- cli_command(__name__, 'network asg list', asg_path + 'list_all', cf_application_security_groups)
- cli_command(__name__, 'network asg delete', asg_path + 'delete', cf_application_security_groups)
- cli_generic_update_command(__name__, 'network asg update', asg_path + 'get', asg_path + 'create_or_update',
- factory=cf_application_security_groups, custom_function_op=custom_path + 'update_asg')
-
-# ExpressRouteCircuitAuthorizationsOperations
-erca_path = 'azure.mgmt.network.operations.express_route_circuit_authorizations_operations#ExpressRouteCircuitAuthorizationsOperations.'
-cli_command(__name__, 'network express-route auth delete', erca_path + 'delete', cf_express_route_circuit_authorizations)
-cli_command(__name__, 'network express-route auth show', erca_path + 'get', cf_express_route_circuit_authorizations, exception_handler=empty_on_404)
-cli_command(__name__, 'network express-route auth list', erca_path + 'list', cf_express_route_circuit_authorizations)
-cli_command(__name__, 'network express-route auth create', erca_path + 'create_or_update', cf_express_route_circuit_authorizations)
-
-# ExpressRouteCircuitPeeringsOperations
-ercp_path = 'azure.mgmt.network.operations.express_route_circuit_peerings_operations#ExpressRouteCircuitPeeringsOperations.'
-cli_command(__name__, 'network express-route peering delete', ercp_path + 'delete', cf_express_route_circuit_peerings)
-cli_command(__name__, 'network express-route peering show', ercp_path + 'get', cf_express_route_circuit_peerings, exception_handler=empty_on_404)
-cli_command(__name__, 'network express-route peering list', ercp_path + 'list', cf_express_route_circuit_peerings)
-cli_generic_update_command(__name__, 'network express-route peering update',
- ercp_path + 'get', ercp_path + 'create_or_update', cf_express_route_circuit_peerings,
- setter_arg_name='peering_parameters', custom_function_op=custom_path + 'update_express_route_peering')
-cli_command(__name__, 'network express-route peering create', custom_path + 'create_express_route_peering', cf_express_route_circuit_peerings)
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- # ExpressRouteCircuitsOperations
- erco_path = 'azure.mgmt.network.operations.express_route_circuits_operations#ExpressRouteCircuitsOperations.'
- cli_command(__name__, 'network express-route delete', erco_path + 'delete', cf_express_route_circuits, no_wait_param='raw')
- cli_command(__name__, 'network express-route show', erco_path + 'get', cf_express_route_circuits, exception_handler=empty_on_404)
- cli_command(__name__, 'network express-route get-stats', erco_path + 'get_stats', cf_express_route_circuits)
- cli_command(__name__, 'network express-route list-arp-tables', erco_path + 'list_arp_table', cf_express_route_circuits)
- cli_command(__name__, 'network express-route list-route-tables', erco_path + 'list_routes_table', cf_express_route_circuits)
- cli_command(__name__, 'network express-route create', custom_path + 'create_express_route', no_wait_param='no_wait')
- cli_command(__name__, 'network express-route list', custom_path + 'list_express_route_circuits')
- cli_generic_update_command(__name__, 'network express-route update',
- erco_path + 'get', erco_path + 'create_or_update', cf_express_route_circuits,
- custom_function_op=custom_path + 'update_express_route', no_wait_param='raw')
- cli_generic_wait_command(__name__, 'network express-route wait', erco_path + 'get', cf_express_route_circuits)
-
- # ExpressRouteServiceProvidersOperations
- ersp_path = 'azure.mgmt.network.operations.express_route_service_providers_operations#ExpressRouteServiceProvidersOperations.'
- cli_command(__name__, 'network express-route list-service-providers', ersp_path + 'list', cf_express_route_service_providers)
-
-# LoadBalancersOperations
-lb_path = 'azure.mgmt.network.operations.load_balancers_operations#LoadBalancersOperations.'
-cli_command(__name__, 'network lb create', custom_path + 'create_load_balancer', transform=DeploymentOutputLongRunningOperation('Starting network lb create'), no_wait_param='no_wait', table_transformer=deployment_validate_table_format)
-cli_command(__name__, 'network lb delete', lb_path + 'delete', cf_load_balancers)
-cli_command(__name__, 'network lb show', lb_path + 'get', cf_load_balancers, exception_handler=empty_on_404)
-cli_command(__name__, 'network lb list', custom_path + 'list_lbs')
-cli_generic_update_command(__name__, 'network lb update', lb_path + 'get', lb_path + 'create_or_update', cf_load_balancers)
-
-
-property_map = {
- 'frontend_ip_configurations': 'frontend-ip',
- 'inbound_nat_rules': 'inbound-nat-rule',
- 'inbound_nat_pools': 'inbound-nat-pool',
- 'backend_address_pools': 'address-pool',
- 'load_balancing_rules': 'rule',
- 'probes': 'probe'
-}
-for subresource, alias in property_map.items():
- cli_command(__name__, 'network lb {} list'.format(alias), 'azure.cli.command_modules.network._util#{}'.format(list_network_resource_property('load_balancers', subresource)))
- cli_command(__name__, 'network lb {} show'.format(alias), 'azure.cli.command_modules.network._util#{}'.format(get_network_resource_property_entry('load_balancers', subresource)), exception_handler=empty_on_404)
- cli_command(__name__, 'network lb {} delete'.format(alias), 'azure.cli.command_modules.network._util#{}'.format(delete_network_resource_property_entry('load_balancers', subresource)))
-
-cli_command(__name__, 'network lb frontend-ip create', custom_path + 'create_lb_frontend_ip_configuration')
-cli_command(__name__, 'network lb inbound-nat-rule create', custom_path + 'create_lb_inbound_nat_rule')
-cli_command(__name__, 'network lb inbound-nat-pool create', custom_path + 'create_lb_inbound_nat_pool')
-cli_command(__name__, 'network lb address-pool create', custom_path + 'create_lb_backend_address_pool')
-cli_command(__name__, 'network lb rule create', custom_path + 'create_lb_rule')
-cli_command(__name__, 'network lb probe create', custom_path + 'create_lb_probe')
-
-cli_generic_update_command(__name__, 'network lb frontend-ip update',
- lb_path + 'get', lb_path + 'create_or_update', cf_load_balancers,
- child_collection_prop_name='frontend_ip_configurations',
- custom_function_op=custom_path + 'set_lb_frontend_ip_configuration')
-cli_generic_update_command(__name__, 'network lb inbound-nat-rule update',
- lb_path + 'get', lb_path + 'create_or_update', cf_load_balancers,
- child_collection_prop_name='inbound_nat_rules',
- custom_function_op=custom_path + 'set_lb_inbound_nat_rule')
-cli_generic_update_command(__name__, 'network lb inbound-nat-pool update',
- lb_path + 'get', lb_path + 'create_or_update', cf_load_balancers,
- child_collection_prop_name='inbound_nat_pools',
- custom_function_op=custom_path + 'set_lb_inbound_nat_pool')
-cli_generic_update_command(__name__, 'network lb rule update',
- lb_path + 'get', lb_path + 'create_or_update', cf_load_balancers,
- child_collection_prop_name='load_balancing_rules',
- custom_function_op=custom_path + 'set_lb_rule')
-cli_generic_update_command(__name__, 'network lb probe update',
- lb_path + 'get', lb_path + 'create_or_update', cf_load_balancers,
- child_collection_prop_name='probes',
- custom_function_op=custom_path + 'set_lb_probe')
-
-# LocalNetworkGatewaysOperations
-lgw_path = 'azure.mgmt.network.operations.local_network_gateways_operations#LocalNetworkGatewaysOperations.'
-cli_command(__name__, 'network local-gateway delete', lgw_path + 'delete', cf_local_network_gateways, no_wait_param='raw')
-cli_command(__name__, 'network local-gateway show', lgw_path + 'get', cf_local_network_gateways, exception_handler=empty_on_404)
-cli_command(__name__, 'network local-gateway list', lgw_path + 'list', cf_local_network_gateways, table_transformer=transform_local_gateway_table_output)
-cli_command(__name__, 'network local-gateway create', custom_path + 'create_local_gateway', no_wait_param='no_wait')
-cli_generic_update_command(__name__, 'network local-gateway update',
- lgw_path + 'get', lgw_path + 'create_or_update', cf_local_network_gateways,
- custom_function_op=custom_path + 'update_local_gateway', no_wait_param='raw')
-cli_generic_wait_command(__name__, 'network local-gateway wait', lgw_path + 'get', cf_local_network_gateways)
-
-# NetworkInterfacesOperations
-nic_path = 'azure.mgmt.network.operations.network_interfaces_operations#NetworkInterfacesOperations.'
-cli_command(__name__, 'network nic create', custom_path + 'create_nic', transform=transform_nic_create_output)
-cli_command(__name__, 'network nic delete', nic_path + 'delete', cf_network_interfaces)
-cli_command(__name__, 'network nic show', nic_path + 'get', cf_network_interfaces, exception_handler=empty_on_404)
-cli_command(__name__, 'network nic list', custom_path + 'list_nics')
-cli_generic_update_command(__name__, 'network nic update',
- nic_path + 'get', nic_path + 'create_or_update', cf_network_interfaces,
- custom_function_op=custom_path + 'update_nic')
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- cli_command(__name__, 'network nic show-effective-route-table', nic_path + 'get_effective_route_table', cf_network_interfaces)
- cli_command(__name__, 'network nic list-effective-nsg', nic_path + 'list_effective_network_security_groups', cf_network_interfaces)
-
-resource = 'network_interfaces'
-subresource = 'ip_configurations'
-cli_command(__name__, 'network nic ip-config create', custom_path + 'create_nic_ip_config')
-cli_generic_update_command(__name__, 'network nic ip-config update',
- nic_path + 'get', nic_path + 'create_or_update', cf_network_interfaces,
- child_collection_prop_name='ip_configurations',
- child_arg_name='ip_config_name',
- custom_function_op=custom_path + 'set_nic_ip_config')
-cli_command(__name__, 'network nic ip-config list', 'azure.cli.command_modules.network._util#{}'.format(list_network_resource_property(resource, subresource)))
-cli_command(__name__, 'network nic ip-config show', 'azure.cli.command_modules.network._util#{}'.format(get_network_resource_property_entry(resource, subresource)), exception_handler=empty_on_404)
-cli_command(__name__, 'network nic ip-config delete', 'azure.cli.command_modules.network._util#{}'.format(delete_network_resource_property_entry(resource, subresource)))
-cli_command(__name__, 'network nic ip-config address-pool add', custom_path + 'add_nic_ip_config_address_pool')
-cli_command(__name__, 'network nic ip-config address-pool remove', custom_path + 'remove_nic_ip_config_address_pool')
-cli_command(__name__, 'network nic ip-config inbound-nat-rule add', custom_path + 'add_nic_ip_config_inbound_nat_rule')
-cli_command(__name__, 'network nic ip-config inbound-nat-rule remove', custom_path + 'remove_nic_ip_config_inbound_nat_rule')
-
-# NetworkSecurityGroupsOperations
-nsg_path = 'azure.mgmt.network.operations.network_security_groups_operations#NetworkSecurityGroupsOperations.'
-cli_command(__name__, 'network nsg delete', nsg_path + 'delete', cf_network_security_groups)
-cli_command(__name__, 'network nsg show', nsg_path + 'get', cf_network_security_groups, exception_handler=empty_on_404)
-cli_command(__name__, 'network nsg list', custom_path + 'list_nsgs')
-cli_command(__name__, 'network nsg create', custom_path + 'create_nsg', transform=transform_nsg_create_output)
-cli_generic_update_command(__name__, 'network nsg update', nsg_path + 'get', nsg_path + 'create_or_update', cf_network_security_groups)
-
-
-# NetworkWatcherOperations
-nw_path = 'azure.mgmt.network.operations.network_watchers_operations#NetworkWatchersOperations.'
-nw_pc_path = 'azure.mgmt.network.operations.packet_captures_operations#PacketCapturesOperations.'
-cli_command(__name__, 'network watcher configure', custom_path + 'configure_network_watcher', cf_network_watcher)
-cli_command(__name__, 'network watcher list', nw_path + 'list_all', cf_network_watcher)
-
-cli_command(__name__, 'network watcher test-ip-flow', custom_path + 'check_nw_ip_flow', cf_network_watcher)
-cli_command(__name__, 'network watcher test-connectivity', custom_path + 'check_nw_connectivity', cf_network_watcher)
-cli_command(__name__, 'network watcher show-next-hop', custom_path + 'show_nw_next_hop', cf_network_watcher)
-cli_command(__name__, 'network watcher show-security-group-view', custom_path + 'show_nw_security_view', cf_network_watcher)
-cli_command(__name__, 'network watcher show-topology', nw_path + 'get_topology', cf_network_watcher)
-
-cli_command(__name__, 'network watcher packet-capture create', custom_path + 'create_nw_packet_capture', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture show', nw_pc_path + 'get', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture show-status', nw_pc_path + 'get_status', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture delete', nw_pc_path + 'delete', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture stop', nw_pc_path + 'stop', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture list', nw_pc_path + 'list', cf_packet_capture)
-
-cli_command(__name__, 'network watcher flow-log configure', custom_path + 'set_nsg_flow_logging', cf_network_watcher)
-cli_command(__name__, 'network watcher flow-log show', custom_path + 'show_nsg_flow_logging', cf_network_watcher)
-
-cli_command(__name__, 'network watcher troubleshooting start', custom_path + 'start_nw_troubleshooting', cf_network_watcher, no_wait_param='no_wait')
-cli_command(__name__, 'network watcher troubleshooting show', custom_path + 'show_nw_troubleshooting_result', cf_network_watcher)
-
-# NetworkWatcherOperations
-nw_path = 'azure.mgmt.network.operations.network_watchers_operations#NetworkWatchersOperations.'
-nw_pc_path = 'azure.mgmt.network.operations.packet_captures_operations#PacketCapturesOperations.'
-cli_command(__name__, 'network watcher configure', custom_path + 'configure_network_watcher', cf_network_watcher)
-cli_command(__name__, 'network watcher list', nw_path + 'list_all', cf_network_watcher)
-
-cli_command(__name__, 'network watcher test-ip-flow', custom_path + 'check_nw_ip_flow', cf_network_watcher)
-cli_command(__name__, 'network watcher show-next-hop', custom_path + 'show_nw_next_hop', cf_network_watcher)
-cli_command(__name__, 'network watcher show-security-group-view', custom_path + 'show_nw_security_view', cf_network_watcher)
-cli_command(__name__, 'network watcher show-topology', nw_path + 'get_topology', cf_network_watcher)
-
-cli_command(__name__, 'network watcher packet-capture create', custom_path + 'create_nw_packet_capture', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture show', nw_pc_path + 'get', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture show-status', nw_pc_path + 'get_status', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture delete', nw_pc_path + 'delete', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture stop', nw_pc_path + 'stop', cf_packet_capture)
-cli_command(__name__, 'network watcher packet-capture list', nw_pc_path + 'list', cf_packet_capture)
-
-cli_command(__name__, 'network watcher flow-log configure', custom_path + 'set_nsg_flow_logging', cf_network_watcher)
-cli_command(__name__, 'network watcher flow-log show', custom_path + 'show_nsg_flow_logging', cf_network_watcher)
-
-cli_command(__name__, 'network watcher troubleshooting start', custom_path + 'start_nw_troubleshooting', cf_network_watcher, no_wait_param='no_wait')
-cli_command(__name__, 'network watcher troubleshooting show', custom_path + 'show_nw_troubleshooting_result', cf_network_watcher)
-
-# PublicIPAddressesOperations
-public_ip_show_table_transform = '{Name:name, ResourceGroup:resourceGroup, Location:location, $zone$AddressVersion:publicIpAddressVersion, AllocationMethod:publicIpAllocationMethod, IdleTimeoutInMinutes:idleTimeoutInMinutes, ProvisioningState:provisioningState}'
-public_ip_show_table_transform = public_ip_show_table_transform.replace('$zone$', 'Zones: (!zones && \' \') || join(` `, zones), ' if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01') else ' ')
-
-public_ip_path = 'azure.mgmt.network.operations.public_ip_addresses_operations#PublicIPAddressesOperations.'
-cli_command(__name__, 'network public-ip delete', public_ip_path + 'delete', cf_public_ip_addresses)
-cli_command(__name__, 'network public-ip show', public_ip_path + 'get', cf_public_ip_addresses, exception_handler=empty_on_404, table_transformer=public_ip_show_table_transform)
-cli_command(__name__, 'network public-ip list', custom_path + 'list_public_ips', table_transformer='[].' + public_ip_show_table_transform)
-cli_command(__name__, 'network public-ip create', custom_path + 'create_public_ip', transform=transform_public_ip_create_output)
-cli_generic_update_command(__name__, 'network public-ip update', public_ip_path + 'get', public_ip_path + 'create_or_update', cf_public_ip_addresses, custom_function_op=custom_path + 'update_public_ip')
-
-# RouteTablesOperations
-rt_path = 'azure.mgmt.network.operations.route_tables_operations#RouteTablesOperations.'
-cli_command(__name__, 'network route-table create', rt_path + 'create_or_update', cf_route_tables)
-cli_command(__name__, 'network route-table delete', rt_path + 'delete', cf_route_tables)
-cli_command(__name__, 'network route-table show', rt_path + 'get', cf_route_tables, exception_handler=empty_on_404)
-cli_command(__name__, 'network route-table list', custom_path + 'list_route_tables')
-cli_generic_update_command(__name__, 'network route-table update', rt_path + 'get', rt_path + 'create_or_update', cf_route_tables, custom_function_op=custom_path + 'update_route_table')
-
-# RoutesOperations
-rtr_path = 'azure.mgmt.network.operations.routes_operations#RoutesOperations.'
-cli_command(__name__, 'network route-table route delete', rtr_path + 'delete', cf_routes)
-cli_command(__name__, 'network route-table route show', rtr_path + 'get', cf_routes, exception_handler=empty_on_404)
-cli_command(__name__, 'network route-table route list', rtr_path + 'list', cf_routes)
-cli_generic_update_command(__name__, 'network route-table route update',
- rtr_path + 'get', rtr_path + 'create_or_update', cf_routes,
- custom_function_op=custom_path + 'update_route', setter_arg_name='route_parameters')
-cli_command(__name__, 'network route-table route create', custom_path + 'create_route')
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-12-01'):
- # RouteFiltersOperations
- rf_path = 'azure.mgmt.network.operations#RouteFiltersOperations.'
- cli_command(__name__, 'network route-filter list', custom_path + 'list_route_filters', cf_route_filters)
- cli_command(__name__, 'network route-filter show', rf_path + 'get', cf_route_filters)
- cli_command(__name__, 'network route-filter create', custom_path + 'create_route_filter', cf_route_filters)
- cli_command(__name__, 'network route-filter delete', rf_path + 'delete', cf_route_filters)
- cli_generic_update_command(__name__, 'network route-filter update', rf_path + 'get', rf_path + 'create_or_update', cf_route_filters, setter_arg_name='route_filter_parameters')
-
- # RouteFilterRulesOperations
- rfr_path = 'azure.mgmt.network.operations#RouteFilterRulesOperations.'
- cli_command(__name__, 'network route-filter rule list', rfr_path + 'list_by_route_filter', cf_route_filter_rules)
- cli_command(__name__, 'network route-filter rule show', rfr_path + 'get', cf_route_filter_rules)
- cli_command(__name__, 'network route-filter rule create', custom_path + 'create_route_filter_rule', cf_route_filter_rules)
- cli_command(__name__, 'network route-filter rule delete', rfr_path + 'delete', cf_route_filter_rules)
- cli_generic_update_command(__name__, 'network route-filter rule update', rfr_path + 'get', rfr_path + 'create_or_update', cf_route_filter_rules, setter_arg_name='route_filter_rule_parameters')
-
- # ServiceCommunitiesOperations
- sc_path = 'azure.mgmt.network.operations#BgpServiceCommunitiesOperations.'
- cli_command(__name__, 'network route-filter rule list-service-communities', sc_path + 'list', cf_service_community, table_transformer=transform_service_community_table_output)
-
-# SecurityRulesOperations
-sr_path = 'azure.mgmt.network.operations.security_rules_operations#SecurityRulesOperations.'
-cli_command(__name__, 'network nsg rule delete', sr_path + 'delete', cf_security_rules)
-cli_command(__name__, 'network nsg rule show', sr_path + 'get', cf_security_rules, exception_handler=empty_on_404)
-cli_command(__name__, 'network nsg rule list', sr_path + 'list', cf_security_rules)
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- cli_command(__name__, 'network nsg rule create', custom_path + 'create_nsg_rule_2017_06_01')
- cli_generic_update_command(__name__, 'network nsg rule update',
- sr_path + 'get', sr_path + 'create_or_update', cf_security_rules,
- setter_arg_name='security_rule_parameters', custom_function_op=custom_path + 'update_nsg_rule_2017_06_01')
-else:
- cli_command(__name__, 'network nsg rule create', custom_path + 'create_nsg_rule_2017_03_01')
- cli_generic_update_command(__name__, 'network nsg rule update',
- sr_path + 'get', sr_path + 'create_or_update', cf_security_rules,
- setter_arg_name='security_rule_parameters', custom_function_op=custom_path + 'update_nsg_rule_2017_03_01')
-
-# SubnetsOperations
-subnet_path = 'azure.mgmt.network.operations.subnets_operations#SubnetsOperations.'
-cli_command(__name__, 'network vnet subnet delete', subnet_path + 'delete', cf_subnets)
-cli_command(__name__, 'network vnet subnet show', subnet_path + 'get', cf_subnets, exception_handler=empty_on_404)
-cli_command(__name__, 'network vnet subnet list', subnet_path + 'list', cf_subnets)
-cli_command(__name__, 'network vnet subnet create', custom_path + 'create_subnet')
-cli_generic_update_command(__name__, 'network vnet subnet update',
- subnet_path + 'get', subnet_path + 'create_or_update', cf_subnets,
- setter_arg_name='subnet_parameters', custom_function_op=custom_path + 'update_subnet')
-
-# Usages operations
-usage_path = 'azure.mgmt.network.operations.usages_operations#UsagesOperations.'
-cli_command(__name__, 'network list-usages', usage_path + 'list', cf_usages, transform=transform_network_usage_list, table_transformer=transform_network_usage_table)
-
-# VirtualNetworkGatewayConnectionsOperations
-vpn_conn_path = 'azure.mgmt.network.operations.virtual_network_gateway_connections_operations#VirtualNetworkGatewayConnectionsOperations.'
-cli_command(__name__, 'network vpn-connection create', custom_path + 'create_vpn_connection', cf_virtual_network_gateway_connections, transform=transform_vpn_connection_create_output, table_transformer=deployment_validate_table_format)
-cli_command(__name__, 'network vpn-connection delete', vpn_conn_path + 'delete', cf_virtual_network_gateway_connections)
-cli_command(__name__, 'network vpn-connection show', vpn_conn_path + 'get', cf_virtual_network_gateway_connections, exception_handler=empty_on_404, transform=transform_vpn_connection)
-cli_command(__name__, 'network vpn-connection list', vpn_conn_path + 'list', cf_virtual_network_gateway_connections, transform=transform_vpn_connection_list)
-cli_generic_update_command(__name__, 'network vpn-connection update',
- vpn_conn_path + 'get', vpn_conn_path + 'create_or_update', cf_virtual_network_gateway_connections,
- custom_function_op=custom_path + 'update_vpn_connection')
-
-cli_command(__name__, 'network vpn-connection shared-key show', vpn_conn_path + 'get_shared_key', cf_virtual_network_gateway_connections, exception_handler=empty_on_404)
-cli_command(__name__, 'network vpn-connection shared-key reset', vpn_conn_path + 'reset_shared_key', cf_virtual_network_gateway_connections)
-cli_generic_update_command(__name__, 'network vpn-connection shared-key update', vpn_conn_path + 'get', vpn_conn_path + 'set_shared_key', cf_virtual_network_gateway_connections)
-
-cli_command(__name__, 'network vpn-connection ipsec-policy add', custom_path + 'add_vpn_conn_ipsec_policy', no_wait_param='no_wait')
-cli_command(__name__, 'network vpn-connection ipsec-policy list', custom_path + 'list_vpn_conn_ipsec_policies')
-cli_command(__name__, 'network vpn-connection ipsec-policy clear', custom_path + 'clear_vpn_conn_ipsec_policies', no_wait_param='no_wait')
-
-# VirtualNetworkGatewaysOperations
-vgw_path = 'azure.mgmt.network.operations.virtual_network_gateways_operations#VirtualNetworkGatewaysOperations.'
-cli_command(__name__, 'network vnet-gateway delete', vgw_path + 'delete', cf_virtual_network_gateways, no_wait_param='raw')
-cli_command(__name__, 'network vnet-gateway show', vgw_path + 'get', cf_virtual_network_gateways, exception_handler=empty_on_404)
-cli_command(__name__, 'network vnet-gateway list', vgw_path + 'list', cf_virtual_network_gateways)
-cli_command(__name__, 'network vnet-gateway reset', vgw_path + 'reset', cf_virtual_network_gateways)
-cli_command(__name__, 'network vnet-gateway create', custom_path + 'create_vnet_gateway', no_wait_param='no_wait', transform=transform_vnet_gateway_create_output)
-cli_generic_update_command(__name__, 'network vnet-gateway update',
- vgw_path + 'get', vgw_path + 'create_or_update', cf_virtual_network_gateways,
- custom_function_op=custom_path + 'update_vnet_gateway', no_wait_param='raw')
-cli_generic_wait_command(__name__, 'network vnet-gateway wait', vgw_path + 'get', cf_virtual_network_gateways)
-
-cli_command(__name__, 'network vnet-gateway root-cert create', custom_path + 'create_vnet_gateway_root_cert')
-cli_command(__name__, 'network vnet-gateway root-cert delete', custom_path + 'delete_vnet_gateway_root_cert')
-cli_command(__name__, 'network vnet-gateway revoked-cert create', custom_path + 'create_vnet_gateway_revoked_cert')
-cli_command(__name__, 'network vnet-gateway revoked-cert delete', custom_path + 'delete_vnet_gateway_revoked_cert')
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- cli_command(__name__, 'network vnet-gateway list-bgp-peer-status', vgw_path + 'get_bgp_peer_status', cf_virtual_network_gateways)
- cli_command(__name__, 'network vnet-gateway list-advertised-routes', vgw_path + 'get_advertised_routes', cf_virtual_network_gateways)
- cli_command(__name__, 'network vnet-gateway list-learned-routes', vgw_path + 'get_learned_routes', cf_virtual_network_gateways)
-
-cli_command(__name__, 'network vnet-gateway vpn-client generate', custom_path + 'generate_vpn_client', cf_virtual_network_gateways)
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-08-01'):
- cli_command(__name__, 'network vnet-gateway vpn-client show-url', vgw_path + 'get_vpn_profile_package_url', cf_virtual_network_gateways)
-
-# VirtualNetworksOperations
-vnet_path = 'azure.mgmt.network.operations.virtual_networks_operations#VirtualNetworksOperations.'
-cli_command(__name__, 'network vnet delete', vnet_path + 'delete', cf_virtual_networks)
-cli_command(__name__, 'network vnet show', vnet_path + 'get', cf_virtual_networks, exception_handler=empty_on_404)
-cli_command(__name__, 'network vnet list', custom_path + 'list_vnet')
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- cli_command(__name__, 'network vnet check-ip-address', vnet_path + 'check_ip_address_availability', cf_virtual_networks)
-cli_command(__name__, 'network vnet create', custom_path + 'create_vnet', transform=transform_vnet_create_output)
-cli_generic_update_command(__name__, 'network vnet update', vnet_path + 'get', vnet_path + 'create_or_update', cf_virtual_networks, custom_function_op=custom_path + 'update_vnet')
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- # VNET Peering Operations
- vnet_peering_path = 'azure.mgmt.network.operations.virtual_network_peerings_operations#VirtualNetworkPeeringsOperations.'
- cli_command(__name__, 'network vnet peering create', custom_path + 'create_vnet_peering')
- cli_command(__name__, 'network vnet peering show', vnet_peering_path + 'get', cf_virtual_network_peerings, exception_handler=empty_on_404)
- cli_command(__name__, 'network vnet peering list', vnet_peering_path + 'list', cf_virtual_network_peerings)
- cli_command(__name__, 'network vnet peering delete', vnet_peering_path + 'delete', cf_virtual_network_peerings)
- cli_generic_update_command(__name__, 'network vnet peering update', vnet_peering_path + 'get', vnet_peering_path + 'create_or_update', cf_virtual_network_peerings, setter_arg_name='virtual_network_peering_parameters')
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- endpoint_service_path = 'azure.mgmt.network.operations.available_endpoint_services_operations#AvailableEndpointServicesOperations.'
- cli_command(__name__, 'network vnet list-endpoint-services', endpoint_service_path + 'list', cf_endpoint_service)
-
-# Traffic Manager ProfileOperations
-tm_profile_path = 'azure.mgmt.trafficmanager.operations.profiles_operations#ProfilesOperations.'
-cli_command(__name__, 'network traffic-manager profile check-dns', tm_profile_path + 'check_traffic_manager_relative_dns_name_availability', cf_traffic_manager_mgmt_profiles)
-cli_command(__name__, 'network traffic-manager profile show', tm_profile_path + 'get', cf_traffic_manager_mgmt_profiles, exception_handler=empty_on_404)
-cli_command(__name__, 'network traffic-manager profile delete', tm_profile_path + 'delete', cf_traffic_manager_mgmt_profiles)
-cli_command(__name__, 'network traffic-manager profile list', custom_path + 'list_traffic_manager_profiles')
-cli_command(__name__, 'network traffic-manager profile create', custom_path + 'create_traffic_manager_profile', transform=transform_traffic_manager_create_output)
-cli_generic_update_command(__name__, 'network traffic-manager profile update',
- tm_profile_path + 'get', tm_profile_path + 'create_or_update', cf_traffic_manager_mgmt_profiles,
- custom_function_op=custom_path + 'update_traffic_manager_profile')
-
-
-# Traffic Manager EndpointOperations
-tm_endpoint_path = 'azure.mgmt.trafficmanager.operations.endpoints_operations#EndpointsOperations.'
-cli_command(__name__, 'network traffic-manager endpoint show', tm_endpoint_path + 'get', cf_traffic_manager_mgmt_endpoints, exception_handler=empty_on_404)
-cli_command(__name__, 'network traffic-manager endpoint delete', tm_endpoint_path + 'delete', cf_traffic_manager_mgmt_endpoints)
-cli_command(__name__, 'network traffic-manager endpoint create', custom_path + 'create_traffic_manager_endpoint')
-cli_command(__name__, 'network traffic-manager endpoint list', custom_path + 'list_traffic_manager_endpoints')
-cli_generic_update_command(__name__, 'network traffic-manager endpoint update',
- tm_endpoint_path + 'get', tm_endpoint_path + 'create_or_update', cf_traffic_manager_mgmt_endpoints,
- custom_function_op=custom_path + 'update_traffic_manager_endpoint')
-
-tm_geographic_path = 'azure.mgmt.trafficmanager.operations.geographic_hierarchies_operations#GeographicHierarchiesOperations.'
-cli_command(__name__, 'network traffic-manager endpoint show-geographic-hierarchy', tm_geographic_path + 'get_default', cf_tm_geographic, table_transformer=transform_geographic_hierachy_table_output)
-
-# DNS ZonesOperations
-dns_zone_path = 'azure.mgmt.dns.operations.zones_operations#ZonesOperations.'
-cli_command(__name__, 'network dns zone show', dns_zone_path + 'get', cf_dns_mgmt_zones, table_transformer=transform_dns_zone_table_output, exception_handler=empty_on_404)
-cli_command(__name__, 'network dns zone delete', dns_zone_path + 'delete', cf_dns_mgmt_zones, confirmation=True)
-cli_command(__name__, 'network dns zone show', dns_zone_path + 'get', cf_dns_mgmt_zones, table_transformer=transform_dns_zone_table_output, exception_handler=empty_on_404)
-cli_command(__name__, 'network dns zone delete', dns_zone_path + 'delete', cf_dns_mgmt_zones, confirmation=True)
-cli_command(__name__, 'network dns zone list', custom_path + 'list_dns_zones', table_transformer=transform_dns_zone_table_output)
-cli_generic_update_command(__name__, 'network dns zone update', dns_zone_path + 'get', dns_zone_path + 'create_or_update', cf_dns_mgmt_zones, custom_function_op=custom_path + 'update_dns_zone')
-cli_command(__name__, 'network dns zone import', custom_path + 'import_zone')
-cli_command(__name__, 'network dns zone export', custom_path + 'export_zone')
-cli_command(__name__, 'network dns zone create', custom_path + 'create_dns_zone', cf_dns_mgmt_zones)
-
-# DNS RecordSetsOperations
-dns_record_set_path = 'azure.mgmt.dns.operations.record_sets_operations#RecordSetsOperations.'
-cli_command(__name__, 'network dns record-set list', custom_path + 'list_dns_record_set', cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output)
-for record in ['a', 'aaaa', 'mx', 'ns', 'ptr', 'srv', 'txt', 'caa']:
- cli_command(__name__, 'network dns record-set {} show'.format(record), dns_record_set_path + 'get', cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output, exception_handler=empty_on_404)
- cli_command(__name__, 'network dns record-set {} delete'.format(record), dns_record_set_path + 'delete', cf_dns_mgmt_record_sets, confirmation=True)
- cli_command(__name__, 'network dns record-set {} list'.format(record), custom_path + 'list_dns_record_set', cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output, table_transformer=transform_dns_record_set_table_output)
- cli_command(__name__, 'network dns record-set {} create'.format(record), custom_path + 'create_dns_record_set', transform=transform_dns_record_set_output)
- cli_command(__name__, 'network dns record-set {} add-record'.format(record), custom_path + 'add_dns_{}_record'.format(record), transform=transform_dns_record_set_output)
- cli_command(__name__, 'network dns record-set {} remove-record'.format(record), custom_path + 'remove_dns_{}_record'.format(record), transform=transform_dns_record_set_output)
- cli_generic_update_command(__name__, 'network dns record-set {} update'.format(record),
- dns_record_set_path + 'get',
- dns_record_set_path + 'create_or_update',
- cf_dns_mgmt_record_sets,
- custom_function_op=custom_path + 'update_dns_record_set',
- transform=transform_dns_record_set_output)
-
-cli_command(__name__, 'network dns record-set soa show', dns_record_set_path + 'get', cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output, exception_handler=empty_on_404)
-cli_command(__name__, 'network dns record-set soa update', custom_path + 'update_dns_soa_record', transform=transform_dns_record_set_output)
-
-cli_command(__name__, 'network dns record-set cname show', dns_record_set_path + 'get', cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output, exception_handler=empty_on_404)
-cli_command(__name__, 'network dns record-set cname delete', dns_record_set_path + 'delete', cf_dns_mgmt_record_sets)
-cli_command(__name__, 'network dns record-set cname list', custom_path + 'list_dns_record_set', cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output, table_transformer=transform_dns_record_set_table_output)
-cli_command(__name__, 'network dns record-set cname create', custom_path + 'create_dns_record_set', transform=transform_dns_record_set_output)
-cli_command(__name__, 'network dns record-set cname set-record', custom_path + 'add_dns_cname_record', transform=transform_dns_record_set_output)
-cli_command(__name__, 'network dns record-set cname remove-record', custom_path + 'remove_dns_cname_record', transform=transform_dns_record_set_output)
+
+from azure.cli.command_modules.network._client_factory import (
+ cf_application_gateways, cf_express_route_circuit_authorizations,
+ cf_express_route_circuit_peerings, cf_express_route_circuits,
+ cf_express_route_service_providers, cf_load_balancers, cf_local_network_gateways,
+ cf_network_interfaces, cf_network_security_groups, cf_network_watcher, cf_packet_capture,
+ cf_route_tables, cf_routes, cf_route_filter_rules, cf_route_filters, cf_virtual_networks,
+ cf_virtual_network_peerings, cf_virtual_network_gateway_connections,
+ cf_virtual_network_gateways, cf_traffic_manager_mgmt_endpoints,
+ cf_traffic_manager_mgmt_profiles, cf_dns_mgmt_record_sets, cf_dns_mgmt_zones,
+ cf_tm_geographic, cf_security_rules, cf_subnets, cf_usages, cf_service_community,
+ cf_public_ip_addresses, cf_endpoint_services, cf_application_security_groups)
+from azure.cli.command_modules.network._util import (
+ list_network_resource_property, get_network_resource_property_entry, delete_network_resource_property_entry)
+from azure.cli.command_modules.network._format import (
+ transform_local_gateway_table_output, transform_dns_record_set_output,
+ transform_dns_record_set_table_output, transform_dns_zone_table_output,
+ transform_vnet_create_output, transform_public_ip_create_output,
+ transform_traffic_manager_create_output, transform_nic_create_output,
+ transform_nsg_create_output, transform_vnet_gateway_create_output,
+ transform_vpn_connection, transform_vpn_connection_list,
+ transform_geographic_hierachy_table_output,
+ transform_service_community_table_output, transform_waf_rule_sets_table_output,
+ transform_network_usage_list, transform_network_usage_table)
+from azure.cli.command_modules.network._validators import (
+ process_ag_create_namespace, process_ag_listener_create_namespace, process_ag_http_settings_create_namespace,
+ process_ag_rule_create_namespace, process_ag_ssl_policy_set_namespace, process_ag_url_path_map_create_namespace,
+ process_ag_url_path_map_rule_create_namespace, process_auth_create_namespace, process_nic_create_namespace,
+ process_lb_create_namespace, process_lb_frontend_ip_namespace, process_local_gateway_create_namespace,
+ process_nw_flow_log_set_namespace, process_nw_flow_log_show_namespace, process_nw_packet_capture_create_namespace,
+ process_nw_test_connectivity_namespace, process_nw_topology_namespace, process_nw_troubleshooting_start_namespace,
+ process_nw_troubleshooting_show_namespace, process_public_ip_create_namespace, process_tm_endpoint_create_namespace,
+ process_vnet_create_namespace, process_vnet_gateway_create_namespace, process_vnet_gateway_update_namespace,
+ process_vpn_connection_create_namespace, process_route_table_create_namespace)
+
+
+# pylint: disable=too-many-locals, too-many-statements
+def load_command_table(self, _):
+
+ # region Command Types
+ network_ag_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.application_gateways_operations#ApplicationGatewaysOperations.{}',
+ client_factory=cf_load_balancers
+ )
+
+ network_util = CliCommandType(
+ operations_tmpl='azure.cli.command_modules.network._util#{}',
+ client_factory=None
+ )
+
+ network_asg_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.application_security_groups_operations#ApplicationSecurityGroupsOperations.{}',
+ client_factory=cf_application_security_groups
+ )
+
+ network_dns_zone_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.dns.operations.zones_operations#ZonesOperations.{}',
+ client_factory=cf_dns_mgmt_zones
+ )
+
+ network_dns_record_set_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.dns.operations.record_sets_operations#RecordSetsOperations.{}',
+ client_factory=cf_dns_mgmt_record_sets,
+ )
+
+ network_endpoint_service_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.available_endpoint_services_operations#AvailableEndpointServicesOperations.{}',
+ client_factory=cf_endpoint_services,
+ min_api='2017-06-01'
+ )
+
+ network_er_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.express_route_circuits_operations#ExpressRouteCircuitsOperations.{}',
+ client_factory=cf_express_route_circuits,
+ min_api='2016-09-01'
+ )
+
+ network_erca_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.express_route_circuit_authorizations_operations#ExpressRouteCircuitAuthorizationsOperations.{}',
+ client_factory=cf_express_route_circuit_authorizations,
+ min_api='2016-09-01'
+ )
+
+ network_ersp_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.express_route_service_providers_operations#ExpressRouteServiceProvidersOperations.{}',
+ client_factory=cf_express_route_service_providers,
+ min_api='2016-09-01'
+ )
+
+ network_er_peering_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.express_route_circuit_peerings_operations#ExpressRouteCircuitPeeringsOperations.{}',
+ client_factory=cf_express_route_circuit_peerings
+ )
+
+ network_lb_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.load_balancers_operations#LoadBalancersOperations.{}',
+ client_factory=cf_load_balancers
+ )
+
+ network_lgw_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.local_network_gateways_operations#LocalNetworkGatewaysOperations.{}',
+ client_factory=cf_local_network_gateways
+ )
+
+ network_nic_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.network_interfaces_operations#NetworkInterfacesOperations.{}',
+ client_factory=cf_network_interfaces
+ )
+
+ network_nsg_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.network_security_groups_operations#NetworkSecurityGroupsOperations.{}',
+ client_factory=cf_network_security_groups
+ )
+
+ network_nsg_rule_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.security_rules_operations#SecurityRulesOperations.{}',
+ client_factory=cf_security_rules
+ )
+
+ network_public_ip_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.public_ip_addresses_operations#PublicIPAddressesOperations.{}',
+ client_factory=cf_public_ip_addresses
+ )
+
+ network_rf_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations#RouteFiltersOperations.{}',
+ client_factory=cf_route_filters,
+ min_api='2016-12-01'
+ )
+
+ network_rfr_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations#RouteFilterRulesOperations.{}',
+ client_factory=cf_route_filter_rules,
+ min_api='2016-12-01'
+ )
+
+ network_rt_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.route_tables_operations#RouteTablesOperations.{}',
+ client_factory=cf_route_tables
+ )
+
+ network_subnet_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.subnets_operations#SubnetsOperations.{}',
+ client_factory=cf_subnets
+ )
+
+ network_tmp_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.trafficmanager.operations.profiles_operations#ProfilesOperations.{}',
+ client_factory=cf_traffic_manager_mgmt_profiles
+ )
+
+ network_tme_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.trafficmanager.operations.endpoints_operations#EndpointsOperations.{}',
+ client_factory=cf_traffic_manager_mgmt_endpoints
+ )
+
+ network_vgw_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.virtual_network_gateways_operations#VirtualNetworkGatewaysOperations.{}',
+ client_factory=cf_virtual_network_gateways
+ )
+
+ network_vnet_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.virtual_networks_operations#VirtualNetworksOperations.{}',
+ client_factory=cf_virtual_networks
+ )
+
+ network_vnet_peering_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.virtual_network_peerings_operations#VirtualNetworkPeeringsOperations.{}',
+ client_factory=cf_virtual_network_peerings
+ )
+
+ network_vpn_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.virtual_network_gateway_connections_operations#VirtualNetworkGatewayConnectionsOperations.{}',
+ client_factory=cf_virtual_network_gateway_connections
+ )
+
+ network_watcher_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.network_watchers_operations#NetworkWatchersOperations.{}',
+ client_factory=cf_network_watcher
+ )
+
+ network_watcher_pc_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.packet_captures_operations#PacketCapturesOperations.{}',
+ client_factory=cf_packet_capture
+ )
+
+ # endregion
+
+ # region NetworkRoot
+ usage_path = 'azure.mgmt.network.operations.usages_operations#UsagesOperations.{}'
+ with self.command_group('network') as g:
+ g.command('list-usages', 'list', operations_tmpl=usage_path, client_factory=cf_usages, transform=transform_network_usage_list, table_transformer=transform_network_usage_table)
+
+ # endregion
+
+ # region ApplicationGateways
+ with self.command_group('network application-gateway', network_ag_sdk) as g:
+ g.custom_command('create', 'create_application_gateway', transform=DeploymentOutputLongRunningOperation(self.cli_ctx), no_wait_param='no_wait', table_transformer=deployment_validate_table_format, validator=process_ag_create_namespace)
+ g.command('delete', 'delete', no_wait_param='raw')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_application_gateways')
+ g.command('start', 'start')
+ g.command('stop', 'stop')
+ g.command('show-backend-health', 'backend_health', min_api='2016-09-01')
+ g.generic_update_command('update', no_wait_param='raw', custom_func_name='update_application_gateway')
+ g.generic_wait_command('wait')
+
+ subresource_properties = [
+ {'prop': 'authentication_certificates', 'name': 'auth-cert'},
+ {'prop': 'ssl_certificates', 'name': 'ssl-cert'},
+ {'prop': 'frontend_ip_configurations', 'name': 'frontend-ip'},
+ {'prop': 'frontend_ports', 'name': 'frontend-port'},
+ {'prop': 'backend_address_pools', 'name': 'address-pool'},
+ {'prop': 'backend_http_settings_collection', 'name': 'http-settings', 'validator': process_ag_http_settings_create_namespace},
+ {'prop': 'http_listeners', 'name': 'http-listener', 'validator': process_ag_listener_create_namespace},
+ {'prop': 'request_routing_rules', 'name': 'rule', 'validator': process_ag_rule_create_namespace},
+ {'prop': 'probes', 'name': 'probe'},
+ {'prop': 'url_path_maps', 'name': 'url-path-map', 'validator': process_ag_url_path_map_create_namespace}
+ ]
+
+ def _make_singular(value):
+ try:
+ if value.endswith('ies'):
+ value = value[:-3] + 'y'
+ elif value.endswith('s'):
+ value = value[:-1]
+ return value
+ except AttributeError:
+ return value
+
+ for kwargs in subresource_properties:
+ alias = kwargs['name']
+ subresource = kwargs['prop']
+ create_validator = kwargs.get('validator', None)
+ with self.command_group('network application-gateway {}'.format(alias), network_util) as g:
+ g.command('list', list_network_resource_property('application_gateways', subresource))
+ g.command('show', get_network_resource_property_entry('application_gateways', subresource), exception_handler=empty_on_404)
+ g.command('delete', delete_network_resource_property_entry('application_gateways', subresource), no_wait_param='no_wait')
+ g.custom_command('create', 'create_ag_{}'.format(_make_singular(subresource)), no_wait_param='no_wait', validator=create_validator)
+ g.generic_update_command('update', operations_tmpl=network_ag_sdk.settings['operations_tmpl'],
+ client_factory=cf_application_gateways, no_wait_param='raw',
+ custom_func_name='update_ag_{}'.format(_make_singular(subresource)),
+ child_collection_prop_name=subresource)
+
+ with self.command_group('network application-gateway redirect-config', network_util, min_api='2017-06-01') as g:
+ subresource = 'redirect_configurations'
+ g.command('list', list_network_resource_property('application_gateways', subresource))
+ g.command('show', get_network_resource_property_entry('application_gateways', subresource), exception_handler=empty_on_404)
+ g.command('delete', delete_network_resource_property_entry('application_gateways', subresource), no_wait_param='no_wait')
+ g.custom_command('create', 'create_ag_{}'.format(_make_singular(subresource)), no_wait_param='no_wait', doc_string_source='ApplicationGatewayRedirectConfiguration')
+ g.generic_update_command('update', operations_tmpl=network_ag_sdk.settings['operations_tmpl'],
+ client_factory=cf_application_gateways, no_wait_param='raw',
+ custom_func_name='update_ag_{}'.format(_make_singular(subresource)),
+ child_collection_prop_name=subresource, doc_string_source='ApplicationGatewayRedirectConfiguration')
+
+ with self.command_group('network application-gateway ssl-policy') as g:
+ g.custom_command('set', 'set_ag_ssl_policy_2017_06_01', min_api='2017-06-01', no_wait_param='no_wait', validator=process_ag_ssl_policy_set_namespace, doc_string_source='ApplicationGatewaySslPolicy')
+ g.custom_command('set', 'set_ag_ssl_policy_2017_03_01', max_api='2017-03-01', no_wait_param='no_wait', validator=process_ag_ssl_policy_set_namespace, doc_string_source='ApplicationGatewaySslPolicy')
+ g.custom_command('show', 'show_ag_ssl_policy', exception_handler=empty_on_404)
+
+ with self.command_group('network application-gateway ssl-policy', network_ag_sdk, min_api='2017-06-01') as g:
+ g.command('list-options', 'list_available_ssl_options')
+ g.command('predefined list', 'list_available_ssl_predefined_policies')
+ g.command('predefined show', 'get_ssl_predefined_policy')
+
+ with self.command_group('network application-gateway url-path-map rule') as g:
+ g.custom_command('create', 'create_ag_url_path_map_rule', no_wait_param='no_wait', validator=process_ag_url_path_map_rule_create_namespace)
+ g.custom_command('delete', 'delete_ag_url_path_map_rule', no_wait_param='no_wait')
+
+ with self.command_group('network application-gateway waf-config') as g:
+ g.custom_command('set', 'set_ag_waf_config_2017_03_01', min_api='2017-03-01', no_wait_param='no_wait')
+ g.custom_command('set', 'set_ag_waf_config_2016_09_01', max_api='2016-09-01', no_wait_param='no_wait')
+ g.custom_command('show', 'show_ag_waf_config', exception_handler=empty_on_404)
+ g.custom_command('list-rule-sets', 'list_ag_waf_rule_sets', min_api='2017-03-01', client_factory=cf_application_gateways, table_transformer=transform_waf_rule_sets_table_output)
+
+ # endregion
+
+ # region ApplicationSecurityGroups
+ with self.command_group('network asg', network_asg_sdk, min_api='2017-09-01') as g:
+ g.custom_command('create', 'create_asg')
+ g.command('show', 'get')
+ g.command('list', 'list_all')
+ g.command('delete', 'delete')
+ g.generic_update_command('update', custom_func_name='update_asg')
+
+ # endregion
+
+ # region DNS
+ with self.command_group('network dns zone', network_dns_zone_sdk) as g:
+ g.command('delete', 'delete', confirmation=True)
+ g.command('show', 'get', table_transformer=transform_dns_zone_table_output, exception_handler=empty_on_404)
+ g.custom_command('list', 'list_dns_zones', table_transformer=transform_dns_zone_table_output)
+ g.custom_command('import', 'import_zone')
+ g.custom_command('export', 'export_zone')
+ g.custom_command('create', 'create_dns_zone', client_factory=cf_dns_mgmt_zones)
+ g.generic_update_command('update')
+
+ with self.command_group('network dns record-set') as g:
+ g.custom_command('list', 'list_dns_record_set', client_factory=cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output)
+
+ for record in ['a', 'aaaa', 'mx', 'ns', 'ptr', 'srv', 'txt', 'caa']:
+ with self.command_group('network dns record-set {}'.format(record), network_dns_record_set_sdk) as g:
+ g.command('show', 'get', transform=transform_dns_record_set_output, exception_handler=empty_on_404)
+ g.command('delete', 'delete', confirmation=True)
+ g.custom_command('list', 'list_dns_record_set', client_factory=cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output, table_transformer=transform_dns_record_set_table_output)
+ g.custom_command('create', 'create_dns_record_set', transform=transform_dns_record_set_output, doc_string_source='azure.mgmt.dns.operations#RecordSetsOperations.create_or_update')
+ g.custom_command('add-record', 'add_dns_{}_record'.format(record), transform=transform_dns_record_set_output)
+ g.custom_command('remove-record', 'remove_dns_{}_record'.format(record), transform=transform_dns_record_set_output)
+ g.generic_update_command('update', custom_func_name='update_dns_record_set', transform=transform_dns_record_set_output)
+
+ with self.command_group('network dns record-set soa', network_dns_record_set_sdk) as g:
+ g.command('show', 'get', transform=transform_dns_record_set_output, exception_handler=empty_on_404)
+ g.custom_command('update', 'update_dns_soa_record', transform=transform_dns_record_set_output)
+
+ with self.command_group('network dns record-set cname', network_dns_record_set_sdk) as g:
+ g.command('show', 'get', transform=transform_dns_record_set_output, exception_handler=empty_on_404)
+ g.command('delete', 'delete')
+ g.custom_command('list', 'list_dns_record_set', client_factory=cf_dns_mgmt_record_sets, transform=transform_dns_record_set_output, table_transformer=transform_dns_record_set_table_output)
+ g.custom_command('create', 'create_dns_record_set', transform=transform_dns_record_set_output, doc_string_source='azure.mgmt.dns.operations#RecordSetsOperations.create_or_update')
+ g.custom_command('set-record', 'add_dns_cname_record', transform=transform_dns_record_set_output)
+ g.custom_command('remove-record', 'remove_dns_cname_record', transform=transform_dns_record_set_output)
+
+ # endregion
+
+ # region ExpressRoutes
+ with self.command_group('network express-route', network_er_sdk) as g:
+ g.command('delete', 'delete', no_wait_param='raw')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('get-stats', 'get_stats')
+ g.command('list-arp-tables', 'list_arp_table')
+ g.command('list-route-tables', 'list_routes_table')
+ g.custom_command('create', 'create_express_route', no_wait_param='no_wait')
+ g.custom_command('list', 'list_express_route_circuits')
+ g.command('list-service-providers', 'list', command_type=network_ersp_sdk)
+ g.generic_update_command('update', custom_func_name='update_express_route', no_wait_param='raw')
+ g.generic_wait_command('wait')
+
+ with self.command_group('network express-route auth', network_erca_sdk) as g:
+ g.command('create', 'create_or_update', validator=process_auth_create_namespace)
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list', 'list')
+
+ with self.command_group('network express-route peering', network_er_peering_sdk) as g:
+ g.custom_command('create', 'create_express_route_peering', client_factory=cf_express_route_circuit_peerings)
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list', 'list')
+ g.generic_update_command('update', setter_arg_name='peering_parameters', custom_func_name='update_express_route_peering')
+
+ # endregion
+
+ # region LoadBalancers
+ with self.command_group('network lb', network_lb_sdk) as g:
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('create', 'create_load_balancer', transform=DeploymentOutputLongRunningOperation(self.cli_ctx), no_wait_param='no_wait', table_transformer=deployment_validate_table_format, validator=process_lb_create_namespace)
+ g.command('delete', 'delete')
+ g.custom_command('list', 'list_lbs')
+ g.generic_update_command('update')
+
+ property_map = {
+ 'frontend_ip_configurations': 'frontend-ip',
+ 'inbound_nat_rules': 'inbound-nat-rule',
+ 'inbound_nat_pools': 'inbound-nat-pool',
+ 'backend_address_pools': 'address-pool',
+ 'load_balancing_rules': 'rule',
+ 'probes': 'probe'
+ }
+ for subresource, alias in property_map.items():
+ with self.command_group('network lb {}'.format(alias), network_util) as g:
+ g.command('list', list_network_resource_property('load_balancers', subresource))
+ g.command('show', get_network_resource_property_entry('load_balancers', subresource), exception_handler=empty_on_404)
+ g.command('delete', delete_network_resource_property_entry('load_balancers', subresource))
+
+ with self.command_group('network lb frontend-ip', network_lb_sdk) as g:
+ g.custom_command('create', 'create_lb_frontend_ip_configuration', validator=process_lb_frontend_ip_namespace)
+ g.generic_update_command('update', child_collection_prop_name='frontend_ip_configurations',
+ custom_func_name='set_lb_frontend_ip_configuration',
+ validator=process_lb_frontend_ip_namespace)
+
+ with self.command_group('network lb inbound-nat-rule', network_lb_sdk) as g:
+ g.custom_command('create', 'create_lb_inbound_nat_rule')
+ g.generic_update_command('update', child_collection_prop_name='inbound_nat_rules',
+ custom_func_name='set_lb_inbound_nat_rule')
+
+ with self.command_group('network lb inbound-nat-pool', network_lb_sdk) as g:
+ g.custom_command('create', 'create_lb_inbound_nat_pool')
+ g.generic_update_command('update', child_collection_prop_name='inbound_nat_pools',
+ custom_func_name='set_lb_inbound_nat_pool')
+
+ with self.command_group('network lb address-pool', network_lb_sdk) as g:
+ g.custom_command('create', 'create_lb_backend_address_pool')
+
+ with self.command_group('network lb rule', network_lb_sdk) as g:
+ g.custom_command('create', 'create_lb_rule')
+ g.generic_update_command('update', child_collection_prop_name='load_balancing_rules',
+ custom_func_name='set_lb_rule')
+
+ with self.command_group('network lb probe', network_lb_sdk) as g:
+ g.custom_command('create', 'create_lb_probe')
+ g.generic_update_command('update', child_collection_prop_name='probes',
+ custom_func_name='set_lb_probe')
+
+ # endregion
+
+ # region LocalGateways
+ with self.command_group('network local-gateway', network_lgw_sdk) as g:
+ g.command('delete', 'delete', no_wait_param='raw')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list', 'list', table_transformer=transform_local_gateway_table_output)
+ g.custom_command('create', 'create_local_gateway', no_wait_param='no_wait', validator=process_local_gateway_create_namespace)
+ g.generic_update_command('update', custom_func_name='update_local_gateway', no_wait_param='raw')
+ g.generic_wait_command('wait')
+
+ # endregion
+
+ # region NetworkInterfaces: (NIC)
+
+ with self.command_group('network nic', network_nic_sdk) as g:
+ g.custom_command('create', 'create_nic', transform=transform_nic_create_output, validator=process_nic_create_namespace)
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_nics')
+ g.command('show-effective-route-table', 'get_effective_route_table', min_api='2016-09-01')
+ g.command('list-effective-nsg', 'list_effective_network_security_groups', min_api='2016-09-01')
+ g.generic_update_command('update', custom_func_name='update_nic')
+
+ resource = 'network_interfaces'
+ subresource = 'ip_configurations'
+ with self.command_group('network nic ip-config', network_nic_sdk) as g:
+ g.custom_command('create', 'create_nic_ip_config')
+ g.generic_update_command('update',
+ child_collection_prop_name='ip_configurations', child_arg_name='ip_config_name',
+ custom_func_name='set_nic_ip_config')
+ g.command('list', list_network_resource_property(resource, subresource), command_type=network_util)
+ g.command('show', get_network_resource_property_entry(resource, subresource), command_type=network_util, exception_handler=empty_on_404)
+ g.command('delete', delete_network_resource_property_entry(resource, subresource), command_type=network_util)
+
+ with self.command_group('network nic ip-config address-pool') as g:
+ g.custom_command('add', 'add_nic_ip_config_address_pool')
+ g.custom_command('remove', 'remove_nic_ip_config_address_pool')
+
+ with self.command_group('network nic ip-config inbound-nat-rule') as g:
+ g.custom_command('add', 'add_nic_ip_config_inbound_nat_rule')
+ g.custom_command('remove', 'remove_nic_ip_config_inbound_nat_rule')
+
+ # endregion
+
+ # region NetworkSecurityGroups
+ with self.command_group('network nsg', network_nsg_sdk) as g:
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_nsgs')
+ g.custom_command('create', 'create_nsg', transform=transform_nsg_create_output)
+ g.generic_update_command('update')
+
+ with self.command_group('network nsg rule', network_nsg_rule_sdk) as g:
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list', 'list')
+ g.custom_command('create', 'create_nsg_rule_2017_06_01', min_api='2017-06-01')
+ g.generic_update_command('update', setter_arg_name='security_rule_parameters', min_api='2017-06-01',
+ custom_func_name='update_nsg_rule_2017_06_01', doc_string_source='SecurityRule')
+ g.custom_command('create', 'create_nsg_rule_2017_03_01', max_api='2017-03-01')
+ g.generic_update_command('update', max_api='2017-03-01', setter_arg_name='security_rule_parameters',
+ custom_func_name='update_nsg_rule_2017_03_01', doc_string_source='SecurityRule')
+ # endregion
+
+ # region NetworkWatchers
+ with self.command_group('network watcher', network_watcher_sdk) as g:
+ g.custom_command('configure', 'configure_network_watcher')
+ g.command('list', 'list_all')
+
+ g.custom_command('test-ip-flow', 'check_nw_ip_flow', client_factory=cf_network_watcher)
+ g.custom_command('test-connectivity', 'check_nw_connectivity', client_factory=cf_network_watcher, validator=process_nw_test_connectivity_namespace)
+ g.custom_command('show-next-hop', 'show_nw_next_hop', client_factory=cf_network_watcher)
+ g.custom_command('show-security-group-view', 'show_nw_security_view', client_factory=cf_network_watcher)
+ g.command('show-topology', 'get_topology', validator=process_nw_topology_namespace)
+
+ with self.command_group('network watcher packet-capture', network_watcher_pc_sdk) as g:
+ g.custom_command('create', 'create_nw_packet_capture', client_factory=cf_packet_capture, validator=process_nw_packet_capture_create_namespace)
+ g.command('show', 'get')
+ g.command('show-status', 'get_status')
+ g.command('delete', 'delete')
+ g.command('stop', 'stop')
+ g.command('list', 'list')
+
+ with self.command_group('network watcher flow-log', client_factory=cf_network_watcher) as g:
+ g.custom_command('configure', 'set_nsg_flow_logging', validator=process_nw_flow_log_set_namespace)
+ g.custom_command('show', 'show_nsg_flow_logging', validator=process_nw_flow_log_show_namespace)
+
+ with self.command_group('network watcher troubleshooting', client_factory=cf_network_watcher) as g:
+ g.custom_command('start', 'start_nw_troubleshooting', no_wait_param='no_wait', validator=process_nw_troubleshooting_start_namespace)
+ g.custom_command('show', 'show_nw_troubleshooting_result', validator=process_nw_troubleshooting_show_namespace)
+
+ # endregion
+
+ # region PublicIPAddresses
+
+ public_ip_show_table_transform = '{Name:name, ResourceGroup:resourceGroup, Location:location, $zone$AddressVersion:publicIpAddressVersion, AllocationMethod:publicIpAllocationMethod, IdleTimeoutInMinutes:idleTimeoutInMinutes, ProvisioningState:provisioningState}'
+ public_ip_show_table_transform = public_ip_show_table_transform.replace('$zone$', 'Zones: (!zones && \' \') || join(` `, zones), ' if self.supported_api_version(min_api='2017-06-01') else ' ')
+
+ with self.command_group('network public-ip', network_public_ip_sdk) as g:
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404, table_transformer=public_ip_show_table_transform)
+ g.custom_command('list', 'list_public_ips', table_transformer='[].' + public_ip_show_table_transform)
+ g.custom_command('create', 'create_public_ip', transform=transform_public_ip_create_output, validator=process_public_ip_create_namespace)
+ g.generic_update_command('update', custom_func_name='update_public_ip')
+
+ # endregion
+
+ # region RouteFilters
+ with self.command_group('network route-filter', network_rf_sdk) as g:
+ g.custom_command('create', 'create_route_filter', client_factory=cf_route_filters)
+ g.custom_command('list', 'list_route_filters', client_factory=cf_route_filters)
+ g.command('show', 'get')
+ g.command('delete', 'delete')
+ g.generic_update_command('update', setter_arg_name='route_filter_parameters')
+
+ with self.command_group('network route-filter rule', network_rfr_sdk) as g:
+ g.custom_command('create', 'create_route_filter_rule', client_factory=cf_route_filter_rules)
+ g.command('list', 'list_by_route_filter')
+ g.command('show', 'get')
+ g.command('delete', 'delete')
+ g.generic_update_command('update', setter_arg_name='route_filter_rule_parameters')
+ sc_path = 'azure.mgmt.network.operations#BgpServiceCommunitiesOperations.{}'
+ g.command('list-service-communities', 'list', operations_tmpl=sc_path, client_factory=cf_service_community, table_transformer=transform_service_community_table_output)
+
+ # endregion
+
+ # region RouteTables
+ with self.command_group('network route-table', network_rt_sdk) as g:
+ g.command('create', 'create_or_update', validator=process_route_table_create_namespace)
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_route_tables')
+ g.generic_update_command('update', custom_func_name='update_route_table')
+
+ network_rtr_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.routes_operations#RoutesOperations.{}',
+ client_factory=cf_routes
+ )
+ with self.command_group('network route-table route', network_rtr_sdk) as g:
+ g.custom_command('create', 'create_route')
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list', 'list')
+ g.generic_update_command('update', setter_arg_name='route_parameters', custom_func_name='update_route')
+
+ # endregion
+
+ # region TrafficManagers
+ with self.command_group('network traffic-manager profile', network_tmp_sdk) as g:
+ g.command('check-dns', 'check_traffic_manager_relative_dns_name_availability')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('delete', 'delete')
+ g.custom_command('list', 'list_traffic_manager_profiles')
+ g.custom_command('create', 'create_traffic_manager_profile', transform=transform_traffic_manager_create_output)
+ g.generic_update_command('update', custom_func_name='update_traffic_manager_profile')
+
+ with self.command_group('network traffic-manager endpoint', network_tme_sdk) as g:
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('delete', 'delete')
+ g.custom_command('create', 'create_traffic_manager_endpoint', validator=process_tm_endpoint_create_namespace)
+ g.custom_command('list', 'list_traffic_manager_endpoints')
+ g.generic_update_command('update', custom_func_name='update_traffic_manager_endpoint')
+
+ tm_geographic_path = 'azure.mgmt.trafficmanager.operations.geographic_hierarchies_operations#GeographicHierarchiesOperations.{}'
+ g.command('show-geographic-hierarchy', 'get_default', client_factory=cf_tm_geographic, operations_tmpl=tm_geographic_path, table_transformer=transform_geographic_hierachy_table_output)
+
+ # endregion
+
+ # region VirtualNetworks
+ with self.command_group('network vnet', network_vnet_sdk) as g:
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_vnet')
+ g.command('check-ip-address', 'check_ip_address_availability', min_api='2016-09-01')
+ g.custom_command('create', 'create_vnet', transform=transform_vnet_create_output, validator=process_vnet_create_namespace)
+ g.generic_update_command('update', custom_func_name='update_vnet')
+ g.command('list-endpoint-services', 'list', command_type=network_endpoint_service_sdk)
+
+ with self.command_group('network vnet peering', network_vnet_peering_sdk, min_api='2016-09-01') as g:
+ g.custom_command('create', 'create_vnet_peering')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list', 'list')
+ g.command('delete', 'delete')
+ g.generic_update_command('update', setter_arg_name='virtual_network_peering_parameters')
+
+ with self.command_group('network vnet subnet', network_subnet_sdk) as g:
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list', 'list')
+ g.custom_command('create', 'create_subnet')
+ g.generic_update_command('update', setter_arg_name='subnet_parameters',
+ custom_func_name='update_subnet')
+
+ # endregion
+
+ # region VirtualNetworkGateways
+
+ with self.command_group('network vnet-gateway', network_vgw_sdk, min_api='2016-09-01') as g:
+ g.custom_command('create', 'create_vnet_gateway', no_wait_param='no_wait', transform=transform_vnet_gateway_create_output, validator=process_vnet_gateway_create_namespace)
+ g.generic_update_command('update', custom_func_name='update_vnet_gateway', no_wait_param='raw', validator=process_vnet_gateway_update_namespace)
+ g.generic_wait_command('wait')
+ g.command('delete', 'delete', no_wait_param='raw')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list', 'list')
+ g.command('reset', 'reset')
+ g.command('list-bgp-peer-status', 'get_bgp_peer_status')
+ g.command('list-advertised-routes', 'get_advertised_routes')
+ g.command('list-learned-routes', 'get_learned_routes')
+
+ with self.command_group('network vnet-gateway vpn-client', network_vgw_sdk) as g:
+ g.custom_command('generate', 'generate_vpn_client')
+ g.command('show-url', 'get_vpn_profile_package_url', min_api='2017-08-01')
+
+ # endregion
+
+ # region VirtualNetworkGatewayConnections
+ with self.command_group('network vpn-connection', network_vpn_sdk) as g:
+ g.custom_command('create', 'create_vpn_connection', transform=DeploymentOutputLongRunningOperation(self.cli_ctx), table_transformer=deployment_validate_table_format, validator=process_vpn_connection_create_namespace)
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404, transform=transform_vpn_connection)
+ g.command('list', 'list', transform=transform_vpn_connection_list)
+ g.generic_update_command('update', custom_func_name='update_vpn_connection')
+
+ with self.command_group('network vpn-connection shared-key', network_vpn_sdk) as g:
+ g.command('show', 'get_shared_key', exception_handler=empty_on_404)
+ g.command('reset', 'reset_shared_key')
+ g.generic_update_command('update', setter_name='set_shared_key')
+
+ with self.command_group('network vpn-connection ipsec-policy', network_vpn_sdk, min_api='2017-03-01') as g:
+ g.custom_command('add', 'add_vpn_conn_ipsec_policy', no_wait_param='no_wait', doc_string_source='IpsecPolicy')
+ g.custom_command('list', 'list_vpn_conn_ipsec_policies')
+ g.custom_command('clear', 'clear_vpn_conn_ipsec_policies', no_wait_param='no_wait')
+
+ # endregion
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/custom.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/custom.py
index df1b9ec39ff..818b42ba748 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/custom.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/custom.py
@@ -10,52 +10,30 @@
from msrestazure.azure_exceptions import CloudError
from msrestazure.tools import parse_resource_id, is_valid_resource_id, resource_id
+from azure.mgmt.trafficmanager.models import MonitorProtocol
+
# pylint: disable=no-self-use,no-member,too-many-lines,unused-argument
-import azure.cli.core.azlogging as azlogging
from azure.cli.core.commands.client_factory import get_subscription_id, get_mgmt_service_client
from azure.cli.core.commands.validators import DefaultStr, DefaultInt
from azure.cli.core.util import CLIError
-from azure.cli.command_modules.network._client_factory import _network_client_factory
+from azure.cli.command_modules.network._client_factory import network_client_factory
from azure.cli.command_modules.network._util import _get_property, _set_param
from azure.mgmt.dns import DnsManagementClient
-from azure.mgmt.dns.operations import RecordSetsOperations
from azure.mgmt.dns.models import (RecordSet, AaaaRecord, ARecord, CaaRecord, CnameRecord, MxRecord,
NsRecord, PtrRecord, SoaRecord, SrvRecord, TxtRecord, Zone)
from azure.cli.command_modules.network.zone_file.parse_zone_file import parse_zone_file
from azure.cli.command_modules.network.zone_file.make_zone_file import make_zone_file
-from azure.cli.core.profiles import get_sdk, supported_api_version, ResourceType
+from azure.cli.core.profiles import ResourceType
-from azure.mgmt.trafficmanager.models import MonitorProtocol
+from knack.log import get_logger
-logger = azlogging.get_az_logger(__name__)
-
-AddressSpace, ApplicationGatewayFirewallMode, ApplicationGatewaySkuName, ApplicationGatewaySslPolicy, \
- ApplicationGatewaySslPolicyType, \
- BackendAddressPool, DhcpOptions, ExpressRouteCircuitSkuFamily, ExpressRouteCircuitSkuTier, \
- FrontendIPConfiguration, InboundNatPool, InboundNatRule, IPAllocationMethod, IPVersion, \
- LoadBalancingRule, NetworkInterfaceIPConfiguration, NetworkSecurityGroup, Probe, PublicIPAddress, \
- PublicIPAddressDnsSettings, ApplicationGatewayRedirectConfiguration, Route, SecurityRule, \
- SecurityRuleAccess, \
- SecurityRuleDirection, SecurityRuleProtocol, Subnet, SubResource, VirtualNetwork, \
- VirtualNetworkGatewaySkuName, VirtualNetworkGatewayType, VirtualNetworkPeering, VpnClientConfiguration, \
- VpnClientRevokedCertificate, VpnClientRootCertificate, VpnType = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'AddressSpace', 'ApplicationGatewayFirewallMode', 'ApplicationGatewaySkuName', 'ApplicationGatewaySslPolicy',
- 'ApplicationGatewaySslPolicyType',
- 'BackendAddressPool', 'DhcpOptions', 'ExpressRouteCircuitSkuFamily', 'ExpressRouteCircuitSkuTier',
- 'FrontendIPConfiguration', 'InboundNatPool', 'InboundNatRule', 'IPAllocationMethod', 'IPVersion',
- 'LoadBalancingRule', 'NetworkInterfaceIPConfiguration', 'NetworkSecurityGroup', 'Probe', 'PublicIPAddress',
- 'PublicIPAddressDnsSettings', 'ApplicationGatewayRedirectConfiguration', 'Route', 'SecurityRule',
- 'SecurityRuleAccess',
- 'SecurityRuleDirection', 'SecurityRuleProtocol', 'Subnet', 'SubResource', 'VirtualNetwork',
- 'VirtualNetworkGatewaySkuName', 'VirtualNetworkGatewayType', 'VirtualNetworkPeering', 'VpnClientConfiguration',
- 'VpnClientRevokedCertificate', 'VpnClientRootCertificate', 'VpnType',
- mod='models')
+logger = get_logger(__name__)
+# region Utility methods
def _log_pprint_template(template):
import json
logger.info('==== BEGIN TEMPLATE ====')
@@ -98,10 +76,12 @@ def _get_default_value(balancer, property_name, option_name, return_name):
"again.".format(option_name))
return values[0].rsplit('/', 1)[1] if return_name else values[0]
+# endregion
+
# region Generic list commands
-def _generic_list(operation_name, resource_group_name):
- ncf = _network_client_factory()
+def _generic_list(cli_ctx, operation_name, resource_group_name):
+ ncf = network_client_factory(cli_ctx)
operation_group = getattr(ncf, operation_name)
if resource_group_name:
return operation_group.list(resource_group_name)
@@ -109,56 +89,55 @@ def _generic_list(operation_name, resource_group_name):
return operation_group.list_all()
-def list_vnet(resource_group_name=None):
- return _generic_list('virtual_networks', resource_group_name)
-
+def list_vnet(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'virtual_networks', resource_group_name)
-def list_express_route_circuits(resource_group_name=None):
- return _generic_list('express_route_circuits', resource_group_name)
+def list_express_route_circuits(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'express_route_circuits', resource_group_name)
-def list_lbs(resource_group_name=None):
- return _generic_list('load_balancers', resource_group_name)
+def list_lbs(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'load_balancers', resource_group_name)
-def list_nics(resource_group_name=None):
- return _generic_list('network_interfaces', resource_group_name)
+def list_nics(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'network_interfaces', resource_group_name)
-def list_nsgs(resource_group_name=None):
- return _generic_list('network_security_groups', resource_group_name)
+def list_nsgs(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'network_security_groups', resource_group_name)
-def list_public_ips(resource_group_name=None):
- return _generic_list('public_ip_addresses', resource_group_name)
+def list_public_ips(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'public_ip_addresses', resource_group_name)
-def list_route_tables(resource_group_name=None):
- return _generic_list('route_tables', resource_group_name)
+def list_route_tables(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'route_tables', resource_group_name)
-def list_application_gateways(resource_group_name=None):
- return _generic_list('application_gateways', resource_group_name)
+def list_application_gateways(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'application_gateways', resource_group_name)
-def list_network_watchers(resource_group_name=None):
- return _generic_list('network_watchers', resource_group_name)
+def list_network_watchers(cmd, resource_group_name=None):
+ return _generic_list(cmd.cli_ctx, 'network_watchers', resource_group_name)
# endregion
-# region Application Gateway commands
+# region ApplicationGateways
# pylint: disable=too-many-locals
-def create_application_gateway(application_gateway_name, resource_group_name, location=None,
+def create_application_gateway(cmd, application_gateway_name, resource_group_name, location=None,
tags=None, no_wait=False, capacity=2,
cert_data=None, cert_password=None,
frontend_port=None, http_settings_cookie_based_affinity='disabled',
http_settings_port=80, http_settings_protocol='Http',
routing_rule_type='Basic', servers=None,
- sku=ApplicationGatewaySkuName.standard_medium.value,
+ sku=None,
private_ip_address='', public_ip_address=None,
- public_ip_address_allocation=IPAllocationMethod.dynamic.value,
+ public_ip_address_allocation=None,
subnet='default', subnet_address_prefix=DefaultStr('10.0.0.0/24'),
virtual_network_name=None, vnet_address_prefix=DefaultStr('10.0.0.0/16'),
public_ip_address_type=None, subnet_type=None, validate=False,
@@ -168,9 +147,9 @@ def create_application_gateway(application_gateway_name, resource_group_name, lo
(ArmTemplateBuilder, build_application_gateway_resource, build_public_ip_resource,
build_vnet_resource)
- DeploymentProperties = get_sdk(ResourceType.MGMT_RESOURCE_RESOURCES,
- 'DeploymentProperties',
- mod='models')
+ DeploymentProperties = cmd.get_models('DeploymentProperties', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES)
+ IPAllocationMethod = cmd.get_models('IPAllocationMethod')
+
tags = tags or {}
sku_tier = sku.split('_', 1)[0]
http_listener_protocol = 'https' if cert_data else 'http'
@@ -187,13 +166,13 @@ def create_application_gateway(application_gateway_name, resource_group_name, lo
else IPAllocationMethod.dynamic.value
network_id_template = resource_id(
- subscription=get_subscription_id(), resource_group=resource_group_name,
+ subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name,
namespace='Microsoft.Network')
if subnet_type == 'new':
ag_dependencies.append('Microsoft.Network/virtualNetworks/{}'.format(virtual_network_name))
vnet = build_vnet_resource(
- virtual_network_name, location, tags, vnet_address_prefix, subnet,
+ cmd, virtual_network_name, location, tags, vnet_address_prefix, subnet,
subnet_address_prefix)
master_template.add_resource(vnet)
subnet_id = '{}/virtualNetworks/{}/subnets/{}'.format(network_id_template,
@@ -201,7 +180,7 @@ def create_application_gateway(application_gateway_name, resource_group_name, lo
if public_ip_address_type == 'new':
ag_dependencies.append('Microsoft.Network/publicIpAddresses/{}'.format(public_ip_address))
- master_template.add_resource(build_public_ip_resource(public_ip_address, location,
+ master_template.add_resource(build_public_ip_resource(cmd, public_ip_address, location,
tags,
public_ip_address_allocation,
None, None, None))
@@ -209,7 +188,7 @@ def create_application_gateway(application_gateway_name, resource_group_name, lo
public_ip_address)
app_gateway_resource = build_application_gateway_resource(
- application_gateway_name, location, tags, sku, sku_tier, capacity, servers, frontend_port,
+ cmd, application_gateway_name, location, tags, sku, sku_tier, capacity, servers, frontend_port,
private_ip_address, private_ip_allocation, cert_data, cert_password,
http_settings_cookie_based_affinity, http_settings_protocol, http_settings_port,
http_listener_protocol, routing_rule_type, public_ip_id, subnet_id,
@@ -226,7 +205,7 @@ def create_application_gateway(application_gateway_name, resource_group_name, lo
# deploy ARM template
deployment_name = 'ag_deploy_' + random_string(32)
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).deployments
+ client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).deployments
properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
if validate:
_log_pprint_template(template)
@@ -246,12 +225,10 @@ def update_application_gateway(instance, sku=None, capacity=None, tags=None):
return instance
-def create_ag_authentication_certificate(resource_group_name, application_gateway_name, item_name,
+def create_ag_authentication_certificate(cmd, resource_group_name, application_gateway_name, item_name,
cert_data, no_wait=False):
- AuthCert = get_sdk(ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayAuthenticationCertificate',
- mod='models')
- ncf = _network_client_factory().application_gateways
+ AuthCert = cmd.get_models('ApplicationGatewayAuthenticationCertificate')
+ ncf = network_client_factory(cmd.cli_ctx).application_gateways
ag = ncf.get(resource_group_name, application_gateway_name)
new_cert = AuthCert(data=cert_data, name=item_name)
_upsert(ag, 'authentication_certificates', new_cert, 'name')
@@ -263,13 +240,10 @@ def update_ag_authentication_certificate(instance, parent, item_name, cert_data)
return parent
-def create_ag_backend_address_pool(resource_group_name, application_gateway_name, item_name,
+def create_ag_backend_address_pool(cmd, resource_group_name, application_gateway_name, item_name,
servers=None, no_wait=False):
- ApplicationGatewayBackendAddressPool = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayBackendAddressPool',
- mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayBackendAddressPool = cmd.get_models('ApplicationGatewayBackendAddressPool')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
new_pool = ApplicationGatewayBackendAddressPool(name=item_name, backend_addresses=servers)
_upsert(ag, 'backend_address_pools', new_pool, 'name')
@@ -283,15 +257,13 @@ def update_ag_backend_address_pool(instance, parent, item_name, servers=None):
return parent
-def create_ag_frontend_ip_configuration(resource_group_name, application_gateway_name, item_name,
+def create_ag_frontend_ip_configuration(cmd, resource_group_name, application_gateway_name, item_name,
public_ip_address=None, subnet=None,
virtual_network_name=None, private_ip_address=None,
private_ip_address_allocation=None, no_wait=False):
- ApplicationGatewayFrontendIPConfiguration = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayFrontendIPConfiguration',
- mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayFrontendIPConfiguration, SubResource = cmd.get_models(
+ 'ApplicationGatewayFrontendIPConfiguration', 'SubResource')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
if public_ip_address:
new_config = ApplicationGatewayFrontendIPConfiguration(
@@ -308,9 +280,10 @@ def create_ag_frontend_ip_configuration(resource_group_name, application_gateway
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def update_ag_frontend_ip_configuration(instance, parent, item_name, public_ip_address=None,
+def update_ag_frontend_ip_configuration(cmd, instance, parent, item_name, public_ip_address=None,
subnet=None, virtual_network_name=None,
private_ip_address=None):
+ SubResource = cmd.get_models('SubResource')
if public_ip_address is not None:
instance.public_ip_address = SubResource(public_ip_address)
if subnet is not None:
@@ -321,13 +294,10 @@ def update_ag_frontend_ip_configuration(instance, parent, item_name, public_ip_a
return parent
-def create_ag_frontend_port(resource_group_name, application_gateway_name, item_name, port,
+def create_ag_frontend_port(cmd, resource_group_name, application_gateway_name, item_name, port,
no_wait=False):
- ApplicationGatewayFrontendPort = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayFrontendPort',
- mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayFrontendPort = cmd.get_models('ApplicationGatewayFrontendPort')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
new_port = ApplicationGatewayFrontendPort(name=item_name, port=port)
_upsert(ag, 'frontend_ports', new_port, 'name')
@@ -341,14 +311,11 @@ def update_ag_frontend_port(instance, parent, item_name, port=None):
return parent
-def create_ag_http_listener(resource_group_name, application_gateway_name, item_name,
+def create_ag_http_listener(cmd, resource_group_name, application_gateway_name, item_name,
frontend_port, frontend_ip=None, host_name=None, ssl_cert=None,
no_wait=False):
- ApplicationGatewayHttpListener = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayHttpListener',
- mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayHttpListener, SubResource = cmd.get_models('ApplicationGatewayHttpListener', 'SubResource')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
if not frontend_ip:
frontend_ip = _get_default_id(ag, 'frontend_ip_configurations', '--frontend-ip')
@@ -365,8 +332,9 @@ def create_ag_http_listener(resource_group_name, application_gateway_name, item_
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def update_ag_http_listener(instance, parent, item_name, frontend_ip=None, frontend_port=None,
+def update_ag_http_listener(cmd, instance, parent, item_name, frontend_ip=None, frontend_port=None,
host_name=None, ssl_cert=None):
+ SubResource = cmd.get_models('SubResource')
if frontend_ip is not None:
instance.frontend_ip_configuration = SubResource(frontend_ip)
if frontend_port is not None:
@@ -384,16 +352,14 @@ def update_ag_http_listener(instance, parent, item_name, frontend_ip=None, front
return parent
-def create_ag_backend_http_settings_collection(resource_group_name, application_gateway_name, item_name, port,
+def create_ag_backend_http_settings_collection(cmd, resource_group_name, application_gateway_name, item_name, port,
probe=None, protocol='http', cookie_based_affinity=None, timeout=None,
no_wait=False, connection_draining_timeout=0,
host_name=None, host_name_from_backend_pool=None,
affinity_cookie_name=None, enable_probe=None, path=None):
- ApplicationGatewayBackendHttpSettings = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayBackendHttpSettings',
- mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayBackendHttpSettings, ApplicationGatewayConnectionDraining, SubResource = cmd.get_models(
+ 'ApplicationGatewayBackendHttpSettings', 'ApplicationGatewayConnectionDraining', 'SubResource')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
new_settings = ApplicationGatewayBackendHttpSettings(
port=port,
@@ -402,13 +368,11 @@ def create_ag_backend_http_settings_collection(resource_group_name, application_
request_timeout=timeout,
probe=SubResource(probe) if probe else None,
name=item_name)
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-12-01'):
- ApplicationGatewayConnectionDraining = \
- get_sdk(ResourceType.MGMT_NETWORK, 'ApplicationGatewayConnectionDraining', mod='models')
+ if cmd.supported_api_version(min_api='2016-12-01'):
new_settings.connection_draining = \
ApplicationGatewayConnectionDraining(
bool(connection_draining_timeout), connection_draining_timeout or 1)
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
+ if cmd.supported_api_version(min_api='2017-06-01'):
new_settings.host_name = host_name
new_settings.pick_host_name_from_backend_address = host_name_from_backend_pool
new_settings.affinity_cookie_name = affinity_cookie_name
@@ -419,11 +383,12 @@ def create_ag_backend_http_settings_collection(resource_group_name, application_
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def update_ag_backend_http_settings_collection(instance, parent, item_name, port=None, probe=None, protocol=None,
+def update_ag_backend_http_settings_collection(cmd, instance, parent, item_name, port=None, probe=None, protocol=None,
cookie_based_affinity=None, timeout=None,
connection_draining_timeout=None,
host_name=None, host_name_from_backend_pool=None,
affinity_cookie_name=None, enable_probe=None, path=None):
+ SubResource = cmd.get_models('SubResource')
if port is not None:
instance.port = port
if probe is not None:
@@ -450,10 +415,12 @@ def update_ag_backend_http_settings_collection(instance, parent, item_name, port
return parent
-def create_ag_redirect_configuration(resource_group_name, application_gateway_name, item_name, redirect_type,
+def create_ag_redirect_configuration(cmd, resource_group_name, application_gateway_name, item_name, redirect_type,
target_listener=None, target_url=None, include_path=None,
include_query_string=None, no_wait=False):
- ncf = _network_client_factory().application_gateways
+ ApplicationGatewayRedirectConfiguration, SubResource = cmd.get_models(
+ 'ApplicationGatewayRedirectConfiguration', 'SubResource')
+ ncf = network_client_factory(cmd.cli_ctx).application_gateways
ag = ncf.get(resource_group_name, application_gateway_name)
new_config = ApplicationGatewayRedirectConfiguration(
name=item_name,
@@ -467,9 +434,10 @@ def create_ag_redirect_configuration(resource_group_name, application_gateway_na
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def update_ag_redirect_configuration(instance, parent, item_name, redirect_type=None,
+def update_ag_redirect_configuration(cmd, instance, parent, item_name, redirect_type=None,
target_listener=None, target_url=None, include_path=None,
include_query_string=None, raw=False):
+ SubResource = cmd.get_models('SubResource')
if redirect_type:
instance.redirect_type = redirect_type
if target_listener:
@@ -485,19 +453,12 @@ def update_ag_redirect_configuration(instance, parent, item_name, redirect_type=
return parent
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- create_ag_redirect_configuration.__doc__ = ApplicationGatewayRedirectConfiguration.__doc__
- update_ag_redirect_configuration.__doc__ = ApplicationGatewayRedirectConfiguration.__doc__
-
-
-def create_ag_probe(resource_group_name, application_gateway_name, item_name, protocol, host,
+def create_ag_probe(cmd, resource_group_name, application_gateway_name, item_name, protocol, host,
path, interval=30, timeout=120, threshold=8, no_wait=False, host_name_from_http_settings=None,
min_servers=None, match_body=None, match_status_codes=None):
- ApplicationGatewayProbe = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayProbe',
- mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayProbe, ProbeMatchCriteria = cmd.get_models(
+ 'ApplicationGatewayProbe', 'ApplicationGatewayProbeHealthResponseMatch')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
new_probe = ApplicationGatewayProbe(
name=item_name,
@@ -507,9 +468,7 @@ def create_ag_probe(resource_group_name, application_gateway_name, item_name, pr
interval=interval,
timeout=timeout,
unhealthy_threshold=threshold)
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- ProbeMatchCriteria = \
- get_sdk(ResourceType.MGMT_NETWORK, 'ApplicationGatewayProbeHealthResponseMatch', mod='models')
+ if cmd.supported_api_version(min_api='2017-06-01'):
new_probe.pick_host_name_from_backend_http_settings = host_name_from_http_settings
new_probe.min_servers = min_servers
new_probe.match = ProbeMatchCriteria(body=match_body, status_codes=match_status_codes)
@@ -519,7 +478,7 @@ def create_ag_probe(resource_group_name, application_gateway_name, item_name, pr
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def update_ag_probe(instance, parent, item_name, protocol=None, host=None, path=None,
+def update_ag_probe(cmd, instance, parent, item_name, protocol=None, host=None, path=None,
interval=None, timeout=None, threshold=None, host_name_from_http_settings=None,
min_servers=None, match_body=None, match_status_codes=None):
if protocol is not None:
@@ -540,7 +499,7 @@ def update_ag_probe(instance, parent, item_name, protocol=None, host=None, path=
instance.min_servers = min_servers
if match_body is not None or match_status_codes is not None:
ProbeMatchCriteria = \
- get_sdk(ResourceType.MGMT_NETWORK, 'ApplicationGatewayProbeHealthResponseMatch', mod='models')
+ cmd.get_models('ApplicationGatewayProbeHealthResponseMatch')
instance.match = instance.match or ProbeMatchCriteria()
if match_body is not None:
instance.match.body = match_body
@@ -549,14 +508,12 @@ def update_ag_probe(instance, parent, item_name, protocol=None, host=None, path=
return parent
-def create_ag_request_routing_rule(resource_group_name, application_gateway_name, item_name,
+def create_ag_request_routing_rule(cmd, resource_group_name, application_gateway_name, item_name,
address_pool=None, http_settings=None, http_listener=None, redirect_config=None,
url_path_map=None, rule_type='Basic', no_wait=False):
- ApplicationGatewayRequestRoutingRule = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayRequestRoutingRule',
- mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayRequestRoutingRule, SubResource = cmd.get_models(
+ 'ApplicationGatewayRequestRoutingRule', 'SubResource')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
if not address_pool and not redirect_config:
address_pool = _get_default_id(ag, 'backend_address_pools', '--address-pool')
@@ -571,16 +528,17 @@ def create_ag_request_routing_rule(resource_group_name, application_gateway_name
backend_http_settings=SubResource(http_settings) if http_settings else None,
http_listener=SubResource(http_listener),
url_path_map=SubResource(url_path_map) if url_path_map else None)
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
+ if cmd.supported_api_version(min_api='2017-06-01'):
new_rule.redirect_configuration = SubResource(redirect_config) if redirect_config else None
_upsert(ag, 'request_routing_rules', new_rule, 'name')
return ncf.application_gateways.create_or_update(
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def update_ag_request_routing_rule(instance, parent, item_name, address_pool=None,
+def update_ag_request_routing_rule(cmd, instance, parent, item_name, address_pool=None,
http_settings=None, http_listener=None, redirect_config=None, url_path_map=None,
rule_type=None):
+ SubResource = cmd.get_models('SubResource')
if address_pool is not None:
instance.backend_address_pool = SubResource(address_pool)
if http_settings is not None:
@@ -596,13 +554,10 @@ def update_ag_request_routing_rule(instance, parent, item_name, address_pool=Non
return parent
-def create_ag_ssl_certificate(resource_group_name, application_gateway_name, item_name, cert_data,
+def create_ag_ssl_certificate(cmd, resource_group_name, application_gateway_name, item_name, cert_data,
cert_password, no_wait=False):
- ApplicationGatewaySslCertificate = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewaySslCertificate',
- mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewaySslCertificate = cmd.get_models('ApplicationGatewaySslCertificate')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
new_cert = ApplicationGatewaySslCertificate(
name=item_name, data=cert_data, password=cert_password)
@@ -619,22 +574,22 @@ def update_ag_ssl_certificate(instance, parent, item_name, cert_data=None, cert_
return parent
-def set_ag_ssl_policy_2017_03_01(resource_group_name, application_gateway_name, disabled_ssl_protocols=None,
+def set_ag_ssl_policy_2017_03_01(cmd, resource_group_name, application_gateway_name, disabled_ssl_protocols=None,
clear=False, no_wait=False):
- ncf = _network_client_factory().application_gateways
+ ApplicationGatewaySslPolicy = cmd.get_models('ApplicationGatewaySslPolicy')
+ ncf = network_client_factory(cmd.cli_ctx).application_gateways
ag = ncf.get(resource_group_name, application_gateway_name)
ag.ssl_policy = None if clear else ApplicationGatewaySslPolicy(
disabled_ssl_protocols=disabled_ssl_protocols)
return ncf.create_or_update(resource_group_name, application_gateway_name, ag, raw=no_wait)
-set_ag_ssl_policy_2017_03_01.__doc__ = ApplicationGatewaySslPolicy.__doc__
-
-
-def set_ag_ssl_policy_2017_06_01(resource_group_name, application_gateway_name, policy_name=None, policy_type=None,
+def set_ag_ssl_policy_2017_06_01(cmd, resource_group_name, application_gateway_name, policy_name=None, policy_type=None,
disabled_ssl_protocols=None, cipher_suites=None, min_protocol_version=None,
no_wait=False):
- ncf = _network_client_factory().application_gateways
+ ApplicationGatewaySslPolicy, ApplicationGatewaySslPolicyType = cmd.get_models(
+ 'ApplicationGatewaySslPolicy', 'ApplicationGatewaySslPolicyType')
+ ncf = network_client_factory(cmd.cli_ctx).application_gateways
ag = ncf.get(resource_group_name, application_gateway_name)
policy_type = None
if policy_name:
@@ -650,22 +605,18 @@ def set_ag_ssl_policy_2017_06_01(resource_group_name, application_gateway_name,
return ncf.create_or_update(resource_group_name, application_gateway_name, ag, raw=no_wait)
-set_ag_ssl_policy_2017_06_01.__doc__ = ApplicationGatewaySslPolicy.__doc__
-
-
-def show_ag_ssl_policy(resource_group_name, application_gateway_name):
- return _network_client_factory().application_gateways.get(
+def show_ag_ssl_policy(cmd, resource_group_name, application_gateway_name):
+ return network_client_factory(cmd.cli_ctx).application_gateways.get(
resource_group_name, application_gateway_name).ssl_policy
-def create_ag_url_path_map(resource_group_name, application_gateway_name, item_name, paths,
+def create_ag_url_path_map(cmd, resource_group_name, application_gateway_name, item_name, paths,
address_pool=None, http_settings=None, redirect_config=None,
default_address_pool=None, default_http_settings=None, default_redirect_config=None,
no_wait=False, rule_name='default'):
- ApplicationGatewayUrlPathMap, ApplicationGatewayPathRule = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayUrlPathMap', 'ApplicationGatewayPathRule', mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayUrlPathMap, ApplicationGatewayPathRule, SubResource = cmd.get_models(
+ 'ApplicationGatewayUrlPathMap', 'ApplicationGatewayPathRule', 'SubResource')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
new_rule = ApplicationGatewayPathRule(
@@ -679,7 +630,7 @@ def create_ag_url_path_map(resource_group_name, application_gateway_name, item_n
default_backend_address_pool=SubResource(default_address_pool) if default_address_pool else None,
default_backend_http_settings=SubResource(default_http_settings) if default_http_settings else None,
path_rules=[])
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
+ if cmd.supported_api_version(min_api='2017-06-01'):
new_rule.redirect_configuration = SubResource(redirect_config) if redirect_config else None
new_map.default_redirect_configuration = \
SubResource(default_redirect_config) if default_redirect_config else None
@@ -700,8 +651,9 @@ def create_ag_url_path_map(resource_group_name, application_gateway_name, item_n
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def update_ag_url_path_map(instance, parent, item_name, default_address_pool=None,
+def update_ag_url_path_map(cmd, instance, parent, item_name, default_address_pool=None,
default_http_settings=None, default_redirect_config=None, raw=False):
+ SubResource = cmd.get_models('SubResource')
if default_address_pool == '':
instance.default_backend_address_pool = None
elif default_address_pool:
@@ -719,13 +671,11 @@ def update_ag_url_path_map(instance, parent, item_name, default_address_pool=Non
return parent
-def create_ag_url_path_map_rule(resource_group_name, application_gateway_name, url_path_map_name,
+def create_ag_url_path_map_rule(cmd, resource_group_name, application_gateway_name, url_path_map_name,
item_name, paths, address_pool=None, http_settings=None, redirect_config=None,
no_wait=False):
- ApplicationGatewayPathRule = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayPathRule', mod='models')
- ncf = _network_client_factory()
+ ApplicationGatewayPathRule, SubResource = cmd.get_models('ApplicationGatewayPathRule', 'SubResource')
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
url_map = next((x for x in ag.url_path_maps if x.name == url_path_map_name), None)
if not url_map:
@@ -739,7 +689,7 @@ def create_ag_url_path_map_rule(resource_group_name, application_gateway_name, u
paths=paths,
backend_address_pool=SubResource(address_pool) if address_pool else default_backend_pool,
backend_http_settings=SubResource(http_settings) if http_settings else default_http_settings)
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
+ if cmd.supported_api_version(min_api='2017-06-01'):
default_redirect = SubResource(url_map.default_redirect_configuration.id) \
if url_map.default_redirect_configuration else None
new_rule.redirect_configuration = SubResource(redirect_config) if redirect_config else default_redirect
@@ -748,9 +698,9 @@ def create_ag_url_path_map_rule(resource_group_name, application_gateway_name, u
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def delete_ag_url_path_map_rule(resource_group_name, application_gateway_name, url_path_map_name,
+def delete_ag_url_path_map_rule(cmd, resource_group_name, application_gateway_name, url_path_map_name,
item_name, no_wait=False):
- ncf = _network_client_factory()
+ ncf = network_client_factory(cmd.cli_ctx)
ag = ncf.application_gateways.get(resource_group_name, application_gateway_name)
url_map = next((x for x in ag.url_path_maps if x.name == url_path_map_name), None)
if not url_map:
@@ -761,13 +711,12 @@ def delete_ag_url_path_map_rule(resource_group_name, application_gateway_name, u
resource_group_name, application_gateway_name, ag, raw=no_wait)
-def set_ag_waf_config_2016_09_01(resource_group_name, application_gateway_name, enabled,
+def set_ag_waf_config_2016_09_01(cmd, resource_group_name, application_gateway_name, enabled,
firewall_mode=None,
no_wait=False):
- ApplicationGatewayWebApplicationFirewallConfiguration = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayWebApplicationFirewallConfiguration', mod='models')
- ncf = _network_client_factory().application_gateways
+ ApplicationGatewayWebApplicationFirewallConfiguration = cmd.get_models(
+ 'ApplicationGatewayWebApplicationFirewallConfiguration')
+ ncf = network_client_factory(cmd.cli_ctx).application_gateways
ag = ncf.get(resource_group_name, application_gateway_name)
ag.web_application_firewall_configuration = \
ApplicationGatewayWebApplicationFirewallConfiguration(
@@ -776,23 +725,20 @@ def set_ag_waf_config_2016_09_01(resource_group_name, application_gateway_name,
return ncf.create_or_update(resource_group_name, application_gateway_name, ag, raw=no_wait)
-def set_ag_waf_config_2017_03_01(resource_group_name, application_gateway_name, enabled,
+def set_ag_waf_config_2017_03_01(cmd, resource_group_name, application_gateway_name, enabled,
firewall_mode=None,
rule_set_type='OWASP', rule_set_version=None,
disabled_rule_groups=None,
disabled_rules=None, no_wait=False):
- ApplicationGatewayWebApplicationFirewallConfiguration = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayWebApplicationFirewallConfiguration', mod='models')
- ncf = _network_client_factory().application_gateways
+ ApplicationGatewayWebApplicationFirewallConfiguration = cmd.get_models(
+ 'ApplicationGatewayWebApplicationFirewallConfiguration')
+ ncf = network_client_factory(cmd.cli_ctx).application_gateways
ag = ncf.get(resource_group_name, application_gateway_name)
ag.web_application_firewall_configuration = \
ApplicationGatewayWebApplicationFirewallConfiguration(
enabled == 'true', firewall_mode, rule_set_type, rule_set_version)
if disabled_rule_groups or disabled_rules:
- ApplicationGatewayFirewallDisabledRuleGroup = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ApplicationGatewayFirewallDisabledRuleGroup', mod='models')
+ ApplicationGatewayFirewallDisabledRuleGroup = cmd.get_models('ApplicationGatewayFirewallDisabledRuleGroup')
disabled_groups = []
@@ -822,8 +768,8 @@ def _flatten(collection, expand_property_fn):
return ncf.create_or_update(resource_group_name, application_gateway_name, ag, raw=no_wait)
-def show_ag_waf_config(resource_group_name, application_gateway_name):
- return _network_client_factory().application_gateways.get(
+def show_ag_waf_config(cmd, resource_group_name, application_gateway_name):
+ return network_client_factory(cmd.cli_ctx).application_gateways.get(
resource_group_name, application_gateway_name).web_application_firewall_configuration
@@ -854,10 +800,10 @@ def list_ag_waf_rule_sets(client, _type=None, version=None, group=None):
# endregion
-# region Application Security Group commands
-def create_asg(client, resource_group_name, application_security_group_name, location=None, tags=None):
- ApplicationSecurityGroup = get_sdk(ResourceType.MGMT_NETWORK, 'ApplicationSecurityGroup', mod='models')
+# region ApplicationSecurityGroups
+def create_asg(cmd, client, resource_group_name, application_security_group_name, location=None, tags=None):
+ ApplicationSecurityGroup = cmd.get_models('ApplicationSecurityGroup')
asg = ApplicationSecurityGroup(location=location, tags=tags)
return client.create_or_update(resource_group_name, application_security_group_name, asg)
@@ -870,1581 +816,1688 @@ def update_asg(instance, tags=None):
# endregion
-# region Load Balancer subresource commands
-
-def create_load_balancer(load_balancer_name, resource_group_name, location=None, tags=None,
- backend_pool_name=None, frontend_ip_name='LoadBalancerFrontEnd',
- private_ip_address=None, public_ip_address=None,
- public_ip_address_allocation=None,
- public_ip_dns_name=None, subnet=None, subnet_address_prefix='10.0.0.0/24',
- virtual_network_name=None, vnet_address_prefix='10.0.0.0/16',
- public_ip_address_type=None, subnet_type=None, validate=False,
- no_wait=False, sku=None, frontend_ip_zone=None, public_ip_zone=None):
- from azure.cli.core.util import random_string
- from azure.cli.command_modules.network._template_builder import \
- (ArmTemplateBuilder, build_load_balancer_resource, build_public_ip_resource,
- build_vnet_resource)
-
- DeploymentProperties = get_sdk(ResourceType.MGMT_RESOURCE_RESOURCES,
- 'DeploymentProperties', mod='models')
- tags = tags or {}
- public_ip_address = public_ip_address or 'PublicIP{}'.format(load_balancer_name)
- backend_pool_name = backend_pool_name or '{}bepool'.format(load_balancer_name)
- if not public_ip_address_allocation:
- public_ip_address_allocation = IPAllocationMethod.static.value if (sku and sku.lower() == 'standard') \
- else IPAllocationMethod.dynamic.value
-
- # Build up the ARM template
- master_template = ArmTemplateBuilder()
- lb_dependencies = []
-
- public_ip_id = public_ip_address if is_valid_resource_id(public_ip_address) else None
- subnet_id = subnet if is_valid_resource_id(subnet) else None
- private_ip_allocation = IPAllocationMethod.static.value if private_ip_address \
- else IPAllocationMethod.dynamic.value
-
- network_id_template = resource_id(
- subscription=get_subscription_id(), resource_group=resource_group_name,
- namespace='Microsoft.Network')
-
- if subnet_type == 'new':
- lb_dependencies.append('Microsoft.Network/virtualNetworks/{}'.format(virtual_network_name))
- vnet = build_vnet_resource(
- virtual_network_name, location, tags, vnet_address_prefix, subnet,
- subnet_address_prefix)
- master_template.add_resource(vnet)
- subnet_id = '{}/virtualNetworks/{}/subnets/{}'.format(
- network_id_template, virtual_network_name, subnet)
-
- if public_ip_address_type == 'new':
- lb_dependencies.append('Microsoft.Network/publicIpAddresses/{}'.format(public_ip_address))
- master_template.add_resource(build_public_ip_resource(public_ip_address, location,
- tags,
- public_ip_address_allocation,
- public_ip_dns_name,
- sku, public_ip_zone))
- public_ip_id = '{}/publicIPAddresses/{}'.format(network_id_template,
- public_ip_address)
+# region DNS Commands
+def create_dns_zone(client, resource_group_name, zone_name, location='global', tags=None,
+ if_none_match=False, zone_type=None, resolution_vnets=None, registration_vnets=None):
+ zone = Zone(location=location, tags=tags)
- load_balancer_resource = build_load_balancer_resource(
- load_balancer_name, location, tags, backend_pool_name, frontend_ip_name,
- public_ip_id, subnet_id, private_ip_address, private_ip_allocation, sku,
- frontend_ip_zone)
- load_balancer_resource['dependsOn'] = lb_dependencies
- master_template.add_resource(load_balancer_resource)
- master_template.add_output('loadBalancer', load_balancer_name, output_type='object')
+ if hasattr(zone, 'zone_type'):
+ zone.zone_type = zone_type
+ zone.registration_virtual_networks = registration_vnets
+ zone.resolution_virtual_networks = resolution_vnets
- template = master_template.build()
+ return client.create_or_update(resource_group_name, zone_name, zone, if_none_match='*' if if_none_match else None)
- # deploy ARM template
- deployment_name = 'lb_deploy_' + random_string(32)
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).deployments
- properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
- if validate:
- _log_pprint_template(template)
- return client.validate(resource_group_name, deployment_name, properties)
- return client.create_or_update(resource_group_name, deployment_name, properties, raw=no_wait)
+def update_dns_zone(instance, tags=None, zone_type=None, resolution_vnets=None, registration_vnets=None):
+ if tags is not None:
+ instance.tags = tags
-def create_lb_inbound_nat_rule(
- resource_group_name, load_balancer_name, item_name, protocol, frontend_port,
- backend_port, frontend_ip_name=None, floating_ip="false", idle_timeout=None):
- ncf = _network_client_factory()
- lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
- if not frontend_ip_name:
- frontend_ip_name = _get_default_name(lb, 'frontend_ip_configurations', '--frontend-ip-name')
- frontend_ip = _get_property(lb.frontend_ip_configurations, frontend_ip_name) # pylint: disable=no-member
- new_rule = InboundNatRule(
- name=item_name, protocol=protocol,
- frontend_port=frontend_port, backend_port=backend_port,
- frontend_ip_configuration=frontend_ip,
- enable_floating_ip=floating_ip == 'true',
- idle_timeout_in_minutes=idle_timeout)
- _upsert(lb, 'inbound_nat_rules', new_rule, 'name')
- poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
- return _get_property(poller.result().inbound_nat_rules, item_name)
+ if zone_type:
+ instance.zone_type = zone_type
+ if resolution_vnets == ['']:
+ instance.resolution_virtual_networks = None
+ elif resolution_vnets:
+ instance.resolution_virtual_networks = resolution_vnets
-def set_lb_inbound_nat_rule(
- instance, parent, item_name, protocol=None, frontend_port=None,
- frontend_ip_name=None, backend_port=None, floating_ip=None, idle_timeout=None):
- if frontend_ip_name:
- instance.frontend_ip_configuration = \
- _get_property(parent.frontend_ip_configurations, frontend_ip_name)
+ if registration_vnets == ['']:
+ instance.registration_virtual_networks = None
+ elif registration_vnets:
+ instance.registration_virtual_networks = registration_vnets
- if floating_ip is not None:
- instance.enable_floating_ip = floating_ip == 'true'
+ return instance
- _set_param(instance, 'protocol', protocol)
- _set_param(instance, 'frontend_port', frontend_port)
- _set_param(instance, 'backend_port', backend_port)
- _set_param(instance, 'idle_timeout_in_minutes', idle_timeout)
- return parent
+def list_dns_zones(cmd, resource_group_name=None):
+ ncf = get_mgmt_service_client(cmd.cli_ctx, DnsManagementClient).zones
+ if resource_group_name:
+ return ncf.list_by_resource_group(resource_group_name)
+ return ncf.list()
-def create_lb_inbound_nat_pool(
- resource_group_name, load_balancer_name, item_name, protocol, frontend_port_range_start,
- frontend_port_range_end, backend_port, frontend_ip_name=None):
- ncf = _network_client_factory()
- lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
- frontend_ip = _get_property(lb.frontend_ip_configurations, frontend_ip_name) \
- if frontend_ip_name else None
- new_pool = InboundNatPool(
- name=item_name,
- protocol=protocol,
- frontend_ip_configuration=frontend_ip,
- frontend_port_range_start=frontend_port_range_start,
- frontend_port_range_end=frontend_port_range_end,
- backend_port=backend_port)
- _upsert(lb, 'inbound_nat_pools', new_pool, 'name')
- poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
- return _get_property(poller.result().inbound_nat_pools, item_name)
+def create_dns_record_set(cmd, resource_group_name, zone_name, record_set_name, record_set_type,
+ metadata=None, if_match=None, if_none_match=None, ttl=3600):
+ ncf = get_mgmt_service_client(cmd.cli_ctx, DnsManagementClient).record_sets
+ record_set = RecordSet(ttl=ttl, metadata=metadata)
+ return ncf.create_or_update(resource_group_name, zone_name, record_set_name,
+ record_set_type, record_set, if_match=if_match,
+ if_none_match='*' if if_none_match else None)
-def set_lb_inbound_nat_pool(
- instance, parent, item_name, protocol=None,
- frontend_port_range_start=None, frontend_port_range_end=None, backend_port=None,
- frontend_ip_name=None):
- _set_param(instance, 'protocol', protocol)
- _set_param(instance, 'frontend_port_range_start', frontend_port_range_start)
- _set_param(instance, 'frontend_port_range_end', frontend_port_range_end)
- _set_param(instance, 'backend_port', backend_port)
+def list_dns_record_set(client, resource_group_name, zone_name, record_type=None):
+ if record_type:
+ return client.list_by_type(resource_group_name, zone_name, record_type)
- if frontend_ip_name == '':
- instance.frontend_ip_configuration = None
- elif frontend_ip_name is not None:
- instance.frontend_ip_configuration = \
- _get_property(parent.frontend_ip_configurations, frontend_ip_name)
+ return client.list_by_dns_zone(resource_group_name, zone_name)
- return parent
+def update_dns_record_set(instance, metadata=None):
+ if metadata is not None:
+ instance.metadata = metadata
+ return instance
-def create_lb_frontend_ip_configuration(
- resource_group_name, load_balancer_name, item_name, public_ip_address=None,
- subnet=None, virtual_network_name=None, private_ip_address=None,
- private_ip_address_allocation='dynamic', zone=None):
- ncf = _network_client_factory()
- lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
- new_config = FrontendIPConfiguration(
- name=item_name,
- private_ip_address=private_ip_address,
- private_ip_allocation_method=private_ip_address_allocation,
- public_ip_address=PublicIPAddress(public_ip_address) if public_ip_address else None,
- subnet=Subnet(subnet) if subnet else None)
- if zone and supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- new_config.zones = zone
+def _type_to_property_name(key):
+ type_dict = {
+ 'a': 'arecords',
+ 'aaaa': 'aaaa_records',
+ 'caa': 'caa_records',
+ 'cname': 'cname_record',
+ 'mx': 'mx_records',
+ 'ns': 'ns_records',
+ 'ptr': 'ptr_records',
+ 'soa': 'soa_record',
+ 'spf': 'txt_records',
+ 'srv': 'srv_records',
+ 'txt': 'txt_records',
+ }
+ return type_dict[key.lower()]
- _upsert(lb, 'frontend_ip_configurations', new_config, 'name')
- poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
- return _get_property(poller.result().frontend_ip_configurations, item_name)
+def export_zone(cmd, resource_group_name, zone_name):
+ from time import localtime, strftime
-def set_lb_frontend_ip_configuration(
- instance, parent, item_name, private_ip_address=None,
- private_ip_address_allocation=None, public_ip_address=None, subnet=None,
- virtual_network_name=None):
- if private_ip_address == '':
- instance.private_ip_allocation_method = private_ip_address_allocation
- instance.private_ip_address = None
- elif private_ip_address is not None:
- instance.private_ip_allocation_method = private_ip_address_allocation
- instance.private_ip_address = private_ip_address
+ client = get_mgmt_service_client(cmd.cli_ctx, DnsManagementClient)
+ record_sets = client.record_sets.list_by_dns_zone(resource_group_name, zone_name)
- if subnet == '':
- instance.subnet = None
- elif subnet is not None:
- instance.subnet = Subnet(subnet)
+ zone_obj = OrderedDict({
+ '$origin': zone_name.rstrip('.') + '.',
+ 'resource-group': resource_group_name,
+ 'zone-name': zone_name.rstrip('.'),
+ 'datetime': strftime('%a, %d %b %Y %X %z', localtime())
+ })
- if public_ip_address == '':
- instance.public_ip_address = None
- elif public_ip_address is not None:
- instance.public_ip_address = PublicIPAddress(public_ip_address)
+ for record_set in record_sets:
+ record_type = record_set.type.rsplit('/', 1)[1].lower()
+ record_set_name = record_set.name
+ record_data = getattr(record_set, _type_to_property_name(record_type), None)
- return parent
+ # ignore empty record sets
+ if not record_data:
+ continue
+ if not isinstance(record_data, list):
+ record_data = [record_data]
-def create_lb_backend_address_pool(resource_group_name, load_balancer_name, item_name):
- ncf = _network_client_factory()
- lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
- new_pool = BackendAddressPool(name=item_name)
- _upsert(lb, 'backend_address_pools', new_pool, 'name')
- poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
- return _get_property(poller.result().backend_address_pools, item_name)
+ if record_set_name not in zone_obj:
+ zone_obj[record_set_name] = OrderedDict()
+ for record in record_data:
-def create_lb_probe(resource_group_name, load_balancer_name, item_name, protocol, port,
- path=None, interval=None, threshold=None):
- ncf = _network_client_factory()
- lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
- new_probe = Probe(
- protocol=protocol, port=port, interval_in_seconds=interval, number_of_probes=threshold,
- request_path=path, name=item_name)
- _upsert(lb, 'probes', new_probe, 'name')
- poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
- return _get_property(poller.result().probes, item_name)
+ record_obj = {'ttl': record_set.ttl}
+ if record_type not in zone_obj[record_set_name]:
+ zone_obj[record_set_name][record_type] = []
-def set_lb_probe(instance, parent, item_name, protocol=None, port=None,
- path=None, interval=None, threshold=None):
- _set_param(instance, 'protocol', protocol)
- _set_param(instance, 'port', port)
- _set_param(instance, 'request_path', path)
- _set_param(instance, 'interval_in_seconds', interval)
- _set_param(instance, 'number_of_probes', threshold)
+ if record_type == 'aaaa':
+ record_obj.update({'ip': record.ipv6_address})
+ elif record_type == 'a':
+ record_obj.update({'ip': record.ipv4_address})
+ elif record_type == 'caa':
+ record_obj.update({'value': record.value, 'tag': record.tag, 'flags': record.flags})
+ elif record_type == 'cname':
+ record_obj.update({'alias': record.cname})
+ elif record_type == 'mx':
+ record_obj.update({'preference': record.preference, 'host': record.exchange})
+ elif record_type == 'ns':
+ record_obj.update({'host': record.nsdname})
+ elif record_type == 'ptr':
+ record_obj.update({'host': record.ptrdname})
+ elif record_type == 'soa':
+ record_obj.update({
+ 'mname': record.host.rstrip('.') + '.',
+ 'rname': record.email.rstrip('.') + '.',
+ 'serial': record.serial_number, 'refresh': record.refresh_time,
+ 'retry': record.retry_time, 'expire': record.expire_time,
+ 'minimum': record.minimum_ttl
+ })
+ zone_obj['$ttl'] = record.minimum_ttl
+ elif record_type == 'srv':
+ record_obj.update({'priority': record.priority, 'weight': record.weight,
+ 'port': record.port, 'target': record.target})
+ elif record_type == 'txt':
+ record_obj.update({'txt': ' '.join(record.value)})
- return parent
+ zone_obj[record_set_name][record_type].append(record_obj)
+ print(make_zone_file(zone_obj))
-def create_lb_rule(
- resource_group_name, load_balancer_name, item_name,
- protocol, frontend_port, backend_port, frontend_ip_name=None,
- backend_address_pool_name=None, probe_name=None, load_distribution='default',
- floating_ip='false', idle_timeout=None):
- ncf = _network_client_factory()
- lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
- if not frontend_ip_name:
- frontend_ip_name = _get_default_name(lb, 'frontend_ip_configurations', '--frontend-ip-name')
- if not backend_address_pool_name:
- backend_address_pool_name = _get_default_name(lb, 'backend_address_pools', '--backend-pool-name')
- new_rule = LoadBalancingRule(
- name=item_name,
- protocol=protocol,
- frontend_port=frontend_port,
- backend_port=backend_port,
- frontend_ip_configuration=_get_property(lb.frontend_ip_configurations,
- frontend_ip_name),
- backend_address_pool=_get_property(lb.backend_address_pools,
- backend_address_pool_name),
- probe=_get_property(lb.probes, probe_name) if probe_name else None,
- load_distribution=load_distribution,
- enable_floating_ip=floating_ip == 'true',
- idle_timeout_in_minutes=idle_timeout)
- _upsert(lb, 'load_balancing_rules', new_rule, 'name')
- poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
- return _get_property(poller.result().load_balancing_rules, item_name)
+# pylint: disable=too-many-return-statements
+def _build_record(data):
+ record_type = data['type'].lower()
+ try:
+ if record_type == 'aaaa':
+ return AaaaRecord(data['ip'])
+ elif record_type == 'a':
+ return ARecord(data['ip'])
+ elif record_type == 'caa':
+ return CaaRecord(value=data['value'], flags=data['flags'], tag=data['tag'])
+ elif record_type == 'cname':
+ return CnameRecord(data['alias'])
+ elif record_type == 'mx':
+ return MxRecord(data['preference'], data['host'])
+ elif record_type == 'ns':
+ return NsRecord(data['host'])
+ elif record_type == 'ptr':
+ return PtrRecord(data['host'])
+ elif record_type == 'soa':
+ return SoaRecord(data['host'], data['email'], data['serial'], data['refresh'],
+ data['retry'], data['expire'], data['minimum'])
+ elif record_type == 'srv':
+ return SrvRecord(data['priority'], data['weight'], data['port'], data['target'])
+ elif record_type in ['txt', 'spf']:
+ text_data = data['txt']
+ return TxtRecord(text_data) if isinstance(text_data, list) else TxtRecord([text_data])
+ except KeyError as ke:
+ raise CLIError("The {} record '{}' is missing a property. {}"
+ .format(record_type, data['name'], ke))
-def set_lb_rule(
- instance, parent, item_name, protocol=None, frontend_port=None,
- frontend_ip_name=None, backend_port=None, backend_address_pool_name=None, probe_name=None,
- load_distribution='default', floating_ip=None, idle_timeout=None):
- _set_param(instance, 'protocol', protocol)
- _set_param(instance, 'frontend_port', frontend_port)
- _set_param(instance, 'backend_port', backend_port)
- _set_param(instance, 'idle_timeout_in_minutes', idle_timeout)
- _set_param(instance, 'load_distribution', load_distribution)
- if frontend_ip_name is not None:
- instance.frontend_ip_configuration = \
- _get_property(parent.frontend_ip_configurations, frontend_ip_name)
+# pylint: disable=too-many-statements
+def import_zone(cmd, resource_group_name, zone_name, file_name):
+ from azure.cli.core.util import read_file_content
+ import sys
+ file_text = read_file_content(file_name)
+ zone_obj = parse_zone_file(file_text, zone_name)
- if floating_ip is not None:
- instance.enable_floating_ip = floating_ip == 'true'
+ origin = zone_name
+ record_sets = {}
+ for record_set_name in zone_obj:
+ for record_set_type in zone_obj[record_set_name]:
+ record_set_obj = zone_obj[record_set_name][record_set_type]
- if backend_address_pool_name is not None:
- instance.backend_address_pool = \
- _get_property(parent.backend_address_pools, backend_address_pool_name)
+ if record_set_type == 'soa':
+ origin = record_set_name.rstrip('.')
- if probe_name == '':
- instance.probe = None
- elif probe_name is not None:
- instance.probe = _get_property(parent.probes, probe_name)
+ if not isinstance(record_set_obj, list):
+ record_set_obj = [record_set_obj]
- return parent
+ for entry in record_set_obj:
+ record_set_ttl = entry['ttl']
+ record_set_key = '{}{}'.format(record_set_name.lower(), record_set_type)
-# endregion
+ record = _build_record(entry)
+ record_set = record_sets.get(record_set_key, None)
+ if not record_set:
-# region NIC commands
+ # Workaround for issue #2824
+ relative_record_set_name = record_set_name.rstrip('.')
+ if not relative_record_set_name.endswith(origin):
+ logger.warning(
+ 'Cannot import %s. Only records relative to origin may be '
+ 'imported at this time. Skipping...', relative_record_set_name)
+ continue
-def create_nic(resource_group_name, network_interface_name, subnet, location=None, tags=None,
- internal_dns_name_label=None, dns_servers=None, enable_ip_forwarding=False,
- load_balancer_backend_address_pool_ids=None,
- load_balancer_inbound_nat_rule_ids=None,
- load_balancer_name=None, network_security_group=None,
- private_ip_address=None, private_ip_address_version=None,
- public_ip_address=None, virtual_network_name=None, enable_accelerated_networking=None,
- application_security_groups=None):
- client = _network_client_factory().network_interfaces
- NetworkInterface = get_sdk(ResourceType.MGMT_NETWORK, 'NetworkInterface', mod='models')
+ if record_set_type != 'soa' and relative_record_set_name != origin:
+ relative_record_set_name = record_set_name[:-(len(origin) + 2)]
- NetworkInterfaceDnsSettings = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'NetworkInterfaceDnsSettings', mod='models')
+ record_set = RecordSet(ttl=record_set_ttl)
+ record_sets[record_set_key] = record_set
+ _add_record(record_set, record, record_set_type,
+ is_list=record_set_type.lower() not in ['soa', 'cname'])
- dns_settings = NetworkInterfaceDnsSettings(internal_dns_name_label=internal_dns_name_label,
- dns_servers=dns_servers or [])
+ total_records = 0
+ for key, rs in record_sets.items():
+ rs_type = key.rsplit('.', 1)[1].lower()
+ try:
+ record_count = len(getattr(rs, _type_to_property_name(rs_type)))
+ except TypeError:
+ record_count = 1
+ total_records += record_count
+ cum_records = 0
- nic = NetworkInterface(location=location, tags=tags, enable_ip_forwarding=enable_ip_forwarding,
- dns_settings=dns_settings)
+ client = get_mgmt_service_client(cmd.cli_ctx, DnsManagementClient)
+ print('== BEGINNING ZONE IMPORT: {} ==\n'.format(zone_name), file=sys.stderr)
+ client.zones.create_or_update(resource_group_name, zone_name, Zone('global'))
+ for key, rs in record_sets.items():
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- nic.enable_accelerated_networking = enable_accelerated_networking
+ rs_name, rs_type = key.lower().rsplit('.', 1)
+ rs_name = '@' if rs_name == origin else rs_name
- if network_security_group:
- nic.network_security_group = NetworkSecurityGroup(id=network_security_group)
- ip_config_args = {
- 'name': 'ipconfig1',
- 'load_balancer_backend_address_pools': load_balancer_backend_address_pool_ids,
- 'load_balancer_inbound_nat_rules': load_balancer_inbound_nat_rule_ids,
- 'private_ip_allocation_method': 'Static' if private_ip_address else 'Dynamic',
- 'private_ip_address': private_ip_address,
- 'subnet': Subnet(id=subnet)
- }
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- ip_config_args['private_ip_address_version'] = private_ip_address_version
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-09-01'):
- ip_config_args['application_security_groups'] = application_security_groups
- ip_config = NetworkInterfaceIPConfiguration(**ip_config_args)
+ try:
+ record_count = len(getattr(rs, _type_to_property_name(rs_type)))
+ except TypeError:
+ record_count = 1
+ if rs_name == '@' and rs_type == 'soa':
+ root_soa = client.record_sets.get(resource_group_name, zone_name, '@', 'SOA')
+ rs.soa_record.host = root_soa.soa_record.host
+ rs_name = '@'
+ elif rs_name == '@' and rs_type == 'ns':
+ root_ns = client.record_sets.get(resource_group_name, zone_name, '@', 'NS')
+ root_ns.ttl = rs.ttl
+ rs = root_ns
+ rs_type = rs.type.rsplit('/', 1)[1]
+ try:
+ client.record_sets.create_or_update(
+ resource_group_name, zone_name, rs_name, rs_type, rs)
+ cum_records += record_count
+ print("({}/{}) Imported {} records of type '{}' and name '{}'"
+ .format(cum_records, total_records, record_count, rs_type, rs_name), file=sys.stderr)
+ except CloudError as ex:
+ logger.error(ex)
+ print("\n== {}/{} RECORDS IMPORTED SUCCESSFULLY: '{}' =="
+ .format(cum_records, total_records, zone_name), file=sys.stderr)
- if public_ip_address:
- ip_config.public_ip_address = PublicIPAddress(id=public_ip_address)
- nic.ip_configurations = [ip_config]
- return client.create_or_update(resource_group_name, network_interface_name, nic)
+def add_dns_aaaa_record(cmd, resource_group_name, zone_name, record_set_name, ipv6_address):
+ record = AaaaRecord(ipv6_address=ipv6_address)
+ record_type = 'aaaa'
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name)
-def update_nic(instance, network_security_group=None, enable_ip_forwarding=None,
- internal_dns_name_label=None, dns_servers=None, enable_accelerated_networking=None):
- if enable_ip_forwarding is not None:
- instance.enable_ip_forwarding = enable_ip_forwarding
- if network_security_group == '':
- instance.network_security_group = None
- elif network_security_group is not None:
- instance.network_security_group = NetworkSecurityGroup(network_security_group)
+def add_dns_a_record(cmd, resource_group_name, zone_name, record_set_name, ipv4_address):
+ record = ARecord(ipv4_address=ipv4_address)
+ record_type = 'a'
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ 'arecords')
- if internal_dns_name_label == '':
- instance.dns_settings.internal_dns_name_label = None
- elif internal_dns_name_label is not None:
- instance.dns_settings.internal_dns_name_label = internal_dns_name_label
- if dns_servers == ['']:
- instance.dns_settings.dns_servers = None
- elif dns_servers:
- instance.dns_settings.dns_servers = dns_servers
- if enable_accelerated_networking is not None:
- instance.enable_accelerated_networking = enable_accelerated_networking
+def add_dns_caa_record(cmd, resource_group_name, zone_name, record_set_name, value, flags, tag):
+ record = CaaRecord(flags=flags, tag=tag, value=value)
+ record_type = 'caa'
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name)
- return instance
+def add_dns_cname_record(cmd, resource_group_name, zone_name, record_set_name, cname):
+ record = CnameRecord(cname=cname)
+ record_type = 'cname'
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ is_list=False)
-def create_nic_ip_config(resource_group_name, network_interface_name, ip_config_name, subnet=None,
- virtual_network_name=None, public_ip_address=None, load_balancer_name=None,
- load_balancer_backend_address_pool_ids=None,
- load_balancer_inbound_nat_rule_ids=None,
- private_ip_address=None,
- private_ip_address_allocation=IPAllocationMethod.dynamic.value,
- private_ip_address_version=None,
- make_primary=False,
- application_security_groups=None):
- ncf = _network_client_factory()
- nic = ncf.network_interfaces.get(resource_group_name, network_interface_name)
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- private_ip_address_version = private_ip_address_version or IPVersion.ipv4.value
- if private_ip_address_version == IPVersion.ipv4.value and not subnet:
- primary_config = next(x for x in nic.ip_configurations if x.primary)
- subnet = primary_config.subnet.id
- if make_primary:
- for config in nic.ip_configurations:
- config.primary = False
+def add_dns_mx_record(cmd, resource_group_name, zone_name, record_set_name, preference, exchange):
+ record = MxRecord(preference=int(preference), exchange=exchange)
+ record_type = 'mx'
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name)
- new_config_args = {
- 'name': ip_config_name,
- 'subnet': Subnet(subnet) if subnet else None,
- 'public_ip_address': PublicIPAddress(public_ip_address) if public_ip_address else None,
- 'load_balancer_backend_address_pools': load_balancer_backend_address_pool_ids,
- 'load_balancer_inbound_nat_rules': load_balancer_inbound_nat_rule_ids,
- 'private_ip_address': private_ip_address,
- 'private_ip_allocation_method': private_ip_address_allocation,
- }
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- new_config_args['private_ip_address_version'] = private_ip_address_version
- new_config_args['primary'] = make_primary
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-09-01'):
- new_config_args['application_security_groups'] = application_security_groups
- new_config = NetworkInterfaceIPConfiguration(**new_config_args)
- _upsert(nic, 'ip_configurations', new_config, 'name')
- poller = ncf.network_interfaces.create_or_update(
- resource_group_name, network_interface_name, nic)
- return _get_property(poller.result().ip_configurations, ip_config_name)
+def add_dns_ns_record(cmd, resource_group_name, zone_name, record_set_name, dname):
+ record = NsRecord(nsdname=dname)
+ record_type = 'ns'
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name)
-def set_nic_ip_config(instance, parent, ip_config_name, subnet=None,
- virtual_network_name=None, public_ip_address=None, load_balancer_name=None,
- load_balancer_backend_address_pool_ids=None,
- load_balancer_inbound_nat_rule_ids=None,
- private_ip_address=None, private_ip_address_allocation=None,
- private_ip_address_version='ipv4', make_primary=False,
- application_security_groups=None):
- if make_primary:
- for config in parent.ip_configurations:
- config.primary = False
- instance.primary = True
+def add_dns_ptr_record(cmd, resource_group_name, zone_name, record_set_name, dname):
+ record = PtrRecord(ptrdname=dname)
+ record_type = 'ptr'
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name)
- if private_ip_address == '':
- instance.private_ip_address = None
- instance.private_ip_allocation_method = 'dynamic'
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- instance.private_ip_address_version = 'ipv4'
- elif private_ip_address is not None:
- instance.private_ip_address = private_ip_address
- instance.private_ip_allocation_method = 'static'
- if private_ip_address_version is not None:
- instance.private_ip_address_version = private_ip_address_version
- if subnet == '':
- instance.subnet = None
- elif subnet is not None:
- instance.subnet = Subnet(subnet)
+def update_dns_soa_record(cmd, resource_group_name, zone_name, host=None, email=None,
+ serial_number=None, refresh_time=None, retry_time=None, expire_time=None,
+ minimum_ttl=None):
+ record_set_name = '@'
+ record_type = 'soa'
- if public_ip_address == '':
- instance.public_ip_address = None
- elif public_ip_address is not None:
- instance.public_ip_address = PublicIPAddress(public_ip_address)
+ ncf = get_mgmt_service_client(cmd.cli_ctx, DnsManagementClient).record_sets
+ record_set = ncf.get(resource_group_name, zone_name, record_set_name, record_type)
+ record = record_set.soa_record
- if load_balancer_backend_address_pool_ids == '':
- instance.load_balancer_backend_address_pools = None
- elif load_balancer_backend_address_pool_ids is not None:
- instance.load_balancer_backend_address_pools = load_balancer_backend_address_pool_ids
+ record.host = host or record.host
+ record.email = email or record.email
+ record.serial_number = serial_number or record.serial_number
+ record.refresh_time = refresh_time or record.refresh_time
+ record.retry_time = retry_time or record.retry_time
+ record.expire_time = expire_time or record.expire_time
+ record.minimum_ttl = minimum_ttl or record.minimum_ttl
- if load_balancer_inbound_nat_rule_ids == '':
- instance.load_balancer_inbound_nat_rules = None
- elif load_balancer_inbound_nat_rule_ids is not None:
- instance.load_balancer_inbound_nat_rules = load_balancer_inbound_nat_rule_ids
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ is_list=False)
- if application_security_groups == ['']:
- instance.application_security_groups = None
- elif application_security_groups:
- instance.application_security_groups = application_security_groups
- return parent
+def add_dns_srv_record(cmd, resource_group_name, zone_name, record_set_name, priority, weight,
+ port, target):
+ record = SrvRecord(priority=priority, weight=weight, port=port, target=target)
+ record_type = 'srv'
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name)
+
+
+def add_dns_txt_record(cmd, resource_group_name, zone_name, record_set_name, value):
+ record = TxtRecord(value=value)
+ record_type = 'txt'
+ long_text = ''.join(x for x in record.value)
+ long_text = long_text.replace('\\', '')
+ original_len = len(long_text)
+ record.value = []
+ while len(long_text) > 255:
+ record.value.append(long_text[:255])
+ long_text = long_text[255:]
+ record.value.append(long_text)
+ final_str = ''.join(record.value)
+ final_len = len(final_str)
+ assert original_len == final_len
+ return _add_save_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name)
+
+
+def remove_dns_aaaa_record(cmd, resource_group_name, zone_name, record_set_name, ipv6_address,
+ keep_empty_record_set=False):
+ record = AaaaRecord(ipv6_address=ipv6_address)
+ record_type = 'aaaa'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set=keep_empty_record_set)
+
+
+def remove_dns_a_record(cmd, resource_group_name, zone_name, record_set_name, ipv4_address,
+ keep_empty_record_set=False):
+ record = ARecord(ipv4_address=ipv4_address)
+ record_type = 'a'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set=keep_empty_record_set)
+
+
+def remove_dns_caa_record(cmd, resource_group_name, zone_name, record_set_name, value,
+ flags, tag, keep_empty_record_set=False):
+ record = CaaRecord(flags=flags, tag=tag, value=value)
+ record_type = 'caa'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set=keep_empty_record_set)
+
+
+def remove_dns_cname_record(cmd, resource_group_name, zone_name, record_set_name, cname,
+ keep_empty_record_set=False):
+ record = CnameRecord(cname=cname)
+ record_type = 'cname'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ is_list=False, keep_empty_record_set=keep_empty_record_set)
+
+
+def remove_dns_mx_record(cmd, resource_group_name, zone_name, record_set_name, preference, exchange,
+ keep_empty_record_set=False):
+ record = MxRecord(preference=int(preference), exchange=exchange)
+ record_type = 'mx'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set=keep_empty_record_set)
+
+
+def remove_dns_ns_record(cmd, resource_group_name, zone_name, record_set_name, dname,
+ keep_empty_record_set=False):
+ record = NsRecord(nsdname=dname)
+ record_type = 'ns'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set=keep_empty_record_set)
+
+
+def remove_dns_ptr_record(cmd, resource_group_name, zone_name, record_set_name, dname,
+ keep_empty_record_set=False):
+ record = PtrRecord(ptrdname=dname)
+ record_type = 'ptr'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set=keep_empty_record_set)
+
+
+def remove_dns_srv_record(cmd, resource_group_name, zone_name, record_set_name, priority, weight,
+ port, target, keep_empty_record_set=False):
+ record = SrvRecord(priority=priority, weight=weight, port=port, target=target)
+ record_type = 'srv'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set=keep_empty_record_set)
+
+
+def remove_dns_txt_record(cmd, resource_group_name, zone_name, record_set_name, value,
+ keep_empty_record_set=False):
+ record = TxtRecord(value=value)
+ record_type = 'txt'
+ return _remove_record(cmd.cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set=keep_empty_record_set)
+
+
+def _add_record(record_set, record, record_type, is_list=False):
+ record_property = _type_to_property_name(record_type)
+
+ if is_list:
+ record_list = getattr(record_set, record_property)
+ if record_list is None:
+ setattr(record_set, record_property, [])
+ record_list = getattr(record_set, record_property)
+ record_list.append(record)
+ else:
+ setattr(record_set, record_property, record)
+
+
+def _add_save_record(cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ is_list=True):
+ ncf = get_mgmt_service_client(cli_ctx, DnsManagementClient).record_sets
+ try:
+ record_set = ncf.get(resource_group_name, zone_name, record_set_name, record_type)
+ except CloudError:
+ record_set = RecordSet(ttl=3600)
+
+ _add_record(record_set, record, record_type, is_list)
+
+ return ncf.create_or_update(resource_group_name, zone_name, record_set_name,
+ record_type, record_set)
+
+
+def _remove_record(cli_ctx, record, record_type, record_set_name, resource_group_name, zone_name,
+ keep_empty_record_set, is_list=True):
+ ncf = get_mgmt_service_client(cli_ctx, DnsManagementClient).record_sets
+ record_set = ncf.get(resource_group_name, zone_name, record_set_name, record_type)
+ record_property = _type_to_property_name(record_type)
+
+ if is_list:
+ record_list = getattr(record_set, record_property)
+ if record_list is not None:
+ keep_list = [r for r in record_list
+ if not dict_matches_filter(r.__dict__, record.__dict__)]
+ if len(keep_list) == len(record_list):
+ raise CLIError('Record {} not found.'.format(str(record)))
+ setattr(record_set, record_property, keep_list)
+ else:
+ setattr(record_set, record_property, None)
+
+ if is_list:
+ records_remaining = len(getattr(record_set, record_property))
+ else:
+ records_remaining = 1 if getattr(record_set, record_property) is not None else 0
+ if not records_remaining and not keep_empty_record_set:
+ logger.info('Removing empty %s record set: %s', record_type, record_set_name)
+ return ncf.delete(resource_group_name, zone_name, record_set_name, record_type)
-def _get_nic_ip_config(nic, name):
- if nic.ip_configurations:
- ip_config = next(
- (x for x in nic.ip_configurations if x.name.lower() == name.lower()), None)
- else:
- ip_config = None
- if not ip_config:
- raise CLIError('IP configuration {} not found.'.format(name))
- return ip_config
+ return ncf.create_or_update(resource_group_name, zone_name, record_set_name, record_type, record_set)
-def add_nic_ip_config_address_pool(
- resource_group_name, network_interface_name, ip_config_name, backend_address_pool,
- load_balancer_name=None):
- client = _network_client_factory().network_interfaces
- nic = client.get(resource_group_name, network_interface_name)
- ip_config = _get_nic_ip_config(nic, ip_config_name)
- _upsert(ip_config, 'load_balancer_backend_address_pools',
- BackendAddressPool(id=backend_address_pool),
- 'id')
- poller = client.create_or_update(resource_group_name, network_interface_name, nic)
- return _get_property(poller.result().ip_configurations, ip_config_name)
+def dict_matches_filter(d, filter_dict):
+ sentinel = object()
+ return all(not filter_dict.get(key, None) or
+ str(filter_dict[key]) == str(d.get(key, sentinel)) or
+ lists_match(filter_dict[key], d.get(key, []))
+ for key in filter_dict)
-def remove_nic_ip_config_address_pool(
- resource_group_name, network_interface_name, ip_config_name, backend_address_pool,
- load_balancer_name=None):
- client = _network_client_factory().network_interfaces
- nic = client.get(resource_group_name, network_interface_name)
- ip_config = _get_nic_ip_config(nic, ip_config_name)
- keep_items = [x for x in ip_config.load_balancer_backend_address_pools or [] if x.id != backend_address_pool]
- ip_config.load_balancer_backend_address_pools = keep_items
- poller = client.create_or_update(resource_group_name, network_interface_name, nic)
- return _get_property(poller.result().ip_configurations, ip_config_name)
+def lists_match(l1, l2):
+ try:
+ return Counter(l1) == Counter(l2)
+ except TypeError:
+ return False
-def add_nic_ip_config_inbound_nat_rule(
- resource_group_name, network_interface_name, ip_config_name, inbound_nat_rule,
- load_balancer_name=None):
- client = _network_client_factory().network_interfaces
- nic = client.get(resource_group_name, network_interface_name)
- ip_config = _get_nic_ip_config(nic, ip_config_name)
- _upsert(ip_config, 'load_balancer_inbound_nat_rules',
- InboundNatRule(id=inbound_nat_rule),
- 'id')
- poller = client.create_or_update(resource_group_name, network_interface_name, nic)
- return _get_property(poller.result().ip_configurations, ip_config_name)
+# endregion
-def remove_nic_ip_config_inbound_nat_rule(
- resource_group_name, network_interface_name, ip_config_name, inbound_nat_rule,
- load_balancer_name=None):
- client = _network_client_factory().network_interfaces
- nic = client.get(resource_group_name, network_interface_name)
- ip_config = _get_nic_ip_config(nic, ip_config_name)
- keep_items = \
- [x for x in ip_config.load_balancer_inbound_nat_rules if x.id != inbound_nat_rule]
- ip_config.load_balancer_inbound_nat_rules = keep_items
- poller = client.create_or_update(resource_group_name, network_interface_name, nic)
- return _get_property(poller.result().ip_configurations, ip_config_name)
+# region ExpressRoutes
+def create_express_route(cmd, circuit_name, resource_group_name, bandwidth_in_mbps, peering_location,
+ service_provider_name, location=None, tags=None, no_wait=False,
+ sku_family=None, sku_tier=None):
+ ExpressRouteCircuit, ExpressRouteCircuitSku, ExpressRouteCircuitServiceProviderProperties = cmd.get_models(
+ 'ExpressRouteCircuit', 'ExpressRouteCircuitSku', 'ExpressRouteCircuitServiceProviderProperties')
+ client = network_client_factory(cmd.cli_ctx).express_route_circuits
+ sku_name = '{}_{}'.format(sku_tier, sku_family)
+ circuit = ExpressRouteCircuit(
+ location=location, tags=tags,
+ service_provider_properties=ExpressRouteCircuitServiceProviderProperties(
+ service_provider_name=service_provider_name,
+ peering_location=peering_location,
+ bandwidth_in_mbps=bandwidth_in_mbps),
+ sku=ExpressRouteCircuitSku(sku_name, sku_tier, sku_family)
+ )
+ return client.create_or_update(resource_group_name, circuit_name, circuit, raw=no_wait)
-# endregion
+def update_express_route(instance, bandwidth_in_mbps=None, peering_location=None,
+ service_provider_name=None, sku_family=None, sku_tier=None, tags=None):
+ if bandwidth_in_mbps is not None:
+ instance.service_provider_properties.bandwith_in_mbps = bandwidth_in_mbps
-# region Network Security Group commands
+ if peering_location is not None:
+ instance.service_provider_properties.peering_location = peering_location
-def create_nsg(resource_group_name, network_security_group_name, location=None, tags=None):
- client = _network_client_factory().network_security_groups
- nsg = NetworkSecurityGroup(location=location, tags=tags)
- return client.create_or_update(resource_group_name, network_security_group_name, nsg)
+ if service_provider_name is not None:
+ instance.service_provider_properties.service_provider_name = service_provider_name
+ if sku_family is not None:
+ instance.sku.family = sku_family
-def _create_singular_or_plural_property(kwargs, val, singular_name, plural_name):
+ if sku_tier is not None:
+ instance.sku.tier = sku_tier
- if not val:
- return
- if not isinstance(val, list):
- val = [val]
- if len(val) > 1:
- kwargs[plural_name] = val
- kwargs[singular_name] = None
- else:
- kwargs[singular_name] = val[0]
- kwargs[plural_name] = None
+ if tags is not None:
+ instance.tags = tags
+ return instance
-def _handle_asg_property(kwargs, key, asgs):
- prefix = key.split('_', 1)[0] + '_'
- if asgs:
- kwargs[key] = asgs
- if kwargs[prefix + 'address_prefix'].is_default:
- kwargs[prefix + 'address_prefix'] = ''
+def _validate_ipv6_address_prefixes(prefixes):
+ from ipaddress import ip_network, IPv6Network
+ prefixes = prefixes if isinstance(prefixes, list) else [prefixes]
+ version = None
+ for prefix in prefixes:
+ try:
+ network = ip_network(prefix)
+ if version is None:
+ version = type(network)
+ else:
+ if not isinstance(network, version):
+ raise CLIError("usage error: '{}' incompatible mix of IPv4 and IPv6 address prefixes."
+ .format(prefixes))
+ except ValueError:
+ raise CLIError("usage error: prefix '{}' is not recognized as an IPv4 or IPv6 address prefix."
+ .format(prefix))
+ return version == IPv6Network
-def create_nsg_rule_2017_06_01(resource_group_name, network_security_group_name, security_rule_name,
- priority, description=None, protocol=SecurityRuleProtocol.asterisk.value,
- access=SecurityRuleAccess.allow.value,
- direction=SecurityRuleDirection.inbound.value,
- source_port_ranges=DefaultStr('*'), source_address_prefixes=DefaultStr('*'),
- destination_port_ranges=DefaultInt(80), destination_address_prefixes=DefaultStr('*'),
- source_asgs=None, destination_asgs=None):
- kwargs = {
- 'protocol': protocol,
- 'direction': direction,
- 'description': description,
- 'priority': priority,
- 'access': access,
- 'name': security_rule_name
- }
- _create_singular_or_plural_property(kwargs, source_address_prefixes,
- 'source_address_prefix', 'source_address_prefixes')
- _create_singular_or_plural_property(kwargs, destination_address_prefixes,
- 'destination_address_prefix', 'destination_address_prefixes')
- _create_singular_or_plural_property(kwargs, source_port_ranges,
- 'source_port_range', 'source_port_ranges')
- _create_singular_or_plural_property(kwargs, destination_port_ranges,
- 'destination_port_range', 'destination_port_ranges')
- # workaround for issue https://github.com/Azure/azure-rest-api-specs/issues/1591
- kwargs['source_address_prefix'] = kwargs['source_address_prefix'] or ''
- kwargs['destination_address_prefix'] = kwargs['destination_address_prefix'] or ''
+def create_express_route_peering(
+ cmd, client, resource_group_name, circuit_name, peering_type, peer_asn, vlan_id,
+ primary_peer_address_prefix, secondary_peer_address_prefix, shared_key=None,
+ advertised_public_prefixes=None, customer_asn=None, routing_registry_name=None,
+ route_filter=None):
+ (ExpressRouteCircuitPeering, ExpressRouteCircuitPeeringConfig, ExpressRouteCircuitPeeringType,
+ RouteFilter) = cmd.get_models(
+ 'ExpressRouteCircuitPeering', 'ExpressRouteCircuitPeeringConfig', 'ExpressRouteCircuitPeeringType',
+ 'RouteFilter')
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-09-01'):
- _handle_asg_property(kwargs, 'source_application_security_groups', source_asgs)
- _handle_asg_property(kwargs, 'destination_application_security_groups', destination_asgs)
+ peering = ExpressRouteCircuitPeering(
+ peering_type=peering_type, peer_asn=peer_asn, vlan_id=vlan_id,
+ primary_peer_address_prefix=primary_peer_address_prefix,
+ secondary_peer_address_prefix=secondary_peer_address_prefix,
+ shared_key=shared_key)
- settings = SecurityRule(**kwargs)
- ncf = _network_client_factory()
- return ncf.security_rules.create_or_update(
- resource_group_name, network_security_group_name, security_rule_name, settings)
+ if peering_type == ExpressRouteCircuitPeeringType.microsoft_peering.value:
+ peering.microsoft_peering_config = ExpressRouteCircuitPeeringConfig(
+ advertised_public_prefixes=advertised_public_prefixes,
+ customer_asn=customer_asn,
+ routing_registry_name=routing_registry_name)
+ if cmd.supported_api_version(min_api='2016-12-01') and route_filter:
+ peering.route_filter = RouteFilter(id=route_filter)
+ return client.create_or_update(resource_group_name, circuit_name, peering_type, peering)
-def create_nsg_rule_2017_03_01(resource_group_name, network_security_group_name, security_rule_name,
- priority, description=None, protocol=SecurityRuleProtocol.asterisk.value,
- access=SecurityRuleAccess.allow.value,
- direction=SecurityRuleDirection.inbound.value,
- source_port_range='*', source_address_prefix='*',
- destination_port_range=80, destination_address_prefix='*'):
- settings = SecurityRule(protocol=protocol, source_address_prefix=source_address_prefix,
- destination_address_prefix=destination_address_prefix, access=access,
- direction=direction,
- description=description, source_port_range=source_port_range,
- destination_port_range=destination_port_range, priority=priority,
- name=security_rule_name)
- ncf = _network_client_factory()
- return ncf.security_rules.create_or_update(
- resource_group_name, network_security_group_name, security_rule_name, settings)
+def _create_or_update_ipv6_peering(cmd, config, primary_peer_address_prefix, secondary_peer_address_prefix,
+ route_filter, advertised_public_prefixes, customer_asn, routing_registry_name):
+ if config:
+ # update scenario
+ if primary_peer_address_prefix:
+ config.primary_peer_address_prefix = primary_peer_address_prefix
+ if secondary_peer_address_prefix:
+ config.secondary_peer_address_prefix = secondary_peer_address_prefix
-create_nsg_rule_2017_03_01.__doc__ = SecurityRule.__doc__
-create_nsg_rule_2017_06_01.__doc__ = SecurityRule.__doc__
+ if route_filter:
+ RouteFilter = cmd.get_models('RouteFilter')
+ config.route_filter = RouteFilter(id=route_filter)
+ if advertised_public_prefixes:
+ config.microsoft_peering_config.advertised_public_prefixes = advertised_public_prefixes
-def _update_singular_or_plural_property(instance, val, singular_name, plural_name):
+ if customer_asn:
+ config.microsoft_peering_config.customer_asn = customer_asn
- if val is None:
- return
- if not isinstance(val, list):
- val = [val]
- if len(val) > 1:
- setattr(instance, plural_name, val)
- setattr(instance, singular_name, None)
+ if routing_registry_name:
+ config.microsoft_peering_config.routing_registry_name = routing_registry_name
else:
- setattr(instance, plural_name, None)
- setattr(instance, singular_name, val[0])
+ # create scenario
+ IPv6Config, MicrosoftPeeringConfig = cmd.get_models(
+ 'Ipv6ExpressRouteCircuitPeeringConfig', 'ExpressRouteCircuitPeeringConfig')
+ microsoft_config = MicrosoftPeeringConfig(advertised_public_prefixes=advertised_public_prefixes,
+ customer_asn=customer_asn,
+ routing_registry_name=routing_registry_name)
+ config = IPv6Config(primary_peer_address_prefix=primary_peer_address_prefix,
+ secondary_peer_address_prefix=secondary_peer_address_prefix,
+ microsoft_peering_config=microsoft_config,
+ route_filter=route_filter)
-def update_nsg_rule_2017_06_01(instance, protocol=None, source_address_prefixes=None,
- destination_address_prefixes=None, access=None, direction=None, description=None,
- source_port_ranges=None, destination_port_ranges=None, priority=None,
- source_asgs=None, destination_asgs=None):
- # No client validation as server side returns pretty good errors
- instance.protocol = protocol if protocol is not None else instance.protocol
- instance.access = access if access is not None else instance.access
- instance.direction = direction if direction is not None else instance.direction
- instance.description = description if description is not None else instance.description
- instance.priority = priority if priority is not None else instance.priority
+ return config
- _update_singular_or_plural_property(instance, source_address_prefixes,
- 'source_address_prefix', 'source_address_prefixes')
- _update_singular_or_plural_property(instance, destination_address_prefixes,
- 'destination_address_prefix', 'destination_address_prefixes')
- _update_singular_or_plural_property(instance, source_port_ranges,
- 'source_port_range', 'source_port_ranges')
- _update_singular_or_plural_property(instance, destination_port_ranges,
- 'destination_port_range', 'destination_port_ranges')
- # workaround for issue https://github.com/Azure/azure-rest-api-specs/issues/1591
- instance.source_address_prefix = instance.source_address_prefix or ''
- instance.destination_address_prefix = instance.destination_address_prefix or ''
+def update_express_route_peering(cmd, instance, peer_asn=None, primary_peer_address_prefix=None,
+ secondary_peer_address_prefix=None, vlan_id=None, shared_key=None,
+ advertised_public_prefixes=None, customer_asn=None,
+ routing_registry_name=None, route_filter=None, ip_version='IPv4'):
- if source_asgs == ['']:
- instance.source_application_security_groups = None
- elif source_asgs:
- instance.source_application_security_groups = source_asgs
+ # update settings common to all peering types
+ if peer_asn is not None:
+ instance.peer_asn = peer_asn
- if destination_asgs == ['']:
- instance.destination_application_security_groups = None
- elif destination_asgs:
- instance.destination_application_security_groups = destination_asgs
+ if vlan_id is not None:
+ instance.vlan_id = vlan_id
+
+ if shared_key is not None:
+ instance.shared_key = shared_key
- return instance
+ if ip_version == 'IPv6':
+ # update is the only way to add IPv6 peering options
+ instance.ipv6_peering_config = _create_or_update_ipv6_peering(cmd, instance.ipv6_peering_config,
+ primary_peer_address_prefix,
+ secondary_peer_address_prefix, route_filter,
+ advertised_public_prefixes, customer_asn,
+ routing_registry_name)
+ else:
+ # IPv4 Microsoft Peering (or non-Microsoft Peering)
+ if primary_peer_address_prefix is not None:
+ instance.primary_peer_address_prefix = primary_peer_address_prefix
+ if secondary_peer_address_prefix is not None:
+ instance.secondary_peer_address_prefix = secondary_peer_address_prefix
-def update_nsg_rule_2017_03_01(instance, protocol=None, source_address_prefix=None,
- destination_address_prefix=None, access=None, direction=None, description=None,
- source_port_range=None, destination_port_range=None, priority=None):
- # No client validation as server side returns pretty good errors
- instance.protocol = protocol if protocol is not None else instance.protocol
- instance.source_address_prefix = (source_address_prefix if source_address_prefix is not None
- else instance.source_address_prefix)
- instance.destination_address_prefix = destination_address_prefix \
- if destination_address_prefix is not None else instance.destination_address_prefix
- instance.access = access if access is not None else instance.access
- instance.direction = direction if direction is not None else instance.direction
- instance.description = description if description is not None else instance.description
- instance.source_port_range = source_port_range \
- if source_port_range is not None else instance.source_port_range
- instance.destination_port_range = destination_port_range \
- if destination_port_range is not None else instance.destination_port_range
- instance.priority = priority if priority is not None else instance.priority
- return instance
+ if route_filter is not None:
+ RouteFilter = cmd.get_models('RouteFilter')
+ instance.route_filter = RouteFilter(id=route_filter)
+ try:
+ if advertised_public_prefixes is not None:
+ instance.microsoft_peering_config.advertised_public_prefixes = advertised_public_prefixes
-update_nsg_rule_2017_06_01.__doc__ = SecurityRule.__doc__
-update_nsg_rule_2017_03_01.__doc__ = SecurityRule.__doc__
+ if customer_asn is not None:
+ instance.microsoft_peering_config.customer_asn = customer_asn
+ if routing_registry_name is not None:
+ instance.microsoft_peering_config.routing_registry_name = routing_registry_name
+ except AttributeError:
+ raise CLIError('--advertised-public-prefixes, --customer-asn and --routing-registry-name are only '
+ 'applicable for Microsoft Peering.')
+ return instance
# endregion
-# region Public IP commands
-def create_public_ip(resource_group_name, public_ip_address_name, location=None, tags=None,
- allocation_method=None, dns_name=None,
- idle_timeout=4, reverse_fqdn=None, version=None, sku=None, zone=None):
- client = _network_client_factory().public_ip_addresses
- if not allocation_method:
- allocation_method = IPAllocationMethod.static.value if (sku and sku.lower() == 'standard') \
+# region LoadBalancers
+def create_load_balancer(cmd, load_balancer_name, resource_group_name, location=None, tags=None,
+ backend_pool_name=None, frontend_ip_name='LoadBalancerFrontEnd',
+ private_ip_address=None, public_ip_address=None,
+ public_ip_address_allocation=None,
+ public_ip_dns_name=None, subnet=None, subnet_address_prefix='10.0.0.0/24',
+ virtual_network_name=None, vnet_address_prefix='10.0.0.0/16',
+ public_ip_address_type=None, subnet_type=None, validate=False,
+ no_wait=False, sku=None, frontend_ip_zone=None, public_ip_zone=None):
+ from azure.cli.core.util import random_string
+ from azure.cli.command_modules.network._template_builder import \
+ (ArmTemplateBuilder, build_load_balancer_resource, build_public_ip_resource,
+ build_vnet_resource)
+
+ DeploymentProperties = cmd.get_models('DeploymentProperties', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES)
+ IPAllocationMethod = cmd.get_models('IPAllocationMethod')
+
+ tags = tags or {}
+ public_ip_address = public_ip_address or 'PublicIP{}'.format(load_balancer_name)
+ backend_pool_name = backend_pool_name or '{}bepool'.format(load_balancer_name)
+ if not public_ip_address_allocation:
+ public_ip_address_allocation = IPAllocationMethod.static.value if (sku and sku.lower() == 'standard') \
else IPAllocationMethod.dynamic.value
- public_ip_args = {
- 'location': location,
- 'tags': tags,
- 'public_ip_allocation_method': allocation_method,
- 'idle_timeout_in_minutes': idle_timeout,
- 'dns_settings': None
- }
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-09-01'):
- public_ip_args['public_ip_address_version'] = version
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- public_ip_args['zones'] = zone
- if sku:
- public_ip_args['sku'] = {'name': sku}
- public_ip = PublicIPAddress(**public_ip_args)
+ # Build up the ARM template
+ master_template = ArmTemplateBuilder()
+ lb_dependencies = []
- if dns_name or reverse_fqdn:
- public_ip.dns_settings = PublicIPAddressDnsSettings(
- domain_name_label=dns_name,
- reverse_fqdn=reverse_fqdn)
- return client.create_or_update(resource_group_name, public_ip_address_name, public_ip)
+ public_ip_id = public_ip_address if is_valid_resource_id(public_ip_address) else None
+ subnet_id = subnet if is_valid_resource_id(subnet) else None
+ private_ip_allocation = IPAllocationMethod.static.value if private_ip_address \
+ else IPAllocationMethod.dynamic.value
+ network_id_template = resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name,
+ namespace='Microsoft.Network')
-def update_public_ip(instance, dns_name=None, allocation_method=None, version=None,
- idle_timeout=None, reverse_fqdn=None, tags=None, sku=None):
- if dns_name is not None or reverse_fqdn is not None:
- if instance.dns_settings:
- if dns_name is not None:
- instance.dns_settings.domain_name_label = dns_name
- if reverse_fqdn is not None:
- instance.dns_settings.reverse_fqdn = reverse_fqdn
- else:
- instance.dns_settings = PublicIPAddressDnsSettings(dns_name, None, reverse_fqdn)
- if allocation_method is not None:
- instance.public_ip_allocation_method = allocation_method
- if version is not None:
- instance.public_ip_address_version = version
- if idle_timeout is not None:
- instance.idle_timeout_in_minutes = idle_timeout
- if tags is not None:
- instance.tags = tags
- if sku is not None:
- instance.sku.name = sku
- return instance
+ if subnet_type == 'new':
+ lb_dependencies.append('Microsoft.Network/virtualNetworks/{}'.format(virtual_network_name))
+ vnet = build_vnet_resource(
+ cmd, virtual_network_name, location, tags, vnet_address_prefix, subnet,
+ subnet_address_prefix)
+ master_template.add_resource(vnet)
+ subnet_id = '{}/virtualNetworks/{}/subnets/{}'.format(
+ network_id_template, virtual_network_name, subnet)
+ if public_ip_address_type == 'new':
+ lb_dependencies.append('Microsoft.Network/publicIpAddresses/{}'.format(public_ip_address))
+ master_template.add_resource(build_public_ip_resource(cmd, public_ip_address, location,
+ tags,
+ public_ip_address_allocation,
+ public_ip_dns_name,
+ sku, public_ip_zone))
+ public_ip_id = '{}/publicIPAddresses/{}'.format(network_id_template,
+ public_ip_address)
-# endregion
+ load_balancer_resource = build_load_balancer_resource(
+ cmd, load_balancer_name, location, tags, backend_pool_name, frontend_ip_name,
+ public_ip_id, subnet_id, private_ip_address, private_ip_allocation, sku,
+ frontend_ip_zone)
+ load_balancer_resource['dependsOn'] = lb_dependencies
+ master_template.add_resource(load_balancer_resource)
+ master_template.add_output('loadBalancer', load_balancer_name, output_type='object')
-# region Vnet Peering commands
+ template = master_template.build()
-def create_vnet_peering(resource_group_name, virtual_network_name, virtual_network_peering_name,
- remote_virtual_network, allow_virtual_network_access=False,
- allow_forwarded_traffic=False, allow_gateway_transit=False,
- use_remote_gateways=False):
- peering = VirtualNetworkPeering(
- id=resource_id(
- subscription=get_subscription_id(),
- resource_group=resource_group_name,
- namespace='Microsoft.Network',
- type='virtualNetworks',
- name=virtual_network_name),
- name=virtual_network_peering_name,
- remote_virtual_network=SubResource(remote_virtual_network),
- allow_virtual_network_access=allow_virtual_network_access,
- allow_gateway_transit=allow_gateway_transit,
- allow_forwarded_traffic=allow_forwarded_traffic,
- use_remote_gateways=use_remote_gateways)
- ncf = _network_client_factory()
- return ncf.virtual_network_peerings.create_or_update(
- resource_group_name, virtual_network_name, virtual_network_peering_name, peering)
+ # deploy ARM template
+ deployment_name = 'lb_deploy_' + random_string(32)
+ client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).deployments
+ properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
+ if validate:
+ _log_pprint_template(template)
+ return client.validate(resource_group_name, deployment_name, properties)
+ return client.create_or_update(resource_group_name, deployment_name, properties, raw=no_wait)
-create_vnet_peering.__doc__ = VirtualNetworkPeering.__doc__
+def create_lb_inbound_nat_rule(
+ cmd, resource_group_name, load_balancer_name, item_name, protocol, frontend_port,
+ backend_port, frontend_ip_name=None, floating_ip="false", idle_timeout=None):
+ InboundNatRule = cmd.get_models('InboundNatRule')
+ ncf = network_client_factory(cmd.cli_ctx)
+ lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
+ if not frontend_ip_name:
+ frontend_ip_name = _get_default_name(lb, 'frontend_ip_configurations', '--frontend-ip-name')
+ frontend_ip = _get_property(lb.frontend_ip_configurations, frontend_ip_name) # pylint: disable=no-member
+ new_rule = InboundNatRule(
+ name=item_name, protocol=protocol,
+ frontend_port=frontend_port, backend_port=backend_port,
+ frontend_ip_configuration=frontend_ip,
+ enable_floating_ip=floating_ip == 'true',
+ idle_timeout_in_minutes=idle_timeout)
+ _upsert(lb, 'inbound_nat_rules', new_rule, 'name')
+ poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
+ return _get_property(poller.result().inbound_nat_rules, item_name)
-# endregion
-# region Vnet/Subnet commands
+def set_lb_inbound_nat_rule(
+ instance, parent, item_name, protocol=None, frontend_port=None,
+ frontend_ip_name=None, backend_port=None, floating_ip=None, idle_timeout=None):
+ if frontend_ip_name:
+ instance.frontend_ip_configuration = \
+ _get_property(parent.frontend_ip_configurations, frontend_ip_name)
-# pylint: disable=too-many-locals
-def create_vnet(resource_group_name, vnet_name, vnet_prefixes='10.0.0.0/16',
- subnet_name=None, subnet_prefix=None, dns_servers=None,
- location=None, tags=None, vm_protection=None, ddos_protection=None):
- client = _network_client_factory().virtual_networks
- tags = tags or {}
- vnet = VirtualNetwork(
- location=location, tags=tags,
- dhcp_options=DhcpOptions(dns_servers),
- address_space=AddressSpace(vnet_prefixes if isinstance(vnet_prefixes, list) else [vnet_prefixes]))
- if subnet_name:
- vnet.subnets = [Subnet(name=subnet_name, address_prefix=subnet_prefix)]
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-09-01'):
- vnet.enable_ddos_protection = ddos_protection
- vnet.enable_vm_protection = vm_protection
- return client.create_or_update(resource_group_name, vnet_name, vnet)
+ if floating_ip is not None:
+ instance.enable_floating_ip = floating_ip == 'true'
+ _set_param(instance, 'protocol', protocol)
+ _set_param(instance, 'frontend_port', frontend_port)
+ _set_param(instance, 'backend_port', backend_port)
+ _set_param(instance, 'idle_timeout_in_minutes', idle_timeout)
-def update_vnet(instance, vnet_prefixes=None, dns_servers=None, ddos_protection=None, vm_protection=None):
- # server side validation reports pretty good error message on invalid CIDR,
- # so we don't validate at client side
- if vnet_prefixes and instance.address_space:
- instance.address_space.address_prefixes = vnet_prefixes
- elif vnet_prefixes:
- instance.address_space = AddressSpace(vnet_prefixes)
+ return parent
- if dns_servers == ['']:
- instance.dhcp_options.dns_servers = None
- elif dns_servers and instance.dhcp_options:
- instance.dhcp_options.dns_servers = dns_servers
- elif dns_servers:
- instance.dhcp_options = DhcpOptions(dns_servers=dns_servers)
- if ddos_protection is not None:
- instance.enable_ddos_protection = ddos_protection
- if vm_protection is not None:
- instance.enable_vm_protection = vm_protection
- return instance
+def create_lb_inbound_nat_pool(
+ cmd, resource_group_name, load_balancer_name, item_name, protocol, frontend_port_range_start,
+ frontend_port_range_end, backend_port, frontend_ip_name=None):
+ InboundNatPool = cmd.get_models('InboundNatPool')
+ ncf = network_client_factory(cmd.cli_ctx)
+ lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
+ frontend_ip = _get_property(lb.frontend_ip_configurations, frontend_ip_name) \
+ if frontend_ip_name else None
+ new_pool = InboundNatPool(
+ name=item_name,
+ protocol=protocol,
+ frontend_ip_configuration=frontend_ip,
+ frontend_port_range_start=frontend_port_range_start,
+ frontend_port_range_end=frontend_port_range_end,
+ backend_port=backend_port)
+ _upsert(lb, 'inbound_nat_pools', new_pool, 'name')
+ poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
+ return _get_property(poller.result().inbound_nat_pools, item_name)
-def _set_route_table(ncf, resource_group_name, route_table, subnet):
- if route_table:
- is_id = is_valid_resource_id(route_table)
- rt = None
- if is_id:
- res_id = parse_resource_id(route_table)
- rt = ncf.route_tables.get(res_id['resource_group'], res_id['name'])
- else:
- rt = ncf.route_tables.get(resource_group_name, route_table)
- subnet.route_table = rt
- elif route_table == '':
- subnet.route_table = None
+def set_lb_inbound_nat_pool(
+ instance, parent, item_name, protocol=None,
+ frontend_port_range_start=None, frontend_port_range_end=None, backend_port=None,
+ frontend_ip_name=None):
+ _set_param(instance, 'protocol', protocol)
+ _set_param(instance, 'frontend_port_range_start', frontend_port_range_start)
+ _set_param(instance, 'frontend_port_range_end', frontend_port_range_end)
+ _set_param(instance, 'backend_port', backend_port)
+
+ if frontend_ip_name == '':
+ instance.frontend_ip_configuration = None
+ elif frontend_ip_name is not None:
+ instance.frontend_ip_configuration = \
+ _get_property(parent.frontend_ip_configurations, frontend_ip_name)
+ return parent
-def create_subnet(resource_group_name, virtual_network_name, subnet_name,
- address_prefix, network_security_group=None,
- route_table=None, service_endpoints=None):
- '''Create a virtual network (VNet) subnet.
- :param str address_prefix: address prefix in CIDR format.
- :param str network_security_group: Name or ID of network security
- group to associate with the subnet.
- '''
- ncf = _network_client_factory()
- subnet = Subnet(name=subnet_name, address_prefix=address_prefix)
- if network_security_group:
- subnet.network_security_group = NetworkSecurityGroup(id=network_security_group)
- _set_route_table(ncf, resource_group_name, route_table, subnet)
- if service_endpoints:
- ServiceEndpoint = get_sdk(ResourceType.MGMT_NETWORK, 'ServiceEndpointPropertiesFormat', mod='models')
- subnet.service_endpoints = []
- for service in service_endpoints:
- subnet.service_endpoints.append(ServiceEndpoint(service=service))
+def create_lb_frontend_ip_configuration(
+ cmd, resource_group_name, load_balancer_name, item_name, public_ip_address=None,
+ subnet=None, virtual_network_name=None, private_ip_address=None,
+ private_ip_address_allocation='dynamic', zone=None):
+ FrontendIPConfiguration, PublicIPAddress, Subnet = cmd.get_models(
+ 'FrontendIPConfiguration', 'PublicIPAddress', 'Subnet')
+ ncf = network_client_factory(cmd.cli_ctx)
+ lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
+ new_config = FrontendIPConfiguration(
+ name=item_name,
+ private_ip_address=private_ip_address,
+ private_ip_allocation_method=private_ip_address_allocation,
+ public_ip_address=PublicIPAddress(public_ip_address) if public_ip_address else None,
+ subnet=Subnet(subnet) if subnet else None)
- return ncf.subnets.create_or_update(resource_group_name, virtual_network_name,
- subnet_name, subnet)
+ if zone and cmd.supported_api_version(min_api='2017-06-01'):
+ new_config.zones = zone
+ _upsert(lb, 'frontend_ip_configurations', new_config, 'name')
+ poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
+ return _get_property(poller.result().frontend_ip_configurations, item_name)
-def update_subnet(instance, resource_group_name, address_prefix=None, network_security_group=None,
- route_table=None, service_endpoints=None):
- '''update existing virtual sub network
- :param str address_prefix: New address prefix in CIDR format, for example 10.0.0.0/24.
- :param str network_security_group: attach with existing network security group,
- both name or id are accepted. Use empty string "" to detach it.
- '''
- if address_prefix:
- instance.address_prefix = address_prefix
- if network_security_group:
- instance.network_security_group = NetworkSecurityGroup(id=network_security_group)
- elif network_security_group == '': # clear it
- instance.network_security_group = None
+def set_lb_frontend_ip_configuration(
+ cmd, instance, parent, item_name, private_ip_address=None,
+ private_ip_address_allocation=None, public_ip_address=None, subnet=None,
+ virtual_network_name=None):
+ PublicIPAddress, Subnet = cmd.get_models('PublicIPAddress', 'Subnet')
+ if private_ip_address == '':
+ instance.private_ip_allocation_method = private_ip_address_allocation
+ instance.private_ip_address = None
+ elif private_ip_address is not None:
+ instance.private_ip_allocation_method = private_ip_address_allocation
+ instance.private_ip_address = private_ip_address
- _set_route_table(_network_client_factory(), resource_group_name, route_table, instance)
+ if subnet == '':
+ instance.subnet = None
+ elif subnet is not None:
+ instance.subnet = Subnet(subnet)
- if service_endpoints == ['']:
- instance.service_endpoints = None
- elif service_endpoints:
- ServiceEndpoint = get_sdk(ResourceType.MGMT_NETWORK, 'ServiceEndpointPropertiesFormat', mod='models')
- instance.service_endpoints = []
- for service in service_endpoints:
- instance.service_endpoints.append(ServiceEndpoint(service=service))
+ if public_ip_address == '':
+ instance.public_ip_address = None
+ elif public_ip_address is not None:
+ instance.public_ip_address = PublicIPAddress(public_ip_address)
- return instance
+ return parent
-# endregion
+def create_lb_backend_address_pool(cmd, resource_group_name, load_balancer_name, item_name):
+ BackendAddressPool = cmd.get_models('BackendAddressPool')
+ ncf = network_client_factory(cmd.cli_ctx)
+ lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
+ new_pool = BackendAddressPool(name=item_name)
+ _upsert(lb, 'backend_address_pools', new_pool, 'name')
+ poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
+ return _get_property(poller.result().backend_address_pools, item_name)
-# pylint: disable=too-many-locals
-def create_vpn_connection(client, resource_group_name, connection_name, vnet_gateway1,
- location=None, tags=None, no_wait=False, validate=False,
- vnet_gateway2=None, express_route_circuit2=None, local_gateway2=None,
- authorization_key=None, enable_bgp=False, routing_weight=10,
- connection_type=None, shared_key=None,
- use_policy_based_traffic_selectors=False):
- """
- :param str vnet_gateway1: Name or ID of the source virtual network gateway.
- :param str vnet_gateway2: Name or ID of the destination virtual network gateway to connect to
- using a 'Vnet2Vnet' connection.
- :param str local_gateway2: Name or ID of the destination local network gateway to connect to
- using an 'IPSec' connection.
- :param str express_route_circuit2: Name or ID of the destination ExpressRoute to connect to
- using an 'ExpressRoute' connection.
- :param str authorization_key: The authorization key for the VPN connection.
- :param bool enable_bgp: Enable BGP for this VPN connection.
- :param bool no_wait: Do not wait for the long running operation to finish.
- :param bool validate: Display and validate the ARM template but do not create any resources.
- """
- from azure.cli.core.util import random_string
- from azure.cli.command_modules.network._template_builder import \
- ArmTemplateBuilder, build_vpn_connection_resource
- DeploymentProperties = get_sdk(ResourceType.MGMT_RESOURCE_RESOURCES,
- 'DeploymentProperties', mod='models')
- tags = tags or {}
+def create_lb_probe(cmd, resource_group_name, load_balancer_name, item_name, protocol, port,
+ path=None, interval=None, threshold=None):
+ Probe = cmd.get_models('Probe')
+ ncf = network_client_factory(cmd.cli_ctx)
+ lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
+ new_probe = Probe(
+ protocol=protocol, port=port, interval_in_seconds=interval, number_of_probes=threshold,
+ request_path=path, name=item_name)
+ _upsert(lb, 'probes', new_probe, 'name')
+ poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
+ return _get_property(poller.result().probes, item_name)
- # Build up the ARM template
- master_template = ArmTemplateBuilder()
- vpn_connection_resource = build_vpn_connection_resource(
- connection_name, location, tags, vnet_gateway1,
- vnet_gateway2 or local_gateway2 or express_route_circuit2,
- connection_type, authorization_key, enable_bgp, routing_weight, shared_key,
- use_policy_based_traffic_selectors)
- master_template.add_resource(vpn_connection_resource)
- master_template.add_output('resource', connection_name, output_type='object')
- template = master_template.build()
+def set_lb_probe(instance, parent, item_name, protocol=None, port=None,
+ path=None, interval=None, threshold=None):
+ _set_param(instance, 'protocol', protocol)
+ _set_param(instance, 'port', port)
+ _set_param(instance, 'request_path', path)
+ _set_param(instance, 'interval_in_seconds', interval)
+ _set_param(instance, 'number_of_probes', threshold)
- # deploy ARM template
- deployment_name = 'vpn_connection_deploy_' + random_string(32)
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).deployments
- properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
- if validate:
- _log_pprint_template(template)
- return client.validate(resource_group_name, deployment_name, properties)
+ return parent
- return client.create_or_update(
- resource_group_name, deployment_name, properties, raw=no_wait)
+def create_lb_rule(
+ cmd, resource_group_name, load_balancer_name, item_name,
+ protocol, frontend_port, backend_port, frontend_ip_name=None,
+ backend_address_pool_name=None, probe_name=None, load_distribution='default',
+ floating_ip='false', idle_timeout=None):
+ LoadBalancingRule = cmd.get_models('LoadBalancingRule')
+ ncf = network_client_factory(cmd.cli_ctx)
+ lb = ncf.load_balancers.get(resource_group_name, load_balancer_name)
+ if not frontend_ip_name:
+ frontend_ip_name = _get_default_name(lb, 'frontend_ip_configurations', '--frontend-ip-name')
+ if not backend_address_pool_name:
+ backend_address_pool_name = _get_default_name(lb, 'backend_address_pools', '--backend-pool-name')
+ new_rule = LoadBalancingRule(
+ name=item_name,
+ protocol=protocol,
+ frontend_port=frontend_port,
+ backend_port=backend_port,
+ frontend_ip_configuration=_get_property(lb.frontend_ip_configurations,
+ frontend_ip_name),
+ backend_address_pool=_get_property(lb.backend_address_pools,
+ backend_address_pool_name),
+ probe=_get_property(lb.probes, probe_name) if probe_name else None,
+ load_distribution=load_distribution,
+ enable_floating_ip=floating_ip == 'true',
+ idle_timeout_in_minutes=idle_timeout)
+ _upsert(lb, 'load_balancing_rules', new_rule, 'name')
+ poller = ncf.load_balancers.create_or_update(resource_group_name, load_balancer_name, lb)
+ return _get_property(poller.result().load_balancing_rules, item_name)
-def update_vpn_connection(instance, routing_weight=None, shared_key=None, tags=None,
- enable_bgp=None, use_policy_based_traffic_selectors=None):
- ncf = _network_client_factory()
- if routing_weight is not None:
- instance.routing_weight = routing_weight
+def set_lb_rule(
+ instance, parent, item_name, protocol=None, frontend_port=None,
+ frontend_ip_name=None, backend_port=None, backend_address_pool_name=None, probe_name=None,
+ load_distribution='default', floating_ip=None, idle_timeout=None):
+ _set_param(instance, 'protocol', protocol)
+ _set_param(instance, 'frontend_port', frontend_port)
+ _set_param(instance, 'backend_port', backend_port)
+ _set_param(instance, 'idle_timeout_in_minutes', idle_timeout)
+ _set_param(instance, 'load_distribution', load_distribution)
- if shared_key is not None:
- instance.shared_key = shared_key
+ if frontend_ip_name is not None:
+ instance.frontend_ip_configuration = \
+ _get_property(parent.frontend_ip_configurations, frontend_ip_name)
- if tags is not None:
- instance.tags = tags
+ if floating_ip is not None:
+ instance.enable_floating_ip = floating_ip == 'true'
- if enable_bgp is not None:
- instance.enable_bgp = enable_bgp
+ if backend_address_pool_name is not None:
+ instance.backend_address_pool = \
+ _get_property(parent.backend_address_pools, backend_address_pool_name)
- if use_policy_based_traffic_selectors is not None:
- instance.use_policy_based_traffic_selectors = use_policy_based_traffic_selectors
+ if probe_name == '':
+ instance.probe = None
+ elif probe_name is not None:
+ instance.probe = _get_property(parent.probes, probe_name)
- # TODO: Remove these when issue #1615 is fixed
- gateway1_id = parse_resource_id(instance.virtual_network_gateway1.id)
- instance.virtual_network_gateway1 = ncf.virtual_network_gateways.get(
- gateway1_id['resource_group'], gateway1_id['name'])
+ return parent
- if instance.virtual_network_gateway2:
- gateway2_id = parse_resource_id(instance.virtual_network_gateway2.id)
- instance.virtual_network_gateway2 = ncf.virtual_network_gateways.get(
- gateway2_id['resource_group'], gateway2_id['name'])
- if instance.local_network_gateway2:
- gateway2_id = parse_resource_id(instance.local_network_gateway2.id)
- instance.local_network_gateway2 = ncf.local_network_gateways.get(
- gateway2_id['resource_group'], gateway2_id['name'])
+# endregion
- return instance
+# region LocalGateways
+def _validate_bgp_peering(cmd, instance, asn, bgp_peering_address, peer_weight):
+ if any([asn, bgp_peering_address, peer_weight]):
+ if instance.bgp_settings is not None:
+ # update existing parameters selectively
+ if asn is not None:
+ instance.bgp_settings.asn = asn
+ if peer_weight is not None:
+ instance.bgp_settings.peer_weight = peer_weight
+ if bgp_peering_address is not None:
+ instance.bgp_settings.bgp_peering_address = bgp_peering_address
+ elif asn:
+ BgpSettings = cmd.get_models('BgpSettings')
+ instance.bgp_settings = BgpSettings(asn, bgp_peering_address, peer_weight)
+ else:
+ raise CLIError(
+ 'incorrect usage: --asn ASN [--peer-weight WEIGHT --bgp-peering-address IP]')
-def add_vpn_conn_ipsec_policy(resource_group_name, connection_name,
- sa_life_time_seconds, sa_data_size_kilobytes,
- ipsec_encryption, ipsec_integrity,
- ike_encryption, ike_integrity, dh_group, pfs_group, no_wait=False):
- ncf = _network_client_factory().virtual_network_gateway_connections
- conn = ncf.get(resource_group_name, connection_name)
- new_policy = IpsecPolicy(sa_life_time_seconds=sa_life_time_seconds,
- sa_data_size_kilobytes=sa_data_size_kilobytes,
- ipsec_encryption=ipsec_encryption,
- ipsec_integrity=ipsec_integrity,
- ike_encryption=ike_encryption,
- ike_integrity=ike_integrity,
- dh_group=dh_group,
- pfs_group=pfs_group)
- if conn.ipsec_policies:
- conn.ipsec_policies.append(new_policy)
- else:
- conn.ipsec_policies = [new_policy]
- return ncf.create_or_update(resource_group_name, connection_name, conn, raw=no_wait)
+
+def create_local_gateway(cmd, resource_group_name, local_network_gateway_name, gateway_ip_address,
+ location=None, tags=None, local_address_prefix=None, asn=None,
+ bgp_peering_address=None, peer_weight=None, no_wait=False):
+ AddressSpace, LocalNetworkGateway, BgpSettings = cmd.get_models(
+ 'AddressSpace', 'LocalNetworkGateway', 'BgpSettings')
+ client = network_client_factory(cmd.cli_ctx).local_network_gateways
+ local_gateway = LocalNetworkGateway(
+ local_network_address_space=AddressSpace(address_prefixes=(local_address_prefix or [])),
+ location=location, tags=tags, gateway_ip_address=gateway_ip_address)
+ if bgp_peering_address or asn or peer_weight:
+ local_gateway.bgp_settings = BgpSettings(asn=asn, bgp_peering_address=bgp_peering_address,
+ peer_weight=peer_weight)
+ return client.create_or_update(
+ resource_group_name, local_network_gateway_name, local_gateway, raw=no_wait)
-if supported_api_version(ResourceType.MGMT_NETWORK, '2017-03-01'):
- IpsecPolicy = get_sdk(ResourceType.MGMT_NETWORK, 'IpsecPolicy', mod='models')
- add_vpn_conn_ipsec_policy.__doc__ = IpsecPolicy.__doc__
+def update_local_gateway(cmd, instance, gateway_ip_address=None, local_address_prefix=None, asn=None,
+ bgp_peering_address=None, peer_weight=None, tags=None):
+ _validate_bgp_peering(cmd, instance, asn, bgp_peering_address, peer_weight)
+ if gateway_ip_address is not None:
+ instance.gateway_ip_address = gateway_ip_address
+ if local_address_prefix is not None:
+ instance.local_network_address_space.address_prefixes = local_address_prefix
+ if tags is not None:
+ instance.tags = tags
+ return instance
-def list_vpn_conn_ipsec_policies(resource_group_name, connection_name):
- ncf = _network_client_factory().virtual_network_gateway_connections
- return ncf.get(resource_group_name, connection_name).ipsec_policies
+# endregion
-def clear_vpn_conn_ipsec_policies(resource_group_name, connection_name, no_wait=False):
- ncf = _network_client_factory().virtual_network_gateway_connections
- conn = ncf.get(resource_group_name, connection_name)
- conn.ipsec_policies = None
- conn.use_policy_based_traffic_selectors = False
- if no_wait:
- return ncf.create_or_update(resource_group_name, connection_name, conn, raw=no_wait)
- from azure.cli.core.commands import LongRunningOperation
- poller = ncf.create_or_update(resource_group_name, connection_name, conn, raw=no_wait)
- return LongRunningOperation()(poller).ipsec_policies
+# region NetworkInterfaces (NIC)
+def create_nic(cmd, resource_group_name, network_interface_name, subnet, location=None, tags=None,
+ internal_dns_name_label=None, dns_servers=None, enable_ip_forwarding=False,
+ load_balancer_backend_address_pool_ids=None,
+ load_balancer_inbound_nat_rule_ids=None,
+ load_balancer_name=None, network_security_group=None,
+ private_ip_address=None, private_ip_address_version=None,
+ public_ip_address=None, virtual_network_name=None, enable_accelerated_networking=None,
+ application_security_groups=None):
+ client = network_client_factory(cmd.cli_ctx).network_interfaces
+ (NetworkInterface, NetworkInterfaceDnsSettings, NetworkInterfaceIPConfiguration, NetworkSecurityGroup,
+ PublicIPAddress, Subnet) = cmd.get_models(
+ 'NetworkInterface', 'NetworkInterfaceDnsSettings', 'NetworkInterfaceIPConfiguration',
+ 'NetworkSecurityGroup', 'PublicIPAddress', 'Subnet')
+ dns_settings = NetworkInterfaceDnsSettings(internal_dns_name_label=internal_dns_name_label,
+ dns_servers=dns_servers or [])
-def _validate_bgp_peering(instance, asn, bgp_peering_address, peer_weight):
- if any([asn, bgp_peering_address, peer_weight]):
- if instance.bgp_settings is not None:
- # update existing parameters selectively
- if asn is not None:
- instance.bgp_settings.asn = asn
- if peer_weight is not None:
- instance.bgp_settings.peer_weight = peer_weight
- if bgp_peering_address is not None:
- instance.bgp_settings.bgp_peering_address = bgp_peering_address
- elif asn:
- BgpSettings = get_sdk(ResourceType.MGMT_NETWORK, 'BgpSettings', mod='models')
- instance.bgp_settings = BgpSettings(asn, bgp_peering_address, peer_weight)
- else:
- raise CLIError(
- 'incorrect usage: --asn ASN [--peer-weight WEIGHT --bgp-peering-address IP]')
+ nic = NetworkInterface(location=location, tags=tags, enable_ip_forwarding=enable_ip_forwarding,
+ dns_settings=dns_settings)
+ if cmd.supported_api_version(min_api='2016-09-01'):
+ nic.enable_accelerated_networking = enable_accelerated_networking
-# region VNet Gateway Commands
+ if network_security_group:
+ nic.network_security_group = NetworkSecurityGroup(id=network_security_group)
+ ip_config_args = {
+ 'name': 'ipconfig1',
+ 'load_balancer_backend_address_pools': load_balancer_backend_address_pool_ids,
+ 'load_balancer_inbound_nat_rules': load_balancer_inbound_nat_rule_ids,
+ 'private_ip_allocation_method': 'Static' if private_ip_address else 'Dynamic',
+ 'private_ip_address': private_ip_address,
+ 'subnet': Subnet(id=subnet)
+ }
+ if cmd.supported_api_version(min_api='2016-09-01'):
+ ip_config_args['private_ip_address_version'] = private_ip_address_version
+ if cmd.supported_api_version(min_api='2017-09-01'):
+ ip_config_args['application_security_groups'] = application_security_groups
+ ip_config = NetworkInterfaceIPConfiguration(**ip_config_args)
-def create_vnet_gateway_root_cert(resource_group_name, gateway_name, public_cert_data, cert_name):
- ncf = _network_client_factory().virtual_network_gateways
- gateway = ncf.get(resource_group_name, gateway_name)
- if not gateway.vpn_client_configuration:
- raise CLIError("Must add address prefixes to gateway '{}' prior to adding a root cert."
- .format(gateway_name))
- config = gateway.vpn_client_configuration
+ if public_ip_address:
+ ip_config.public_ip_address = PublicIPAddress(id=public_ip_address)
+ nic.ip_configurations = [ip_config]
+ return client.create_or_update(resource_group_name, network_interface_name, nic)
- if config.vpn_client_root_certificates is None:
- config.vpn_client_root_certificates = []
- cert = VpnClientRootCertificate(name=cert_name, public_cert_data=public_cert_data)
- _upsert(config, 'vpn_client_root_certificates', cert, 'name')
- return ncf.create_or_update(resource_group_name, gateway_name, gateway)
+def update_nic(cmd, instance, network_security_group=None, enable_ip_forwarding=None,
+ internal_dns_name_label=None, dns_servers=None, enable_accelerated_networking=None):
+ if enable_ip_forwarding is not None:
+ instance.enable_ip_forwarding = enable_ip_forwarding
+ if network_security_group == '':
+ instance.network_security_group = None
+ elif network_security_group is not None:
+ NetworkSecurityGroup = cmd.get_models('NetworkSecurityGroup')
+ instance.network_security_group = NetworkSecurityGroup(network_security_group)
-def delete_vnet_gateway_root_cert(resource_group_name, gateway_name, cert_name):
- ncf = _network_client_factory().virtual_network_gateways
- gateway = ncf.get(resource_group_name, gateway_name)
- config = gateway.vpn_client_configuration
+ if internal_dns_name_label == '':
+ instance.dns_settings.internal_dns_name_label = None
+ elif internal_dns_name_label is not None:
+ instance.dns_settings.internal_dns_name_label = internal_dns_name_label
+ if dns_servers == ['']:
+ instance.dns_settings.dns_servers = None
+ elif dns_servers:
+ instance.dns_settings.dns_servers = dns_servers
- try:
- cert = next(c for c in config.vpn_client_root_certificates if c.name == cert_name)
- except (AttributeError, StopIteration):
- raise CLIError('Certificate "{}" not found in gateway "{}"'.format(cert_name, gateway_name))
- config.vpn_client_root_certificates.remove(cert)
+ if enable_accelerated_networking is not None:
+ instance.enable_accelerated_networking = enable_accelerated_networking
- return ncf.create_or_update(resource_group_name, gateway_name, gateway)
+ return instance
-def create_vnet_gateway_revoked_cert(resource_group_name, gateway_name, thumbprint, cert_name):
- config, gateway, ncf = _prep_cert_create(gateway_name, resource_group_name)
+def create_nic_ip_config(cmd, resource_group_name, network_interface_name, ip_config_name, subnet=None,
+ virtual_network_name=None, public_ip_address=None, load_balancer_name=None,
+ load_balancer_backend_address_pool_ids=None,
+ load_balancer_inbound_nat_rule_ids=None,
+ private_ip_address=None,
+ private_ip_address_allocation=None,
+ private_ip_address_version=None,
+ make_primary=False,
+ application_security_groups=None):
+ NetworkInterfaceIPConfiguration, PublicIPAddress, Subnet = cmd.get_models(
+ 'NetworkInterfaceIPConfiguration', 'PublicIPAddress', 'Subnet')
+ ncf = network_client_factory(cmd.cli_ctx)
+ nic = ncf.network_interfaces.get(resource_group_name, network_interface_name)
- cert = VpnClientRevokedCertificate(name=cert_name, thumbprint=thumbprint)
- _upsert(config, 'vpn_client_revoked_certificates', cert, 'name')
- return ncf.create_or_update(resource_group_name, gateway_name, gateway)
+ if cmd.supported_api_version(min_api='2016-09-01'):
+ IPVersion = cmd.get_models('IPVersion')
+ private_ip_address_version = private_ip_address_version or IPVersion.ipv4.value
+ if private_ip_address_version == IPVersion.ipv4.value and not subnet:
+ primary_config = next(x for x in nic.ip_configurations if x.primary)
+ subnet = primary_config.subnet.id
+ if make_primary:
+ for config in nic.ip_configurations:
+ config.primary = False
+ new_config_args = {
+ 'name': ip_config_name,
+ 'subnet': Subnet(subnet) if subnet else None,
+ 'public_ip_address': PublicIPAddress(public_ip_address) if public_ip_address else None,
+ 'load_balancer_backend_address_pools': load_balancer_backend_address_pool_ids,
+ 'load_balancer_inbound_nat_rules': load_balancer_inbound_nat_rule_ids,
+ 'private_ip_address': private_ip_address,
+ 'private_ip_allocation_method': private_ip_address_allocation,
+ }
+ if cmd.supported_api_version(min_api='2016-09-01'):
+ new_config_args['private_ip_address_version'] = private_ip_address_version
+ new_config_args['primary'] = make_primary
+ if cmd.supported_api_version(min_api='2017-09-01'):
+ new_config_args['application_security_groups'] = application_security_groups
+ new_config = NetworkInterfaceIPConfiguration(**new_config_args)
-def delete_vnet_gateway_revoked_cert(resource_group_name, gateway_name, cert_name):
- ncf = _network_client_factory().virtual_network_gateways
- gateway = ncf.get(resource_group_name, gateway_name)
- config = gateway.vpn_client_configuration
+ _upsert(nic, 'ip_configurations', new_config, 'name')
+ poller = ncf.network_interfaces.create_or_update(
+ resource_group_name, network_interface_name, nic)
+ return _get_property(poller.result().ip_configurations, ip_config_name)
- try:
- cert = next(c for c in config.vpn_client_revoked_certificates if c.name == cert_name)
- except (AttributeError, StopIteration):
- raise CLIError('Certificate "{}" not found in gateway "{}"'.format(cert_name, gateway_name))
- config.vpn_client_revoked_certificates.remove(cert)
- return ncf.create_or_update(resource_group_name, gateway_name, gateway)
+def set_nic_ip_config(cmd, instance, parent, ip_config_name, subnet=None,
+ virtual_network_name=None, public_ip_address=None, load_balancer_name=None,
+ load_balancer_backend_address_pool_ids=None,
+ load_balancer_inbound_nat_rule_ids=None,
+ private_ip_address=None, private_ip_address_allocation=None,
+ private_ip_address_version='ipv4', make_primary=False,
+ application_security_groups=None):
+ PublicIPAddress, Subnet = cmd.get_models('PublicIPAddress', 'Subnet')
+ if make_primary:
+ for config in parent.ip_configurations:
+ config.primary = False
+ instance.primary = True
-def _prep_cert_create(gateway_name, resource_group_name):
- ncf = _network_client_factory().virtual_network_gateways
- gateway = ncf.get(resource_group_name, gateway_name)
- if not gateway.vpn_client_configuration:
- gateway.vpn_client_configuration = VpnClientConfiguration()
- config = gateway.vpn_client_configuration
+ if private_ip_address == '':
+ instance.private_ip_address = None
+ instance.private_ip_allocation_method = 'dynamic'
+ if cmd.supported_api_version(min_api='2016-09-01'):
+ instance.private_ip_address_version = 'ipv4'
+ elif private_ip_address is not None:
+ instance.private_ip_address = private_ip_address
+ instance.private_ip_allocation_method = 'static'
+ if private_ip_address_version is not None:
+ instance.private_ip_address_version = private_ip_address_version
- if not config.vpn_client_address_pool or not config.vpn_client_address_pool.address_prefixes:
- raise CLIError('Address prefixes must be set on VPN gateways before adding'
- ' certificates. Please use "update" with --address-prefixes first.')
+ if subnet == '':
+ instance.subnet = None
+ elif subnet is not None:
+ instance.subnet = Subnet(subnet)
- if config.vpn_client_revoked_certificates is None:
- config.vpn_client_revoked_certificates = []
- if config.vpn_client_root_certificates is None:
- config.vpn_client_root_certificates = []
+ if public_ip_address == '':
+ instance.public_ip_address = None
+ elif public_ip_address is not None:
+ instance.public_ip_address = PublicIPAddress(public_ip_address)
- return config, gateway, ncf
+ if load_balancer_backend_address_pool_ids == '':
+ instance.load_balancer_backend_address_pools = None
+ elif load_balancer_backend_address_pool_ids is not None:
+ instance.load_balancer_backend_address_pools = load_balancer_backend_address_pool_ids
+ if load_balancer_inbound_nat_rule_ids == '':
+ instance.load_balancer_inbound_nat_rules = None
+ elif load_balancer_inbound_nat_rule_ids is not None:
+ instance.load_balancer_inbound_nat_rules = load_balancer_inbound_nat_rule_ids
-def create_vnet_gateway(resource_group_name, virtual_network_gateway_name, public_ip_address,
- virtual_network, location=None, tags=None,
- no_wait=False, gateway_type=VirtualNetworkGatewayType.vpn.value,
- sku=VirtualNetworkGatewaySkuName.basic.value,
- vpn_type=VpnType.route_based.value,
- asn=None, bgp_peering_address=None, peer_weight=None,
- address_prefixes=None, radius_server=None, radius_secret=None, client_protocol=None):
- VirtualNetworkGateway, BgpSettings, VirtualNetworkGatewayIPConfiguration, VirtualNetworkGatewaySku = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'VirtualNetworkGateway',
- 'BgpSettings',
- 'VirtualNetworkGatewayIPConfiguration',
- 'VirtualNetworkGatewaySku',
- mod='models')
-
- client = _network_client_factory().virtual_network_gateways
- subnet = virtual_network + '/subnets/GatewaySubnet'
- active_active = len(public_ip_address) == 2
- vnet_gateway = VirtualNetworkGateway(
- gateway_type=gateway_type, vpn_type=vpn_type, location=location, tags=tags,
- sku=VirtualNetworkGatewaySku(name=sku, tier=sku), active_active=active_active,
- ip_configurations=[])
- for i, public_ip in enumerate(public_ip_address):
- ip_configuration = VirtualNetworkGatewayIPConfiguration(
- subnet=SubResource(subnet),
- public_ip_address=SubResource(public_ip),
- private_ip_allocation_method='Dynamic',
- name='vnetGatewayConfig{}'.format(i)
- )
- vnet_gateway.ip_configurations.append(ip_configuration)
- if asn or bgp_peering_address or peer_weight:
- vnet_gateway.enable_bgp = True
- vnet_gateway.bgp_settings = BgpSettings(asn, bgp_peering_address, peer_weight)
+ if application_security_groups == ['']:
+ instance.application_security_groups = None
+ elif application_security_groups:
+ instance.application_security_groups = application_security_groups
- if any((address_prefixes, radius_secret, radius_server, client_protocol)):
- vnet_gateway.vpn_client_configuration = VpnClientConfiguration()
- vnet_gateway.vpn_client_configuration.vpn_client_address_pool = AddressSpace()
- vnet_gateway.vpn_client_configuration.vpn_client_address_pool.address_prefixes = address_prefixes
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01'):
- vnet_gateway.vpn_client_configuration.vpn_client_protocols = client_protocol
- vnet_gateway.vpn_client_configuration.radius_server_address = radius_server
- vnet_gateway.vpn_client_configuration.radius_server_secret = radius_secret
+ return parent
- return client.create_or_update(
- resource_group_name, virtual_network_gateway_name, vnet_gateway, raw=no_wait)
+def _get_nic_ip_config(nic, name):
+ if nic.ip_configurations:
+ ip_config = next(
+ (x for x in nic.ip_configurations if x.name.lower() == name.lower()), None)
+ else:
+ ip_config = None
+ if not ip_config:
+ raise CLIError('IP configuration {} not found.'.format(name))
+ return ip_config
-def update_vnet_gateway(instance, sku=None, vpn_type=None, tags=None,
- public_ip_address=None, gateway_type=None, enable_bgp=None,
- asn=None, bgp_peering_address=None, peer_weight=None, virtual_network=None,
- address_prefixes=None, radius_server=None, radius_secret=None, client_protocol=None):
- VirtualNetworkGatewayIPConfiguration = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'VirtualNetworkGatewayIPConfiguration', mod='models')
- if any((address_prefixes, radius_server, radius_secret, client_protocol)) and not instance.vpn_client_configuration:
- instance.vpn_client_configuration = VpnClientConfiguration()
+def add_nic_ip_config_address_pool(
+ cmd, resource_group_name, network_interface_name, ip_config_name, backend_address_pool,
+ load_balancer_name=None):
+ BackendAddressPool = cmd.get_models('BackendAddressPool')
+ client = network_client_factory(cmd.cli_ctx).network_interfaces
+ nic = client.get(resource_group_name, network_interface_name)
+ ip_config = _get_nic_ip_config(nic, ip_config_name)
+ _upsert(ip_config, 'load_balancer_backend_address_pools',
+ BackendAddressPool(id=backend_address_pool),
+ 'id')
+ poller = client.create_or_update(resource_group_name, network_interface_name, nic)
+ return _get_property(poller.result().ip_configurations, ip_config_name)
- if address_prefixes is not None:
- if not instance.vpn_client_configuration.vpn_client_address_pool:
- instance.vpn_client_configuration.vpn_client_address_pool = AddressSpace()
- if not instance.vpn_client_configuration.vpn_client_address_pool.address_prefixes:
- instance.vpn_client_configuration.vpn_client_address_pool.address_prefixes = []
- instance.vpn_client_configuration.vpn_client_address_pool.address_prefixes = address_prefixes
- if client_protocol is not None:
- instance.vpn_client_configuration.vpn_client_protocols = client_protocol
+def remove_nic_ip_config_address_pool(
+ cmd, resource_group_name, network_interface_name, ip_config_name, backend_address_pool,
+ load_balancer_name=None):
+ client = network_client_factory(cmd.cli_ctx).network_interfaces
+ nic = client.get(resource_group_name, network_interface_name)
+ ip_config = _get_nic_ip_config(nic, ip_config_name)
+ keep_items = [x for x in ip_config.load_balancer_backend_address_pools or [] if x.id != backend_address_pool]
+ ip_config.load_balancer_backend_address_pools = keep_items
+ poller = client.create_or_update(resource_group_name, network_interface_name, nic)
+ return _get_property(poller.result().ip_configurations, ip_config_name)
- if radius_server is not None:
- instance.vpn_client_configuration.radius_server_address = radius_server
- if radius_secret is not None:
- instance.vpn_client_configuration.radius_server_secret = radius_secret
+def add_nic_ip_config_inbound_nat_rule(
+ cmd, resource_group_name, network_interface_name, ip_config_name, inbound_nat_rule,
+ load_balancer_name=None):
+ InboundNatRule = cmd.get_models('InboundNatRule')
+ client = network_client_factory(cmd.cli_ctx).network_interfaces
+ nic = client.get(resource_group_name, network_interface_name)
+ ip_config = _get_nic_ip_config(nic, ip_config_name)
+ _upsert(ip_config, 'load_balancer_inbound_nat_rules',
+ InboundNatRule(id=inbound_nat_rule),
+ 'id')
+ poller = client.create_or_update(resource_group_name, network_interface_name, nic)
+ return _get_property(poller.result().ip_configurations, ip_config_name)
- if sku is not None:
- instance.sku.name = sku
- instance.sku.tier = sku
- if vpn_type is not None:
- instance.vpn_type = vpn_type
+def remove_nic_ip_config_inbound_nat_rule(
+ cmd, resource_group_name, network_interface_name, ip_config_name, inbound_nat_rule,
+ load_balancer_name=None):
+ client = network_client_factory(cmd.cli_ctx).network_interfaces
+ nic = client.get(resource_group_name, network_interface_name)
+ ip_config = _get_nic_ip_config(nic, ip_config_name)
+ keep_items = \
+ [x for x in ip_config.load_balancer_inbound_nat_rules if x.id != inbound_nat_rule]
+ ip_config.load_balancer_inbound_nat_rules = keep_items
+ poller = client.create_or_update(resource_group_name, network_interface_name, nic)
+ return _get_property(poller.result().ip_configurations, ip_config_name)
- if tags is not None:
- instance.tags = tags
- subnet_id = '{}/subnets/GatewaySubnet'.format(virtual_network) if virtual_network else \
- instance.ip_configurations[0].subnet.id
- if virtual_network is not None:
- for config in instance.ip_configurations:
- config.subnet.id = subnet_id
+# endregion
- if public_ip_address is not None:
- instance.ip_configurations = []
- for i, public_ip in enumerate(public_ip_address):
- ip_configuration = VirtualNetworkGatewayIPConfiguration(
- SubResource(subnet_id),
- SubResource(public_ip),
- private_ip_allocation_method='Dynamic', name='vnetGatewayConfig{}'.format(i))
- instance.ip_configurations.append(ip_configuration)
- # Update active-active/active-standby status
- active_active = len(public_ip_address) == 2
- if instance.active_active and not active_active:
- logger.info('Placing gateway in active-standby mode.')
- elif not instance.active_active and active_active:
- logger.info('Placing gateway in active-active mode.')
- instance.active_active = active_active
+# region NetworkSecurityGroups
+def create_nsg(cmd, resource_group_name, network_security_group_name, location=None, tags=None):
+ client = network_client_factory(cmd.cli_ctx).network_security_groups
+ NetworkSecurityGroup = cmd.get_models('NetworkSecurityGroup')
+ nsg = NetworkSecurityGroup(location=location, tags=tags)
+ return client.create_or_update(resource_group_name, network_security_group_name, nsg)
- if gateway_type is not None:
- instance.gateway_type = gateway_type
- if enable_bgp is not None:
- instance.enable_bgp = enable_bgp.lower() == 'true'
+def _create_singular_or_plural_property(kwargs, val, singular_name, plural_name):
- _validate_bgp_peering(instance, asn, bgp_peering_address, peer_weight)
+ if not val:
+ return
+ if not isinstance(val, list):
+ val = [val]
+ if len(val) > 1:
+ kwargs[plural_name] = val
+ kwargs[singular_name] = None
+ else:
+ kwargs[singular_name] = val[0]
+ kwargs[plural_name] = None
- return instance
-# region VPN CLIENT WORKAROUND
+def _handle_asg_property(kwargs, key, asgs):
+ prefix = key.split('_', 1)[0] + '_'
+ if asgs:
+ kwargs[key] = asgs
+ if kwargs[prefix + 'address_prefix'].is_default:
+ kwargs[prefix + 'address_prefix'] = ''
-# This is needed due to NRP doing exactly the opposite of what the specification says they should do.
-# pylint: disable=line-too-long, protected-access, mixed-line-endings
-def _poll(self, update_cmd):
- from msrestazure.azure_operation import finished, failed, BadResponse, OperationFailed
- initial_url = self._response.request.url
+def create_nsg_rule_2017_06_01(cmd, resource_group_name, network_security_group_name, security_rule_name,
+ priority, description=None, protocol=None, access=None, direction=None,
+ source_port_ranges=DefaultStr('*'), source_address_prefixes=DefaultStr('*'),
+ destination_port_ranges=DefaultInt(80), destination_address_prefixes=DefaultStr('*'),
+ source_asgs=None, destination_asgs=None):
+ kwargs = {
+ 'protocol': protocol,
+ 'direction': direction,
+ 'description': description,
+ 'priority': priority,
+ 'access': access,
+ 'name': security_rule_name
+ }
+ _create_singular_or_plural_property(kwargs, source_address_prefixes,
+ 'source_address_prefix', 'source_address_prefixes')
+ _create_singular_or_plural_property(kwargs, destination_address_prefixes,
+ 'destination_address_prefix', 'destination_address_prefixes')
+ _create_singular_or_plural_property(kwargs, source_port_ranges,
+ 'source_port_range', 'source_port_ranges')
+ _create_singular_or_plural_property(kwargs, destination_port_ranges,
+ 'destination_port_range', 'destination_port_ranges')
- while not finished(self.status()):
- self._delay()
- headers = self._polling_cookie()
+ # workaround for issue https://github.com/Azure/azure-rest-api-specs/issues/1591
+ kwargs['source_address_prefix'] = kwargs['source_address_prefix'] or ''
+ kwargs['destination_address_prefix'] = kwargs['destination_address_prefix'] or ''
- if self._operation.location_url:
- self._response = update_cmd(
- self._operation.location_url, headers)
- self._operation.set_async_url_if_present(self._response)
- self._operation.get_status_from_location(
- self._response)
- elif self._operation.method == "PUT":
- self._response = update_cmd(initial_url, headers)
- self._operation.set_async_url_if_present(self._response)
- self._operation.get_status_from_resource(
- self._response)
- else:
- raise BadResponse(
- 'Location header is missing from long running operation.')
+ if cmd.supported_api_version(min_api='2017-09-01'):
+ _handle_asg_property(kwargs, 'source_application_security_groups', source_asgs)
+ _handle_asg_property(kwargs, 'destination_application_security_groups', destination_asgs)
- if failed(self._operation.status):
- raise OperationFailed("Operation failed or cancelled")
- elif self._operation.should_do_final_get():
- self._response = update_cmd(initial_url)
- self._operation.get_status_from_resource(
- self._response)
+ SecurityRule = cmd.get_models('SecurityRule')
+ settings = SecurityRule(**kwargs)
+ ncf = network_client_factory(cmd.cli_ctx)
+ return ncf.security_rules.create_or_update(
+ resource_group_name, network_security_group_name, security_rule_name, settings)
-# This is needed due to a bug in autorest code generation. It adds 202 as a valid status code.
-def _vpn_client_core(self, url, resource_group_name, virtual_network_gateway_name, parameters, custom_headers=None, raw=False, **operation_config):
- import uuid
- from msrest.pipeline import ClientRawResponse
- from msrestazure.azure_operation import AzureOperationPoller
- path_format_arguments = {
- 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
- 'virtualNetworkGatewayName': self._serialize.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'),
- 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
- }
- url = self._client.format_url(url, **path_format_arguments)
+def create_nsg_rule_2017_03_01(cmd, resource_group_name, network_security_group_name, security_rule_name,
+ priority, description=None, protocol=None, access=None, direction=None,
+ source_port_range='*', source_address_prefix='*',
+ destination_port_range=80, destination_address_prefix='*'):
+ SecurityRule = cmd.get_models('SecurityRule')
+ settings = SecurityRule(protocol=protocol, source_address_prefix=source_address_prefix,
+ destination_address_prefix=destination_address_prefix, access=access,
+ direction=direction,
+ description=description, source_port_range=source_port_range,
+ destination_port_range=destination_port_range, priority=priority,
+ name=security_rule_name)
- # Construct parameters
- query_parameters = {}
- query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+ ncf = network_client_factory(cmd.cli_ctx)
+ return ncf.security_rules.create_or_update(
+ resource_group_name, network_security_group_name, security_rule_name, settings)
- # Construct headers
- header_parameters = {}
- header_parameters['Content-Type'] = 'application/json; charset=utf-8'
- if self.config.generate_client_request_id:
- header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
- if custom_headers:
- header_parameters.update(custom_headers)
- if self.config.accept_language is not None:
- header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
- # Construct body
- body_content = self._serialize.body(parameters, 'VpnClientParameters')
+def _update_singular_or_plural_property(instance, val, singular_name, plural_name):
- # Construct and send request
- def long_running_send():
+ if val is None:
+ return
+ if not isinstance(val, list):
+ val = [val]
+ if len(val) > 1:
+ setattr(instance, plural_name, val)
+ setattr(instance, singular_name, None)
+ else:
+ setattr(instance, plural_name, None)
+ setattr(instance, singular_name, val[0])
- request = self._client.post(url, query_parameters)
- return self._client.send(
- request, header_parameters, body_content, **operation_config)
- def get_long_running_status(status_link, headers=None):
+def update_nsg_rule_2017_06_01(instance, protocol=None, source_address_prefixes=None,
+ destination_address_prefixes=None, access=None, direction=None, description=None,
+ source_port_ranges=None, destination_port_ranges=None, priority=None,
+ source_asgs=None, destination_asgs=None):
+ # No client validation as server side returns pretty good errors
+ instance.protocol = protocol if protocol is not None else instance.protocol
+ instance.access = access if access is not None else instance.access
+ instance.direction = direction if direction is not None else instance.direction
+ instance.description = description if description is not None else instance.description
+ instance.priority = priority if priority is not None else instance.priority
- request = self._client.get(status_link)
- if headers:
- request.headers.update(headers)
- return self._client.send(
- request, header_parameters, **operation_config)
+ _update_singular_or_plural_property(instance, source_address_prefixes,
+ 'source_address_prefix', 'source_address_prefixes')
+ _update_singular_or_plural_property(instance, destination_address_prefixes,
+ 'destination_address_prefix', 'destination_address_prefixes')
+ _update_singular_or_plural_property(instance, source_port_ranges,
+ 'source_port_range', 'source_port_ranges')
+ _update_singular_or_plural_property(instance, destination_port_ranges,
+ 'destination_port_range', 'destination_port_ranges')
- def get_long_running_output(response):
+ # workaround for issue https://github.com/Azure/azure-rest-api-specs/issues/1591
+ instance.source_address_prefix = instance.source_address_prefix or ''
+ instance.destination_address_prefix = instance.destination_address_prefix or ''
- if response.status_code not in [200, 202]:
- exp = CloudError(response)
- exp.request_id = response.headers.get('x-ms-request-id')
- raise exp
+ if source_asgs == ['']:
+ instance.source_application_security_groups = None
+ elif source_asgs:
+ instance.source_application_security_groups = source_asgs
- deserialized = None
+ if destination_asgs == ['']:
+ instance.destination_application_security_groups = None
+ elif destination_asgs:
+ instance.destination_application_security_groups = destination_asgs
- if response.status_code in [200, 202]:
- deserialized = self._deserialize('str', response)
+ return instance
- if raw:
- client_raw_response = ClientRawResponse(deserialized, response)
- return client_raw_response
- return deserialized
+def update_nsg_rule_2017_03_01(instance, protocol=None, source_address_prefix=None,
+ destination_address_prefix=None, access=None, direction=None, description=None,
+ source_port_range=None, destination_port_range=None, priority=None):
+ # No client validation as server side returns pretty good errors
+ instance.protocol = protocol if protocol is not None else instance.protocol
+ instance.source_address_prefix = (source_address_prefix if source_address_prefix is not None
+ else instance.source_address_prefix)
+ instance.destination_address_prefix = destination_address_prefix \
+ if destination_address_prefix is not None else instance.destination_address_prefix
+ instance.access = access if access is not None else instance.access
+ instance.direction = direction if direction is not None else instance.direction
+ instance.description = description if description is not None else instance.description
+ instance.source_port_range = source_port_range \
+ if source_port_range is not None else instance.source_port_range
+ instance.destination_port_range = destination_port_range \
+ if destination_port_range is not None else instance.destination_port_range
+ instance.priority = priority if priority is not None else instance.priority
+ return instance
+# endregion
- if raw:
- response = long_running_send()
- return get_long_running_output(response)
- long_running_operation_timeout = operation_config.get(
- 'long_running_operation_timeout',
- self.config.long_running_operation_timeout)
- return AzureOperationPoller(
- long_running_send, get_long_running_output,
- get_long_running_status, long_running_operation_timeout)
+# region NetworkWatchers
+def _create_network_watchers(cmd, client, resource_group_name, locations, tags):
+ if resource_group_name is None:
+ raise CLIError("usage error: '--resource-group' required when enabling new regions")
+ NetworkWatcher = cmd.get_models('NetworkWatcher')
+ for location in locations:
+ client.create_or_update(
+ resource_group_name, '{}-watcher'.format(location),
+ NetworkWatcher(location=location, tags=tags))
-@mock.patch('msrestazure.azure_operation.AzureOperationPoller._poll', _poll)
-def _generate_vpn_profile(
- self, resource_group_name, virtual_network_gateway_name, parameters, custom_headers=None, raw=False, **operation_config):
- # Construct URL
- url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile'
- return _vpn_client_core(self, url, resource_group_name, virtual_network_gateway_name, parameters, custom_headers, raw, **operation_config)
+def _update_network_watchers(cmd, client, watchers, tags):
+ NetworkWatcher = cmd.get_models('NetworkWatcher')
+ for watcher in watchers:
+ id_parts = parse_resource_id(watcher.id)
+ watcher_rg = id_parts['resource_group']
+ watcher_name = id_parts['name']
+ watcher_tags = watcher.tags if tags is None else tags
+ client.create_or_update(
+ watcher_rg, watcher_name,
+ NetworkWatcher(location=watcher.location, tags=watcher_tags))
-@mock.patch('msrestazure.azure_operation.AzureOperationPoller._poll', _poll)
-def _generatevpnclientpackage(
- self, resource_group_name, virtual_network_gateway_name, parameters, custom_headers=None, raw=False, **operation_config):
- # Construct URL
- url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnclientpackage'
- return _vpn_client_core(self, url, resource_group_name, virtual_network_gateway_name, parameters, custom_headers, raw, **operation_config)
-# endregion VPN CLIENT WORKAROUND`
+def _delete_network_watchers(cmd, client, watchers):
+ for watcher in watchers:
+ from azure.cli.core.commands import LongRunningOperation
+ id_parts = parse_resource_id(watcher.id)
+ watcher_rg = id_parts['resource_group']
+ watcher_name = id_parts['name']
+ logger.warning(
+ "Disabling Network Watcher for region '%s' by deleting resource '%s'",
+ watcher.location, watcher.id)
+ LongRunningOperation(cmd.cli_ctx)(client.delete(watcher_rg, watcher_name))
-def generate_vpn_client(client, resource_group_name, virtual_network_gateway_name, processor_architecture=None,
- authentication_method=None, radius_server_auth_certificate=None, client_root_certificates=None,
- use_legacy=False):
- params = get_sdk(ResourceType.MGMT_NETWORK, 'VpnClientParameters', mod='models')(
- processor_architecture=processor_architecture
- )
+def configure_network_watcher(cmd, client, locations, resource_group_name=None, enabled=None, tags=None):
+ watcher_list = list(client.list_all())
+ existing_watchers = [w for w in watcher_list if w.location in locations]
+ nonenabled_regions = list(set(locations) - set(l.location for l in existing_watchers))
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-06-01') and not use_legacy:
- params.authentication_method = authentication_method
- params.radius_server_auth_certificate = radius_server_auth_certificate
- params.client_root_certificates = client_root_certificates
- return _generate_vpn_profile(client, resource_group_name, virtual_network_gateway_name, params)
+ if enabled is None:
+ if resource_group_name is not None:
+ logger.warning(
+ "Resource group '%s' is only used when enabling new regions and will be ignored.",
+ resource_group_name)
+ for location in nonenabled_regions:
+ logger.warning(
+ "Region '%s' is not enabled for Network Watcher and will be ignored.", location)
+ _update_network_watchers(cmd, client, existing_watchers, tags)
- # legacy implementation
- return _generatevpnclientpackage(client, resource_group_name, virtual_network_gateway_name, params)
+ elif enabled:
+ _create_network_watchers(cmd, client, resource_group_name, nonenabled_regions, tags)
+ _update_network_watchers(cmd, client, existing_watchers, tags)
-# endregion
+ else:
+ if tags is not None:
+ raise CLIError("usage error: '--tags' cannot be used when disabling regions")
+ _delete_network_watchers(cmd, client, existing_watchers)
+ return client.list_all()
-# region Express Route commands
-def create_express_route(circuit_name, resource_group_name, bandwidth_in_mbps, peering_location,
- service_provider_name, location=None, tags=None, no_wait=False,
- sku_family=ExpressRouteCircuitSkuFamily.metered_data.value,
- sku_tier=ExpressRouteCircuitSkuTier.standard.value):
- ExpressRouteCircuit, ExpressRouteCircuitSku, ExpressRouteCircuitServiceProviderProperties = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ExpressRouteCircuit',
- 'ExpressRouteCircuitSku',
- 'ExpressRouteCircuitServiceProviderProperties',
- mod='models')
- client = _network_client_factory().express_route_circuits
- sku_name = '{}_{}'.format(sku_tier, sku_family)
- circuit = ExpressRouteCircuit(
- location=location, tags=tags,
- service_provider_properties=ExpressRouteCircuitServiceProviderProperties(
- service_provider_name=service_provider_name,
- peering_location=peering_location,
- bandwidth_in_mbps=bandwidth_in_mbps),
- sku=ExpressRouteCircuitSku(sku_name, sku_tier, sku_family)
- )
- return client.create_or_update(resource_group_name, circuit_name, circuit, raw=no_wait)
+def check_nw_connectivity(cmd, client, watcher_rg, watcher_name, source_resource, source_port=None,
+ dest_resource=None, dest_port=None, dest_address=None,
+ resource_group_name=None):
+ ConnectivitySource, ConnectivityDestination = cmd.get_models('ConnectivitySource', 'ConnectivityDestination')
+ source = ConnectivitySource(resource_id=source_resource, port=source_port)
+ dest = ConnectivityDestination(resource_id=dest_resource, address=dest_address, port=dest_port)
+ return client.check_connectivity(watcher_rg, watcher_name, source, dest)
-def update_express_route(instance, bandwidth_in_mbps=None, peering_location=None,
- service_provider_name=None, sku_family=None, sku_tier=None, tags=None):
- if bandwidth_in_mbps is not None:
- instance.service_provider_properties.bandwith_in_mbps = bandwidth_in_mbps
+def check_nw_ip_flow(cmd, client, vm, watcher_rg, watcher_name, direction, protocol, local, remote,
+ resource_group_name=None, nic=None, location=None):
+ VerificationIPFlowParameters = cmd.get_models('VerificationIPFlowParameters')
- if peering_location is not None:
- instance.service_provider_properties.peering_location = peering_location
+ local_ip_address, local_port = local.split(':')
+ remote_ip_address, remote_port = remote.split(':')
+ if not is_valid_resource_id(vm):
+ vm = resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name,
+ namespace='Microsoft.Compute', type='virtualMachines', name=vm)
- if service_provider_name is not None:
- instance.service_provider_properties.service_provider_name = service_provider_name
+ if nic and not is_valid_resource_id(nic):
+ nic = resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name,
+ namespace='Microsoft.Network', type='networkInterfaces', name=nic)
- if sku_family is not None:
- instance.sku.family = sku_family
+ return client.verify_ip_flow(
+ watcher_rg, watcher_name,
+ VerificationIPFlowParameters(
+ target_resource_id=vm, direction=direction, protocol=protocol, local_port=local_port,
+ remote_port=remote_port, local_ip_address=local_ip_address,
+ remote_ip_address=remote_ip_address, target_nic_resource_id=nic))
- if sku_tier is not None:
- instance.sku.tier = sku_tier
- if tags is not None:
- instance.tags = tags
+def show_nw_next_hop(cmd, client, resource_group_name, vm, watcher_rg, watcher_name,
+ source_ip, dest_ip, nic=None, location=None):
+ NextHopParameters = cmd.get_models('NextHopParameters')
- return instance
+ if not is_valid_resource_id(vm):
+ vm = resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name,
+ namespace='Microsoft.Compute', type='virtualMachines', name=vm)
+ if nic and not is_valid_resource_id(nic):
+ nic = resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name,
+ namespace='Microsoft.Network', type='networkInterfaces', name=nic)
-def _validate_ipv6_address_prefixes(prefixes):
- from ipaddress import ip_network, IPv6Network
- prefixes = prefixes if isinstance(prefixes, list) else [prefixes]
- version = None
- for prefix in prefixes:
- try:
- network = ip_network(prefix)
- if version is None:
- version = type(network)
- else:
- if not isinstance(network, version):
- raise CLIError("usage error: '{}' incompatible mix of IPv4 and IPv6 address prefixes.".format(prefixes))
- except ValueError:
- raise CLIError("usage error: prefix '{}' is not recognized as an IPv4 or IPv6 address prefix.".format(prefix))
- return version == IPv6Network
+ return client.get_next_hop(
+ watcher_rg, watcher_name, NextHopParameters(target_resource_id=vm,
+ source_ip_address=source_ip,
+ destination_ip_address=dest_ip,
+ target_nic_resource_id=nic))
-def create_express_route_peering(
- client, resource_group_name, circuit_name, peering_type, peer_asn, vlan_id,
- primary_peer_address_prefix, secondary_peer_address_prefix, shared_key=None,
- advertised_public_prefixes=None, customer_asn=None, routing_registry_name=None,
- route_filter=None):
- """
- :param str peer_asn: Autonomous system number of the customer/connectivity provider.
- :param str vlan_id: Identifier used to identify the customer.
- :param str peering_type: BGP peering type for the circuit.
- :param str primary_peer_address_prefix: /30 subnet used to configure IP
- addresses for primary interface.
- :param str secondary_peer_address_prefix: /30 subnet used to configure IP addresses
- for secondary interface.
- :param str shared_key: Key for generating an MD5 for the BGP session.
- :param str advertised_public_prefixes: List of prefixes to be advertised through
- the BGP peering. Required to set up Microsoft Peering.
- :param str customer_asn: Autonomous system number of the customer.
- :param str routing_registry_name: Internet Routing Registry / Regional Internet Registry
- """
- (ExpressRouteCircuitPeering, ExpressRouteCircuitPeeringConfig, ExpressRouteCircuitPeeringType,
- RouteFilter) = get_sdk(
- ResourceType.MGMT_NETWORK,
- 'ExpressRouteCircuitPeering',
- 'ExpressRouteCircuitPeeringConfig',
- 'ExpressRouteCircuitPeeringType',
- 'RouteFilter',
- mod='models')
+def show_nw_security_view(cmd, client, resource_group_name, vm, watcher_rg, watcher_name, location=None):
+ if not is_valid_resource_id(vm):
+ vm = resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name,
+ namespace='Microsoft.Compute', type='virtualMachines', name=vm)
- peering = ExpressRouteCircuitPeering(
- peering_type=peering_type, peer_asn=peer_asn, vlan_id=vlan_id,
- primary_peer_address_prefix=primary_peer_address_prefix,
- secondary_peer_address_prefix=secondary_peer_address_prefix,
- shared_key=shared_key)
+ return client.get_vm_security_rules(watcher_rg, watcher_name, vm)
- if peering_type == ExpressRouteCircuitPeeringType.microsoft_peering.value:
- peering.microsoft_peering_config = ExpressRouteCircuitPeeringConfig(
- advertised_public_prefixes=advertised_public_prefixes,
- customer_asn=customer_asn,
- routing_registry_name=routing_registry_name)
- if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2016-12-01') and route_filter:
- peering.route_filter = RouteFilter(id=route_filter)
- return client.create_or_update(resource_group_name, circuit_name, peering_type, peering)
+def create_nw_packet_capture(cmd, client, resource_group_name, capture_name, vm,
+ watcher_rg, watcher_name, location=None,
+ storage_account=None, storage_path=None, file_path=None,
+ capture_size=None, capture_limit=None, time_limit=None, filters=None):
+ PacketCapture, PacketCaptureStorageLocation = cmd.get_models('PacketCapture', 'PacketCaptureStorageLocation')
+ storage_settings = PacketCaptureStorageLocation(storage_id=storage_account,
+ storage_path=storage_path, file_path=file_path)
+ capture_params = PacketCapture(target=vm, storage_location=storage_settings,
+ bytes_to_capture_per_packet=capture_size,
+ total_bytes_per_session=capture_limit, time_limit_in_seconds=time_limit,
+ filters=filters)
+ return client.create(watcher_rg, watcher_name, capture_name, capture_params)
-def _create_or_update_ipv6_peering(config, primary_peer_address_prefix, secondary_peer_address_prefix, route_filter,
- advertised_public_prefixes, customer_asn, routing_registry_name):
- if config:
- # update scenario
- if primary_peer_address_prefix:
- config.primary_peer_address_prefix = primary_peer_address_prefix
- if secondary_peer_address_prefix:
- config.secondary_peer_address_prefix = secondary_peer_address_prefix
+def set_nsg_flow_logging(cmd, client, watcher_rg, watcher_name, nsg, storage_account=None,
+ resource_group_name=None, enabled=None, retention=0):
+ from azure.cli.core.commands import LongRunningOperation
+ config = LongRunningOperation(cmd.cli_ctx)(client.get_flow_log_status(watcher_rg, watcher_name, nsg))
+ if enabled is not None:
+ config.enabled = enabled
+ if storage_account is not None:
+ config.storage_id = storage_account
+ if retention is not None:
+ RetentionPolicyParameters = cmd.get_models('RetentionPolicyParameters')
+ config.retention_policy = RetentionPolicyParameters(days=retention, enabled=int(retention) > 0)
+ return client.set_flow_log_configuration(watcher_rg, watcher_name, config)
- if route_filter:
- RouteFilter = get_sdk(ResourceType.MGMT_NETWORK, 'RouteFilter', mod='models')
- config.route_filter = RouteFilter(id=route_filter)
- if advertised_public_prefixes:
- config.microsoft_peering_config.advertised_public_prefixes = advertised_public_prefixes
+def show_nsg_flow_logging(client, watcher_rg, watcher_name, nsg, resource_group_name=None):
+ return client.get_flow_log_status(watcher_rg, watcher_name, nsg)
- if customer_asn:
- config.microsoft_peering_config.customer_asn = customer_asn
- if routing_registry_name:
- config.microsoft_peering_config.routing_registry_name = routing_registry_name
- else:
- # create scenario
+def start_nw_troubleshooting(cmd, client, watcher_name, watcher_rg, resource, storage_account,
+ storage_path, resource_type=None, resource_group_name=None,
+ no_wait=False):
+ TroubleshootingParameters = cmd.get_models('TroubleshootingParameters')
+ params = TroubleshootingParameters(target_resource_id=resource, storage_id=storage_account,
+ storage_path=storage_path)
+ return client.get_troubleshooting(watcher_rg, watcher_name, params, raw=no_wait)
- IPv6Config, MicrosoftPeeringConfig = get_sdk(ResourceType.MGMT_NETWORK, 'Ipv6ExpressRouteCircuitPeeringConfig',
- 'ExpressRouteCircuitPeeringConfig', mod='models')
- microsoft_config = MicrosoftPeeringConfig(advertised_public_prefixes=advertised_public_prefixes,
- customer_asn=customer_asn,
- routing_registry_name=routing_registry_name)
- config = IPv6Config(primary_peer_address_prefix=primary_peer_address_prefix,
- secondary_peer_address_prefix=secondary_peer_address_prefix,
- microsoft_peering_config=microsoft_config,
- route_filter=route_filter)
- return config
+def show_nw_troubleshooting_result(client, watcher_name, watcher_rg, resource, resource_type=None,
+ resource_group_name=None):
+ return client.get_troubleshooting_result(watcher_rg, watcher_name, resource)
+# endregion
-def update_express_route_peering(instance, peer_asn=None, primary_peer_address_prefix=None,
- secondary_peer_address_prefix=None, vlan_id=None, shared_key=None,
- advertised_public_prefixes=None, customer_asn=None,
- routing_registry_name=None, route_filter=None, ip_version='IPv4'):
- # update settings common to all peering types
- if peer_asn is not None:
- instance.peer_asn = peer_asn
+# region PublicIPAddresses
+def create_public_ip(cmd, resource_group_name, public_ip_address_name, location=None, tags=None,
+ allocation_method=None, dns_name=None,
+ idle_timeout=4, reverse_fqdn=None, version=None, sku=None, zone=None):
+ IPAllocationMethod, PublicIPAddress, PublicIPAddressDnsSettings = cmd.get_models(
+ 'IPAllocationMethod', 'PublicIPAddress', 'PublicIPAddressDnsSettings')
+ client = network_client_factory(cmd.cli_ctx).public_ip_addresses
+ if not allocation_method:
+ allocation_method = IPAllocationMethod.static.value if (sku and sku.lower() == 'standard') \
+ else IPAllocationMethod.dynamic.value
- if vlan_id is not None:
- instance.vlan_id = vlan_id
+ public_ip_args = {
+ 'location': location,
+ 'tags': tags,
+ 'public_ip_allocation_method': allocation_method,
+ 'idle_timeout_in_minutes': idle_timeout,
+ 'dns_settings': None
+ }
+ if cmd.supported_api_version(min_api='2016-09-01'):
+ public_ip_args['public_ip_address_version'] = version
+ if cmd.supported_api_version(min_api='2017-06-01'):
+ public_ip_args['zones'] = zone
+ if sku:
+ public_ip_args['sku'] = {'name': sku}
+ public_ip = PublicIPAddress(**public_ip_args)
- if shared_key is not None:
- instance.shared_key = shared_key
+ if dns_name or reverse_fqdn:
+ public_ip.dns_settings = PublicIPAddressDnsSettings(
+ domain_name_label=dns_name,
+ reverse_fqdn=reverse_fqdn)
+ return client.create_or_update(resource_group_name, public_ip_address_name, public_ip)
- if ip_version == 'IPv6':
- # update is the only way to add IPv6 peering options
- instance.ipv6_peering_config = _create_or_update_ipv6_peering(instance.ipv6_peering_config,
- primary_peer_address_prefix,
- secondary_peer_address_prefix, route_filter,
- advertised_public_prefixes, customer_asn,
- routing_registry_name)
- else:
- # IPv4 Microsoft Peering (or non-Microsoft Peering)
- if primary_peer_address_prefix is not None:
- instance.primary_peer_address_prefix = primary_peer_address_prefix
- if secondary_peer_address_prefix is not None:
- instance.secondary_peer_address_prefix = secondary_peer_address_prefix
+def update_public_ip(cmd, instance, dns_name=None, allocation_method=None, version=None,
+ idle_timeout=None, reverse_fqdn=None, tags=None, sku=None):
+ if dns_name is not None or reverse_fqdn is not None:
+ if instance.dns_settings:
+ if dns_name is not None:
+ instance.dns_settings.domain_name_label = dns_name
+ if reverse_fqdn is not None:
+ instance.dns_settings.reverse_fqdn = reverse_fqdn
+ else:
+ PublicIPAddressDnsSettings = cmd.get_models('PublicIPAddressDnsSettings')
+ instance.dns_settings = PublicIPAddressDnsSettings(dns_name, None, reverse_fqdn)
+ if allocation_method is not None:
+ instance.public_ip_allocation_method = allocation_method
+ if version is not None:
+ instance.public_ip_address_version = version
+ if idle_timeout is not None:
+ instance.idle_timeout_in_minutes = idle_timeout
+ if tags is not None:
+ instance.tags = tags
+ if sku is not None:
+ instance.sku.name = sku
+ return instance
+
- if route_filter is not None:
- RouteFilter = get_sdk(ResourceType.MGMT_NETWORK, 'RouteFilter', mod='models')
- instance.route_filter = RouteFilter(id=route_filter)
+# endregion
- try:
- if advertised_public_prefixes is not None:
- instance.microsoft_peering_config.advertised_public_prefixes = advertised_public_prefixes
- if customer_asn is not None:
- instance.microsoft_peering_config.customer_asn = customer_asn
+# region RouteFilters
+def create_route_filter(cmd, client, resource_group_name, route_filter_name, location=None, tags=None):
+ RouteFilter = cmd.get_models('RouteFilter')
+ return client.create_or_update(resource_group_name, route_filter_name,
+ RouteFilter(location=location, tags=tags))
- if routing_registry_name is not None:
- instance.microsoft_peering_config.routing_registry_name = routing_registry_name
- except AttributeError:
- raise CLIError('--advertised-public-prefixes, --customer-asn and --routing-registry-name are only '
- 'applicable for Microsoft Peering.')
- return instance
+def list_route_filters(client, resource_group_name=None):
+ if resource_group_name:
+ return client.list_by_resource_group(resource_group_name)
+ return client.list()
-update_express_route_peering.__doc__ = create_express_route_peering.__doc__
+def create_route_filter_rule(cmd, client, resource_group_name, route_filter_name, rule_name, access, communities,
+ location=None, tags=None):
+ RouteFilterRule = cmd.get_models('RouteFilterRule')
+ return client.create_or_update(resource_group_name, route_filter_name, rule_name,
+ RouteFilterRule(access=access, communities=communities,
+ location=location, tags=tags))
# endregion
-# region Route Table commands
+# region RouteTables
def update_route_table(instance, tags=None):
if tags == '':
instance.tags = None
@@ -2453,17 +2506,15 @@ def update_route_table(instance, tags=None):
return instance
-def create_route(resource_group_name, route_table_name, route_name, next_hop_type, address_prefix,
+def create_route(cmd, resource_group_name, route_table_name, route_name, next_hop_type, address_prefix,
next_hop_ip_address=None):
+ Route = cmd.get_models('Route')
route = Route(next_hop_type=next_hop_type, address_prefix=address_prefix,
next_hop_ip_address=next_hop_ip_address, name=route_name)
- ncf = _network_client_factory()
+ ncf = network_client_factory(cmd.cli_ctx)
return ncf.routes.create_or_update(resource_group_name, route_table_name, route_name, route)
-create_route.__doc__ = Route.__doc__
-
-
def update_route(instance, address_prefix=None, next_hop_type=None, next_hop_ip_address=None):
if address_prefix is not None:
instance.address_prefix = address_prefix
@@ -2474,94 +2525,26 @@ def update_route(instance, address_prefix=None, next_hop_type=None, next_hop_ip_
if next_hop_ip_address is not None:
instance.next_hop_ip_address = next_hop_ip_address
return instance
-
-
-update_route.__doc__ = Route.__doc__
-
-
-# endregion
-
-# region RouteFilter Commands
-
-
-def create_route_filter(client, resource_group_name, route_filter_name, location=None, tags=None):
- RouteFilter = get_sdk(ResourceType.MGMT_NETWORK, 'RouteFilter', mod='models')
- return client.create_or_update(resource_group_name, route_filter_name,
- RouteFilter(location=location, tags=tags))
-
-
-def list_route_filters(client, resource_group_name=None):
- if resource_group_name:
- return client.list_by_resource_group(resource_group_name)
-
- return client.list()
-
-
-def create_route_filter_rule(client, resource_group_name, route_filter_name, rule_name, access, communities,
- location=None, tags=None):
- RouteFilterRule = get_sdk(ResourceType.MGMT_NETWORK, 'RouteFilterRule', mod='models')
- return client.create_or_update(resource_group_name, route_filter_name, rule_name,
- RouteFilterRule(access=access, communities=communities,
- location=location, tags=tags))
-
-
-# endregion
-
-
-# region Local Gateway commands
-
-def create_local_gateway(resource_group_name, local_network_gateway_name, gateway_ip_address,
- location=None, tags=None, local_address_prefix=None, asn=None,
- bgp_peering_address=None, peer_weight=None, no_wait=False):
- LocalNetworkGateway, BgpSettings = get_sdk(ResourceType.MGMT_NETWORK,
- 'LocalNetworkGateway',
- 'BgpSettings',
- mod='models')
-
- client = _network_client_factory().local_network_gateways
- local_gateway = LocalNetworkGateway(
- local_network_address_space=AddressSpace(address_prefixes=(local_address_prefix or [])),
- location=location, tags=tags, gateway_ip_address=gateway_ip_address)
- if bgp_peering_address or asn or peer_weight:
- local_gateway.bgp_settings = BgpSettings(asn=asn, bgp_peering_address=bgp_peering_address,
- peer_weight=peer_weight)
- return client.create_or_update(
- resource_group_name, local_network_gateway_name, local_gateway, raw=no_wait)
-
-
-def update_local_gateway(instance, gateway_ip_address=None, local_address_prefix=None, asn=None,
- bgp_peering_address=None, peer_weight=None, tags=None):
- _validate_bgp_peering(instance, asn, bgp_peering_address, peer_weight)
-
- if gateway_ip_address is not None:
- instance.gateway_ip_address = gateway_ip_address
- if local_address_prefix is not None:
- instance.local_network_address_space.address_prefixes = local_address_prefix
- if tags is not None:
- instance.tags = tags
- return instance
-
-
# endregion
-# region Traffic Manager Commands
-def list_traffic_manager_profiles(resource_group_name=None):
+# region TrafficManagers
+def list_traffic_manager_profiles(cmd, resource_group_name=None):
from azure.mgmt.trafficmanager import TrafficManagerManagementClient
- client = get_mgmt_service_client(TrafficManagerManagementClient).profiles
+ client = get_mgmt_service_client(cmd.cli_ctx, TrafficManagerManagementClient).profiles
if resource_group_name:
return client.list_by_resource_group(resource_group_name)
return client.list_by_subscription()
-def create_traffic_manager_profile(traffic_manager_profile_name, resource_group_name,
+def create_traffic_manager_profile(cmd, traffic_manager_profile_name, resource_group_name,
routing_method, unique_dns_name, monitor_path='/',
monitor_port=80, monitor_protocol=MonitorProtocol.http.value, status='enabled',
ttl=30, tags=None):
from azure.mgmt.trafficmanager import TrafficManagerManagementClient
from azure.mgmt.trafficmanager.models import Profile, DnsConfig, MonitorConfig
- client = get_mgmt_service_client(TrafficManagerManagementClient).profiles
+ client = get_mgmt_service_client(cmd.cli_ctx, TrafficManagerManagementClient).profiles
profile = Profile(location='global', tags=tags, profile_status=status,
traffic_routing_method=routing_method,
dns_config=DnsConfig(relative_name=unique_dns_name, ttl=ttl),
@@ -2591,21 +2574,21 @@ def update_traffic_manager_profile(instance, profile_status=None, routing_method
# TODO: Remove workaround after https://github.com/Azure/azure-rest-api-specs/issues/1940 fixed
for endpoint in instance.endpoints:
- endpoint._validation = {
+ endpoint._validation = { # pylint: disable=protected-access
'name': {'readonly': False},
'type': {'readonly': False},
}
return instance
-def create_traffic_manager_endpoint(resource_group_name, profile_name, endpoint_type, endpoint_name,
+def create_traffic_manager_endpoint(cmd, resource_group_name, profile_name, endpoint_type, endpoint_name,
target_resource_id=None, target=None,
endpoint_status=None, weight=None, priority=None,
endpoint_location=None, endpoint_monitor_status=None,
min_child_endpoints=None, geo_mapping=None):
from azure.mgmt.trafficmanager import TrafficManagerManagementClient
from azure.mgmt.trafficmanager.models import Endpoint
- ncf = get_mgmt_service_client(TrafficManagerManagementClient).endpoints
+ ncf = get_mgmt_service_client(cmd.cli_ctx, TrafficManagerManagementClient).endpoints
endpoint = Endpoint(target_resource_id=target_resource_id, target=target,
endpoint_status=endpoint_status, weight=weight, priority=priority,
@@ -2622,718 +2605,612 @@ def update_traffic_manager_endpoint(instance, endpoint_type=None, endpoint_locat
endpoint_status=None, endpoint_monitor_status=None,
priority=None, target=None, target_resource_id=None,
weight=None, min_child_endpoints=None, geo_mapping=None):
- if endpoint_location is not None:
- instance.endpoint_location = endpoint_location
- if endpoint_status is not None:
- instance.endpoint_status = endpoint_status
- if endpoint_monitor_status is not None:
- instance.endpoint_monitor_status = endpoint_monitor_status
- if priority is not None:
- instance.priority = priority
- if target is not None:
- instance.target = target
- if target_resource_id is not None:
- instance.target_resource_id = target_resource_id
- if weight is not None:
- instance.weight = weight
- if min_child_endpoints is not None:
- instance.min_child_endpoints = min_child_endpoints
- if geo_mapping is not None:
- instance.geo_mapping = geo_mapping
-
- return instance
-
-
-def list_traffic_manager_endpoints(resource_group_name, profile_name, endpoint_type=None):
- from azure.mgmt.trafficmanager import TrafficManagerManagementClient
- client = get_mgmt_service_client(TrafficManagerManagementClient).profiles
- profile = client.get(resource_group_name, profile_name)
- return [e for e in profile.endpoints if not endpoint_type or e.type.endswith(endpoint_type)]
-
-
-# endregion
-
-# region DNS Commands
-
-def create_dns_zone(client, resource_group_name, zone_name, location='global', tags=None,
- if_none_match=False, zone_type=None, resolution_vnets=None, registration_vnets=None):
- zone = Zone(location=location, tags=tags)
-
- if hasattr(zone, 'zone_type'):
- zone.zone_type = zone_type
- zone.registration_virtual_networks = registration_vnets
- zone.resolution_virtual_networks = resolution_vnets
-
- return client.create_or_update(resource_group_name, zone_name, zone, if_none_match='*' if if_none_match else None)
-
-
-def update_dns_zone(instance, tags=None, zone_type=None, resolution_vnets=None, registration_vnets=None):
-
- if tags is not None:
- instance.tags = tags
-
- if zone_type:
- instance.zone_type = zone_type
-
- if resolution_vnets == ['']:
- instance.resolution_virtual_networks = None
- elif resolution_vnets:
- instance.resolution_virtual_networks = resolution_vnets
-
- if registration_vnets == ['']:
- instance.registration_virtual_networks = None
- elif registration_vnets:
- instance.registration_virtual_networks = registration_vnets
-
- return instance
-
-
-def list_dns_zones(resource_group_name=None):
- ncf = get_mgmt_service_client(DnsManagementClient).zones
- if resource_group_name:
- return ncf.list_by_resource_group(resource_group_name)
-
- return ncf.list()
-
-
-def create_dns_record_set(resource_group_name, zone_name, record_set_name, record_set_type,
- metadata=None, if_match=None, if_none_match=None, ttl=3600):
- ncf = get_mgmt_service_client(DnsManagementClient).record_sets
- record_set = RecordSet(ttl=ttl, metadata=metadata)
- return ncf.create_or_update(resource_group_name, zone_name, record_set_name,
- record_set_type, record_set, if_match=if_match,
- if_none_match='*' if if_none_match else None)
-
-
-create_dns_record_set.__doc__ = RecordSetsOperations.create_or_update.__doc__
-
-
-def list_dns_record_set(client, resource_group_name, zone_name, record_type=None):
- if record_type:
- return client.list_by_type(resource_group_name, zone_name, record_type)
-
- return client.list_by_dns_zone(resource_group_name, zone_name)
-
-
-def update_dns_record_set(instance, metadata=None):
- if metadata is not None:
- instance.metadata = metadata
- return instance
-
-
-def _type_to_property_name(key):
- type_dict = {
- 'a': 'arecords',
- 'aaaa': 'aaaa_records',
- 'caa': 'caa_records',
- 'cname': 'cname_record',
- 'mx': 'mx_records',
- 'ns': 'ns_records',
- 'ptr': 'ptr_records',
- 'soa': 'soa_record',
- 'spf': 'txt_records',
- 'srv': 'srv_records',
- 'txt': 'txt_records',
- }
- return type_dict[key.lower()]
-
-
-def export_zone(resource_group_name, zone_name):
- from time import localtime, strftime
-
- client = get_mgmt_service_client(DnsManagementClient)
- record_sets = client.record_sets.list_by_dns_zone(resource_group_name, zone_name)
-
- zone_obj = OrderedDict({
- '$origin': zone_name.rstrip('.') + '.',
- 'resource-group': resource_group_name,
- 'zone-name': zone_name.rstrip('.'),
- 'datetime': strftime('%a, %d %b %Y %X %z', localtime())
- })
-
- for record_set in record_sets:
- record_type = record_set.type.rsplit('/', 1)[1].lower()
- record_set_name = record_set.name
- record_data = getattr(record_set, _type_to_property_name(record_type), None)
-
- # ignore empty record sets
- if not record_data:
- continue
-
- if not isinstance(record_data, list):
- record_data = [record_data]
-
- if record_set_name not in zone_obj:
- zone_obj[record_set_name] = OrderedDict()
-
- for record in record_data:
-
- record_obj = {'ttl': record_set.ttl}
-
- if record_type not in zone_obj[record_set_name]:
- zone_obj[record_set_name][record_type] = []
-
- if record_type == 'aaaa':
- record_obj.update({'ip': record.ipv6_address})
- elif record_type == 'a':
- record_obj.update({'ip': record.ipv4_address})
- elif record_type == 'caa':
- record_obj.update({'value': record.value, 'tag': record.tag, 'flags': record.flags})
- elif record_type == 'cname':
- record_obj.update({'alias': record.cname})
- elif record_type == 'mx':
- record_obj.update({'preference': record.preference, 'host': record.exchange})
- elif record_type == 'ns':
- record_obj.update({'host': record.nsdname})
- elif record_type == 'ptr':
- record_obj.update({'host': record.ptrdname})
- elif record_type == 'soa':
- record_obj.update({
- 'mname': record.host.rstrip('.') + '.',
- 'rname': record.email.rstrip('.') + '.',
- 'serial': record.serial_number, 'refresh': record.refresh_time,
- 'retry': record.retry_time, 'expire': record.expire_time,
- 'minimum': record.minimum_ttl
- })
- zone_obj['$ttl'] = record.minimum_ttl
- elif record_type == 'srv':
- record_obj.update({'priority': record.priority, 'weight': record.weight,
- 'port': record.port, 'target': record.target})
- elif record_type == 'txt':
- record_obj.update({'txt': ' '.join(record.value)})
+ if endpoint_location is not None:
+ instance.endpoint_location = endpoint_location
+ if endpoint_status is not None:
+ instance.endpoint_status = endpoint_status
+ if endpoint_monitor_status is not None:
+ instance.endpoint_monitor_status = endpoint_monitor_status
+ if priority is not None:
+ instance.priority = priority
+ if target is not None:
+ instance.target = target
+ if target_resource_id is not None:
+ instance.target_resource_id = target_resource_id
+ if weight is not None:
+ instance.weight = weight
+ if min_child_endpoints is not None:
+ instance.min_child_endpoints = min_child_endpoints
+ if geo_mapping is not None:
+ instance.geo_mapping = geo_mapping
- zone_obj[record_set_name][record_type].append(record_obj)
+ return instance
- print(make_zone_file(zone_obj))
+def list_traffic_manager_endpoints(cmd, resource_group_name, profile_name, endpoint_type=None):
+ from azure.mgmt.trafficmanager import TrafficManagerManagementClient
+ client = get_mgmt_service_client(cmd.cli_ctx, TrafficManagerManagementClient).profiles
+ profile = client.get(resource_group_name, profile_name)
+ return [e for e in profile.endpoints if not endpoint_type or e.type.endswith(endpoint_type)]
-# pylint: disable=too-many-return-statements
-def _build_record(data):
- record_type = data['type'].lower()
- try:
- if record_type == 'aaaa':
- return AaaaRecord(data['ip'])
- elif record_type == 'a':
- return ARecord(data['ip'])
- elif record_type == 'caa':
- return CaaRecord(value=data['value'], flags=data['flags'], tag=data['tag'])
- elif record_type == 'cname':
- return CnameRecord(data['alias'])
- elif record_type == 'mx':
- return MxRecord(data['preference'], data['host'])
- elif record_type == 'ns':
- return NsRecord(data['host'])
- elif record_type == 'ptr':
- return PtrRecord(data['host'])
- elif record_type == 'soa':
- return SoaRecord(data['host'], data['email'], data['serial'], data['refresh'],
- data['retry'], data['expire'], data['minimum'])
- elif record_type == 'srv':
- return SrvRecord(data['priority'], data['weight'], data['port'], data['target'])
- elif record_type in ['txt', 'spf']:
- text_data = data['txt']
- return TxtRecord(text_data) if isinstance(text_data, list) else TxtRecord([text_data])
- except KeyError as ke:
- raise CLIError("The {} record '{}' is missing a property. {}"
- .format(record_type, data['name'], ke))
+# endregion
-# pylint: disable=too-many-statements
-def import_zone(resource_group_name, zone_name, file_name):
- from azure.cli.core.util import read_file_content
- import sys
- file_text = read_file_content(file_name)
- zone_obj = parse_zone_file(file_text, zone_name)
- origin = zone_name
- record_sets = {}
- for record_set_name in zone_obj:
- for record_set_type in zone_obj[record_set_name]:
- record_set_obj = zone_obj[record_set_name][record_set_type]
+# region VirtualNetworks
+# pylint: disable=too-many-locals
+def create_vnet(cmd, resource_group_name, vnet_name, vnet_prefixes='10.0.0.0/16',
+ subnet_name=None, subnet_prefix=None, dns_servers=None,
+ location=None, tags=None, vm_protection=None, ddos_protection=None):
+ AddressSpace, DhcpOptions, Subnet, VirtualNetwork = \
+ cmd.get_models('AddressSpace', 'DhcpOptions', 'Subnet', 'VirtualNetwork')
+ client = network_client_factory(cmd.cli_ctx).virtual_networks
+ tags = tags or {}
- if record_set_type == 'soa':
- origin = record_set_name.rstrip('.')
+ vnet = VirtualNetwork(
+ location=location, tags=tags,
+ dhcp_options=DhcpOptions(dns_servers),
+ address_space=AddressSpace(vnet_prefixes if isinstance(vnet_prefixes, list) else [vnet_prefixes]))
+ if subnet_name:
+ vnet.subnets = [Subnet(name=subnet_name, address_prefix=subnet_prefix)]
+ if cmd.supported_api_version(min_api='2017-09-01'):
+ vnet.enable_ddos_protection = ddos_protection
+ vnet.enable_vm_protection = vm_protection
+ return client.create_or_update(resource_group_name, vnet_name, vnet)
- if not isinstance(record_set_obj, list):
- record_set_obj = [record_set_obj]
- for entry in record_set_obj:
+def update_vnet(cmd, instance, vnet_prefixes=None, dns_servers=None, ddos_protection=None, vm_protection=None):
+ # server side validation reports pretty good error message on invalid CIDR,
+ # so we don't validate at client side
+ AddressSpace, DhcpOptions = cmd.get_models('AddressSpace', 'DhcpOptions')
+ if vnet_prefixes and instance.address_space:
+ instance.address_space.address_prefixes = vnet_prefixes
+ elif vnet_prefixes:
+ instance.address_space = AddressSpace(vnet_prefixes)
- record_set_ttl = entry['ttl']
- record_set_key = '{}{}'.format(record_set_name.lower(), record_set_type)
+ if dns_servers == ['']:
+ instance.dhcp_options.dns_servers = None
+ elif dns_servers and instance.dhcp_options:
+ instance.dhcp_options.dns_servers = dns_servers
+ elif dns_servers:
+ instance.dhcp_options = DhcpOptions(dns_servers=dns_servers)
- record = _build_record(entry)
- record_set = record_sets.get(record_set_key, None)
- if not record_set:
+ if ddos_protection is not None:
+ instance.enable_ddos_protection = ddos_protection
+ if vm_protection is not None:
+ instance.enable_vm_protection = vm_protection
+ return instance
- # Workaround for issue #2824
- relative_record_set_name = record_set_name.rstrip('.')
- if not relative_record_set_name.endswith(origin):
- logger.warning(
- 'Cannot import %s. Only records relative to origin may be '
- 'imported at this time. Skipping...', relative_record_set_name)
- continue
- if record_set_type != 'soa' and relative_record_set_name != origin:
- relative_record_set_name = record_set_name[:-(len(origin) + 2)]
+def _set_route_table(ncf, resource_group_name, route_table, subnet):
+ if route_table:
+ is_id = is_valid_resource_id(route_table)
+ rt = None
+ if is_id:
+ res_id = parse_resource_id(route_table)
+ rt = ncf.route_tables.get(res_id['resource_group'], res_id['name'])
+ else:
+ rt = ncf.route_tables.get(resource_group_name, route_table)
+ subnet.route_table = rt
+ elif route_table == '':
+ subnet.route_table = None
- record_set = RecordSet(ttl=record_set_ttl)
- record_sets[record_set_key] = record_set
- _add_record(record_set, record, record_set_type,
- is_list=record_set_type.lower() not in ['soa', 'cname'])
- total_records = 0
- for key, rs in record_sets.items():
- rs_type = key.rsplit('.', 1)[1].lower()
- try:
- record_count = len(getattr(rs, _type_to_property_name(rs_type)))
- except TypeError:
- record_count = 1
- total_records += record_count
- cum_records = 0
+def create_subnet(cmd, resource_group_name, virtual_network_name, subnet_name,
+ address_prefix, network_security_group=None,
+ route_table=None, service_endpoints=None):
+ '''Create a virtual network (VNet) subnet.
+ :param str address_prefix: address prefix in CIDR format.
+ :param str network_security_group: Name or ID of network security
+ group to associate with the subnet.
+ '''
+ NetworkSecurityGroup, ServiceEndpoint, Subnet = cmd.get_models(
+ 'NetworkSecurityGroup', 'ServiceEndpointPropertiesFormat', 'Subnet')
+ ncf = network_client_factory(cmd.cli_ctx)
+ subnet = Subnet(name=subnet_name, address_prefix=address_prefix)
- client = get_mgmt_service_client(DnsManagementClient)
- print('== BEGINNING ZONE IMPORT: {} ==\n'.format(zone_name), file=sys.stderr)
- client.zones.create_or_update(resource_group_name, zone_name, Zone('global'))
- for key, rs in record_sets.items():
+ if network_security_group:
+ subnet.network_security_group = NetworkSecurityGroup(id=network_security_group)
+ _set_route_table(ncf, resource_group_name, route_table, subnet)
+ if service_endpoints:
+ subnet.service_endpoints = []
+ for service in service_endpoints:
+ subnet.service_endpoints.append(ServiceEndpoint(service=service))
- rs_name, rs_type = key.lower().rsplit('.', 1)
- rs_name = '@' if rs_name == origin else rs_name
+ return ncf.subnets.create_or_update(resource_group_name, virtual_network_name,
+ subnet_name, subnet)
- try:
- record_count = len(getattr(rs, _type_to_property_name(rs_type)))
- except TypeError:
- record_count = 1
- if rs_name == '@' and rs_type == 'soa':
- root_soa = client.record_sets.get(resource_group_name, zone_name, '@', 'SOA')
- rs.soa_record.host = root_soa.soa_record.host
- rs_name = '@'
- elif rs_name == '@' and rs_type == 'ns':
- root_ns = client.record_sets.get(resource_group_name, zone_name, '@', 'NS')
- root_ns.ttl = rs.ttl
- rs = root_ns
- rs_type = rs.type.rsplit('/', 1)[1]
- try:
- client.record_sets.create_or_update(
- resource_group_name, zone_name, rs_name, rs_type, rs)
- cum_records += record_count
- print("({}/{}) Imported {} records of type '{}' and name '{}'"
- .format(cum_records, total_records, record_count, rs_type, rs_name), file=sys.stderr)
- except CloudError as ex:
- logger.error(ex)
- print("\n== {}/{} RECORDS IMPORTED SUCCESSFULLY: '{}' =="
- .format(cum_records, total_records, zone_name), file=sys.stderr)
+def update_subnet(cmd, instance, resource_group_name, address_prefix=None, network_security_group=None,
+ route_table=None, service_endpoints=None):
+ '''update existing virtual sub network
+ :param str address_prefix: New address prefix in CIDR format, for example 10.0.0.0/24.
+ :param str network_security_group: attach with existing network security group,
+ both name or id are accepted. Use empty string "" to detach it.
+ '''
+ NetworkSecurityGroup, ServiceEndpoint = cmd.get_models('NetworkSecurityGroup', 'ServiceEndpoint')
-def add_dns_aaaa_record(resource_group_name, zone_name, record_set_name, ipv6_address):
- record = AaaaRecord(ipv6_address=ipv6_address)
- record_type = 'aaaa'
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name)
+ if address_prefix:
+ instance.address_prefix = address_prefix
+ if network_security_group:
+ instance.network_security_group = NetworkSecurityGroup(id=network_security_group)
+ elif network_security_group == '': # clear it
+ instance.network_security_group = None
-def add_dns_a_record(resource_group_name, zone_name, record_set_name, ipv4_address):
- record = ARecord(ipv4_address=ipv4_address)
- record_type = 'a'
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name,
- 'arecords')
+ _set_route_table(network_client_factory(cmd.cli_ctx), resource_group_name, route_table, instance)
+ if service_endpoints == ['']:
+ instance.service_endpoints = None
+ elif service_endpoints:
+ instance.service_endpoints = []
+ for service in service_endpoints:
+ instance.service_endpoints.append(ServiceEndpoint(service=service))
-def add_dns_caa_record(resource_group_name, zone_name, record_set_name, value, flags, tag):
- record = CaaRecord(flags=flags, tag=tag, value=value)
- record_type = 'caa'
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name)
+ return instance
-def add_dns_cname_record(resource_group_name, zone_name, record_set_name, cname):
- record = CnameRecord(cname=cname)
- record_type = 'cname'
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name,
- is_list=False)
+def create_vnet_peering(cmd, resource_group_name, virtual_network_name, virtual_network_peering_name,
+ remote_virtual_network, allow_virtual_network_access=False,
+ allow_forwarded_traffic=False, allow_gateway_transit=False,
+ use_remote_gateways=False):
+ SubResource, VirtualNetworkPeering = cmd.get_models('SubResource', 'VirtualNetworkPeering')
+ peering = VirtualNetworkPeering(
+ id=resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx),
+ resource_group=resource_group_name,
+ namespace='Microsoft.Network',
+ type='virtualNetworks',
+ name=virtual_network_name),
+ name=virtual_network_peering_name,
+ remote_virtual_network=SubResource(remote_virtual_network),
+ allow_virtual_network_access=allow_virtual_network_access,
+ allow_gateway_transit=allow_gateway_transit,
+ allow_forwarded_traffic=allow_forwarded_traffic,
+ use_remote_gateways=use_remote_gateways)
+ ncf = network_client_factory(cmd.cli_ctx)
+ return ncf.virtual_network_peerings.create_or_update(
+ resource_group_name, virtual_network_name, virtual_network_peering_name, peering)
+# endregion
-def add_dns_mx_record(resource_group_name, zone_name, record_set_name, preference, exchange):
- record = MxRecord(preference=int(preference), exchange=exchange)
- record_type = 'mx'
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name)
+# region VirtualNetworkGateways
+def create_vnet_gateway_root_cert(cmd, resource_group_name, gateway_name, public_cert_data, cert_name):
+ VpnClientRootCertificate = cmd.get_models('VpnClientRootCertificate')
+ ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateways
+ gateway = ncf.get(resource_group_name, gateway_name)
+ if not gateway.vpn_client_configuration:
+ raise CLIError("Must add address prefixes to gateway '{}' prior to adding a root cert."
+ .format(gateway_name))
+ config = gateway.vpn_client_configuration
+ if config.vpn_client_root_certificates is None:
+ config.vpn_client_root_certificates = []
-def add_dns_ns_record(resource_group_name, zone_name, record_set_name, dname):
- record = NsRecord(nsdname=dname)
- record_type = 'ns'
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name)
+ cert = VpnClientRootCertificate(name=cert_name, public_cert_data=public_cert_data)
+ _upsert(config, 'vpn_client_root_certificates', cert, 'name')
+ return ncf.create_or_update(resource_group_name, gateway_name, gateway)
+
+
+def delete_vnet_gateway_root_cert(cmd, resource_group_name, gateway_name, cert_name):
+ ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateways
+ gateway = ncf.get(resource_group_name, gateway_name)
+ config = gateway.vpn_client_configuration
+
+ try:
+ cert = next(c for c in config.vpn_client_root_certificates if c.name == cert_name)
+ except (AttributeError, StopIteration):
+ raise CLIError('Certificate "{}" not found in gateway "{}"'.format(cert_name, gateway_name))
+ config.vpn_client_root_certificates.remove(cert)
+
+ return ncf.create_or_update(resource_group_name, gateway_name, gateway)
-def add_dns_ptr_record(resource_group_name, zone_name, record_set_name, dname):
- record = PtrRecord(ptrdname=dname)
- record_type = 'ptr'
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name)
+def create_vnet_gateway_revoked_cert(cmd, resource_group_name, gateway_name, thumbprint, cert_name):
+ VpnClientRevokedCertificate = cmd.get_models('VpnClientRevokedCertificate')
+ config, gateway, ncf = _prep_cert_create(cmd, gateway_name, resource_group_name)
+ cert = VpnClientRevokedCertificate(name=cert_name, thumbprint=thumbprint)
+ _upsert(config, 'vpn_client_revoked_certificates', cert, 'name')
+ return ncf.create_or_update(resource_group_name, gateway_name, gateway)
-def update_dns_soa_record(resource_group_name, zone_name, host=None, email=None,
- serial_number=None, refresh_time=None, retry_time=None, expire_time=None,
- minimum_ttl=None):
- record_set_name = '@'
- record_type = 'soa'
- ncf = get_mgmt_service_client(DnsManagementClient).record_sets
- record_set = ncf.get(resource_group_name, zone_name, record_set_name, record_type)
- record = record_set.soa_record
+def delete_vnet_gateway_revoked_cert(cmd, resource_group_name, gateway_name, cert_name):
+ ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateways
+ gateway = ncf.get(resource_group_name, gateway_name)
+ config = gateway.vpn_client_configuration
- record.host = host or record.host
- record.email = email or record.email
- record.serial_number = serial_number or record.serial_number
- record.refresh_time = refresh_time or record.refresh_time
- record.retry_time = retry_time or record.retry_time
- record.expire_time = expire_time or record.expire_time
- record.minimum_ttl = minimum_ttl or record.minimum_ttl
+ try:
+ cert = next(c for c in config.vpn_client_revoked_certificates if c.name == cert_name)
+ except (AttributeError, StopIteration):
+ raise CLIError('Certificate "{}" not found in gateway "{}"'.format(cert_name, gateway_name))
+ config.vpn_client_revoked_certificates.remove(cert)
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name,
- is_list=False)
+ return ncf.create_or_update(resource_group_name, gateway_name, gateway)
-def add_dns_srv_record(resource_group_name, zone_name, record_set_name, priority, weight,
- port, target):
- record = SrvRecord(priority=priority, weight=weight, port=port, target=target)
- record_type = 'srv'
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name)
+def _prep_cert_create(cmd, gateway_name, resource_group_name):
+ VpnClientConfiguration = cmd.get_models('VpnClientConfiguration')
+ ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateways
+ gateway = ncf.get(resource_group_name, gateway_name)
+ if not gateway.vpn_client_configuration:
+ gateway.vpn_client_configuration = VpnClientConfiguration()
+ config = gateway.vpn_client_configuration
+ if not config.vpn_client_address_pool or not config.vpn_client_address_pool.address_prefixes:
+ raise CLIError('Address prefixes must be set on VPN gateways before adding'
+ ' certificates. Please use "update" with --address-prefixes first.')
-def add_dns_txt_record(resource_group_name, zone_name, record_set_name, value):
- record = TxtRecord(value=value)
- record_type = 'txt'
- long_text = ''.join(x for x in record.value)
- long_text = long_text.replace('\\', '')
- original_len = len(long_text)
- record.value = []
- while len(long_text) > 255:
- record.value.append(long_text[:255])
- long_text = long_text[255:]
- record.value.append(long_text)
- final_str = ''.join(record.value)
- final_len = len(final_str)
- assert original_len == final_len
- return _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name)
+ if config.vpn_client_revoked_certificates is None:
+ config.vpn_client_revoked_certificates = []
+ if config.vpn_client_root_certificates is None:
+ config.vpn_client_root_certificates = []
+ return config, gateway, ncf
-def remove_dns_aaaa_record(resource_group_name, zone_name, record_set_name, ipv6_address,
- keep_empty_record_set=False):
- record = AaaaRecord(ipv6_address=ipv6_address)
- record_type = 'aaaa'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set=keep_empty_record_set)
+def create_vnet_gateway(cmd, resource_group_name, virtual_network_gateway_name, public_ip_address,
+ virtual_network, location=None, tags=None,
+ no_wait=False, gateway_type=None, sku=None, vpn_type=None,
+ asn=None, bgp_peering_address=None, peer_weight=None,
+ address_prefixes=None, radius_server=None, radius_secret=None, client_protocol=None):
+ (VirtualNetworkGateway, BgpSettings, SubResource, VirtualNetworkGatewayIPConfiguration, VirtualNetworkGatewaySku,
+ VpnClientConfiguration, AddressSpace) = cmd.get_models(
+ 'VirtualNetworkGateway', 'BgpSettings', 'SubResource', 'VirtualNetworkGatewayIPConfiguration',
+ 'VirtualNetworkGatewaySku', 'VpnClientConfiguration', 'AddressSpace')
-def remove_dns_a_record(resource_group_name, zone_name, record_set_name, ipv4_address,
- keep_empty_record_set=False):
- record = ARecord(ipv4_address=ipv4_address)
- record_type = 'a'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set=keep_empty_record_set)
+ client = network_client_factory(cmd.cli_ctx).virtual_network_gateways
+ subnet = virtual_network + '/subnets/GatewaySubnet'
+ active_active = len(public_ip_address) == 2
+ vnet_gateway = VirtualNetworkGateway(
+ gateway_type=gateway_type, vpn_type=vpn_type, location=location, tags=tags,
+ sku=VirtualNetworkGatewaySku(name=sku, tier=sku), active_active=active_active,
+ ip_configurations=[])
+ for i, public_ip in enumerate(public_ip_address):
+ ip_configuration = VirtualNetworkGatewayIPConfiguration(
+ subnet=SubResource(subnet),
+ public_ip_address=SubResource(public_ip),
+ private_ip_allocation_method='Dynamic',
+ name='vnetGatewayConfig{}'.format(i)
+ )
+ vnet_gateway.ip_configurations.append(ip_configuration)
+ if asn or bgp_peering_address or peer_weight:
+ vnet_gateway.enable_bgp = True
+ vnet_gateway.bgp_settings = BgpSettings(asn, bgp_peering_address, peer_weight)
+ if any((address_prefixes, radius_secret, radius_server, client_protocol)):
+ vnet_gateway.vpn_client_configuration = VpnClientConfiguration()
+ vnet_gateway.vpn_client_configuration.vpn_client_address_pool = AddressSpace()
+ vnet_gateway.vpn_client_configuration.vpn_client_address_pool.address_prefixes = address_prefixes
+ if cmd.supported_api_version(min_api='2017-06-01'):
+ vnet_gateway.vpn_client_configuration.vpn_client_protocols = client_protocol
+ vnet_gateway.vpn_client_configuration.radius_server_address = radius_server
+ vnet_gateway.vpn_client_configuration.radius_server_secret = radius_secret
-def remove_dns_caa_record(resource_group_name, zone_name, record_set_name, value,
- flags, tag, keep_empty_record_set=False):
- record = CaaRecord(flags=flags, tag=tag, value=value)
- record_type = 'caa'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set=keep_empty_record_set)
+ return client.create_or_update(
+ resource_group_name, virtual_network_gateway_name, vnet_gateway, raw=no_wait)
-def remove_dns_cname_record(resource_group_name, zone_name, record_set_name, cname,
- keep_empty_record_set=False):
- record = CnameRecord(cname=cname)
- record_type = 'cname'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- is_list=False, keep_empty_record_set=keep_empty_record_set)
+def update_vnet_gateway(cmd, instance, sku=None, vpn_type=None, tags=None,
+ public_ip_address=None, gateway_type=None, enable_bgp=None,
+ asn=None, bgp_peering_address=None, peer_weight=None, virtual_network=None,
+ address_prefixes=None, radius_server=None, radius_secret=None, client_protocol=None):
+ AddressSpace, SubResource, VirtualNetworkGatewayIPConfiguration, VpnClientConfiguration = cmd.get_models(
+ 'AddressSpace', 'SubResource', 'VirtualNetworkGatewayIPConfiguration', 'VpnClientConfiguration')
+ if any((address_prefixes, radius_server, radius_secret, client_protocol)) and not instance.vpn_client_configuration:
+ instance.vpn_client_configuration = VpnClientConfiguration()
-def remove_dns_mx_record(resource_group_name, zone_name, record_set_name, preference, exchange,
- keep_empty_record_set=False):
- record = MxRecord(preference=int(preference), exchange=exchange)
- record_type = 'mx'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set=keep_empty_record_set)
+ if address_prefixes is not None:
+ if not instance.vpn_client_configuration.vpn_client_address_pool:
+ instance.vpn_client_configuration.vpn_client_address_pool = AddressSpace()
+ if not instance.vpn_client_configuration.vpn_client_address_pool.address_prefixes:
+ instance.vpn_client_configuration.vpn_client_address_pool.address_prefixes = []
+ instance.vpn_client_configuration.vpn_client_address_pool.address_prefixes = address_prefixes
+ if client_protocol is not None:
+ instance.vpn_client_configuration.vpn_client_protocols = client_protocol
-def remove_dns_ns_record(resource_group_name, zone_name, record_set_name, dname,
- keep_empty_record_set=False):
- record = NsRecord(nsdname=dname)
- record_type = 'ns'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set=keep_empty_record_set)
+ if radius_server is not None:
+ instance.vpn_client_configuration.radius_server_address = radius_server
+ if radius_secret is not None:
+ instance.vpn_client_configuration.radius_server_secret = radius_secret
-def remove_dns_ptr_record(resource_group_name, zone_name, record_set_name, dname,
- keep_empty_record_set=False):
- record = PtrRecord(ptrdname=dname)
- record_type = 'ptr'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set=keep_empty_record_set)
+ if sku is not None:
+ instance.sku.name = sku
+ instance.sku.tier = sku
+ if vpn_type is not None:
+ instance.vpn_type = vpn_type
-def remove_dns_srv_record(resource_group_name, zone_name, record_set_name, priority, weight,
- port, target, keep_empty_record_set=False):
- record = SrvRecord(priority=priority, weight=weight, port=port, target=target)
- record_type = 'srv'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set=keep_empty_record_set)
+ if tags is not None:
+ instance.tags = tags
+ subnet_id = '{}/subnets/GatewaySubnet'.format(virtual_network) if virtual_network else \
+ instance.ip_configurations[0].subnet.id
+ if virtual_network is not None:
+ for config in instance.ip_configurations:
+ config.subnet.id = subnet_id
-def remove_dns_txt_record(resource_group_name, zone_name, record_set_name, value,
- keep_empty_record_set=False):
- record = TxtRecord(value=value)
- record_type = 'txt'
- return _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set=keep_empty_record_set)
+ if public_ip_address is not None:
+ instance.ip_configurations = []
+ for i, public_ip in enumerate(public_ip_address):
+ ip_configuration = VirtualNetworkGatewayIPConfiguration(
+ SubResource(subnet_id),
+ SubResource(public_ip),
+ private_ip_allocation_method='Dynamic', name='vnetGatewayConfig{}'.format(i))
+ instance.ip_configurations.append(ip_configuration)
+ # Update active-active/active-standby status
+ active_active = len(public_ip_address) == 2
+ if instance.active_active and not active_active:
+ logger.info('Placing gateway in active-standby mode.')
+ elif not instance.active_active and active_active:
+ logger.info('Placing gateway in active-active mode.')
+ instance.active_active = active_active
-def _add_record(record_set, record, record_type, is_list=False):
- record_property = _type_to_property_name(record_type)
+ if gateway_type is not None:
+ instance.gateway_type = gateway_type
- if is_list:
- record_list = getattr(record_set, record_property)
- if record_list is None:
- setattr(record_set, record_property, [])
- record_list = getattr(record_set, record_property)
- record_list.append(record)
- else:
- setattr(record_set, record_property, record)
+ if enable_bgp is not None:
+ instance.enable_bgp = enable_bgp.lower() == 'true'
+ _validate_bgp_peering(cmd, instance, asn, bgp_peering_address, peer_weight)
-def _add_save_record(record, record_type, record_set_name, resource_group_name, zone_name,
- is_list=True):
- ncf = get_mgmt_service_client(DnsManagementClient).record_sets
- try:
- record_set = ncf.get(resource_group_name, zone_name, record_set_name, record_type)
- except CloudError:
- record_set = RecordSet(ttl=3600)
+ return instance
- _add_record(record_set, record, record_type, is_list)
- return ncf.create_or_update(resource_group_name, zone_name, record_set_name,
- record_type, record_set)
+# region VPN CLIENT WORKAROUND
+# This is needed due to NRP doing exactly the opposite of what the specification says they should do.
+# pylint: disable=line-too-long, protected-access, mixed-line-endings
+def _poll(self, update_cmd):
+ from msrestazure.azure_operation import finished, failed, BadResponse, OperationFailed
+ initial_url = self._response.request.url
+ while not finished(self.status()):
+ self._delay()
+ headers = self._polling_cookie()
-def _remove_record(record, record_type, record_set_name, resource_group_name, zone_name,
- keep_empty_record_set, is_list=True):
- ncf = get_mgmt_service_client(DnsManagementClient).record_sets
- record_set = ncf.get(resource_group_name, zone_name, record_set_name, record_type)
- record_property = _type_to_property_name(record_type)
+ if self._operation.location_url:
+ self._response = update_cmd(
+ self._operation.location_url, headers)
+ self._operation.set_async_url_if_present(self._response)
+ self._operation.get_status_from_location(
+ self._response)
+ elif self._operation.method == "PUT":
+ self._response = update_cmd(initial_url, headers)
+ self._operation.set_async_url_if_present(self._response)
+ self._operation.get_status_from_resource(
+ self._response)
+ else:
+ raise BadResponse(
+ 'Location header is missing from long running operation.')
- if is_list:
- record_list = getattr(record_set, record_property)
- if record_list is not None:
- keep_list = [r for r in record_list
- if not dict_matches_filter(r.__dict__, record.__dict__)]
- if len(keep_list) == len(record_list):
- raise CLIError('Record {} not found.'.format(str(record)))
- setattr(record_set, record_property, keep_list)
- else:
- setattr(record_set, record_property, None)
+ if failed(self._operation.status):
+ raise OperationFailed("Operation failed or cancelled")
+ elif self._operation.should_do_final_get():
+ self._response = update_cmd(initial_url)
+ self._operation.get_status_from_resource(
+ self._response)
- if is_list:
- records_remaining = len(getattr(record_set, record_property))
- else:
- records_remaining = 1 if getattr(record_set, record_property) is not None else 0
- if not records_remaining and not keep_empty_record_set:
- logger.info('Removing empty %s record set: %s', record_type, record_set_name)
- return ncf.delete(resource_group_name, zone_name, record_set_name, record_type)
+# This is needed due to a bug in autorest code generation. It adds 202 as a valid status code.
+def _vpn_client_core(self, url, resource_group_name, virtual_network_gateway_name, parameters, custom_headers=None, raw=False, **operation_config):
+ import uuid
+ from msrest.pipeline import ClientRawResponse
+ from msrestazure.azure_operation import AzureOperationPoller
+ path_format_arguments = {
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
+ 'virtualNetworkGatewayName': self._serialize.url("virtual_network_gateway_name", virtual_network_gateway_name, 'str'),
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
- return ncf.create_or_update(resource_group_name, zone_name, record_set_name, record_type, record_set)
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
-def dict_matches_filter(d, filter_dict):
- sentinel = object()
- return all(not filter_dict.get(key, None) or
- str(filter_dict[key]) == str(d.get(key, sentinel)) or
- lists_match(filter_dict[key], d.get(key, []))
- for key in filter_dict)
+ # Construct body
+ body_content = self._serialize.body(parameters, 'VpnClientParameters')
+ # Construct and send request
+ def long_running_send():
-def lists_match(l1, l2):
- try:
- return Counter(l1) == Counter(l2)
- except TypeError:
- return False
+ request = self._client.post(url, query_parameters)
+ return self._client.send(
+ request, header_parameters, body_content, **operation_config)
+ def get_long_running_status(status_link, headers=None):
-# endregion
+ request = self._client.get(status_link)
+ if headers:
+ request.headers.update(headers)
+ return self._client.send(
+ request, header_parameters, **operation_config)
-def _create_network_watchers(client, resource_group_name, locations, tags):
- if resource_group_name is None:
- raise CLIError("usage error: '--resource-group' required when enabling new regions")
+ def get_long_running_output(response):
- NetworkWatcher = get_sdk(ResourceType.MGMT_NETWORK, 'NetworkWatcher', mod='models')
- for location in locations:
- client.create_or_update(
- resource_group_name, '{}-watcher'.format(location),
- NetworkWatcher(location=location, tags=tags))
+ if response.status_code not in [200, 202]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+ deserialized = None
-def _update_network_watchers(client, watchers, tags):
- NetworkWatcher = get_sdk(ResourceType.MGMT_NETWORK, 'NetworkWatcher', mod='models')
- for watcher in watchers:
- id_parts = parse_resource_id(watcher.id)
- watcher_rg = id_parts['resource_group']
- watcher_name = id_parts['name']
- watcher_tags = watcher.tags if tags is None else tags
- client.create_or_update(
- watcher_rg, watcher_name,
- NetworkWatcher(location=watcher.location, tags=watcher_tags))
+ if response.status_code in [200, 202]:
+ deserialized = self._deserialize('str', response)
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
-def _delete_network_watchers(client, watchers):
- for watcher in watchers:
- from azure.cli.core.commands import LongRunningOperation
- id_parts = parse_resource_id(watcher.id)
- watcher_rg = id_parts['resource_group']
- watcher_name = id_parts['name']
- logger.warning(
- "Disabling Network Watcher for region '%s' by deleting resource '%s'",
- watcher.location, watcher.id)
- LongRunningOperation()(client.delete(watcher_rg, watcher_name))
+ return deserialized
+ if raw:
+ response = long_running_send()
+ return get_long_running_output(response)
-def configure_network_watcher(client, locations, resource_group_name=None, enabled=None, tags=None):
- watcher_list = list(client.list_all())
- existing_watchers = [w for w in watcher_list if w.location in locations]
- nonenabled_regions = list(set(locations) - set(l.location for l in existing_watchers))
+ long_running_operation_timeout = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ return AzureOperationPoller(
+ long_running_send, get_long_running_output,
+ get_long_running_status, long_running_operation_timeout)
- if enabled is None:
- if resource_group_name is not None:
- logger.warning(
- "Resource group '%s' is only used when enabling new regions and will be ignored.",
- resource_group_name)
- for location in nonenabled_regions:
- logger.warning(
- "Region '%s' is not enabled for Network Watcher and will be ignored.", location)
- _update_network_watchers(client, existing_watchers, tags)
- elif enabled:
- _create_network_watchers(client, resource_group_name, nonenabled_regions, tags)
- _update_network_watchers(client, existing_watchers, tags)
+@mock.patch('msrestazure.azure_operation.AzureOperationPoller._poll', _poll)
+def _generate_vpn_profile(
+ self, resource_group_name, virtual_network_gateway_name, parameters, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnprofile'
+ return _vpn_client_core(self, url, resource_group_name, virtual_network_gateway_name, parameters, custom_headers, raw, **operation_config)
- else:
- if tags is not None:
- raise CLIError("usage error: '--tags' cannot be used when disabling regions")
- _delete_network_watchers(client, existing_watchers)
- return client.list_all()
+@mock.patch('msrestazure.azure_operation.AzureOperationPoller._poll', _poll)
+def _generatevpnclientpackage(
+ self, resource_group_name, virtual_network_gateway_name, parameters, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnclientpackage'
+ return _vpn_client_core(self, url, resource_group_name, virtual_network_gateway_name, parameters, custom_headers, raw, **operation_config)
+# endregion VPN CLIENT WORKAROUND`
-def check_nw_connectivity(client, watcher_rg, watcher_name, source_resource, source_port=None,
- dest_resource=None, dest_port=None, dest_address=None,
- resource_group_name=None):
- ConnectivitySource, ConnectivityDestination = \
- get_sdk(ResourceType.MGMT_NETWORK, 'ConnectivitySource', 'ConnectivityDestination',
- mod='models')
- source = ConnectivitySource(resource_id=source_resource, port=source_port)
- dest = ConnectivityDestination(resource_id=dest_resource, address=dest_address, port=dest_port)
- return client.check_connectivity(watcher_rg, watcher_name, source, dest)
+def generate_vpn_client(cmd, client, resource_group_name, virtual_network_gateway_name, processor_architecture=None,
+ authentication_method=None, radius_server_auth_certificate=None, client_root_certificates=None,
+ use_legacy=False):
+ params = cmd.get_models('VpnClientParameters')(
+ processor_architecture=processor_architecture
+ )
-def check_nw_ip_flow(client, vm, watcher_rg, watcher_name, direction, protocol, local, remote,
- resource_group_name=None, nic=None, location=None):
- VerificationIPFlowParameters = \
- get_sdk(ResourceType.MGMT_NETWORK, 'VerificationIPFlowParameters', mod='models')
+ if cmd.supported_api_version(min_api='2017-06-01') and not use_legacy:
+ params.authentication_method = authentication_method
+ params.radius_server_auth_certificate = radius_server_auth_certificate
+ params.client_root_certificates = client_root_certificates
+ return _generate_vpn_profile(client, resource_group_name, virtual_network_gateway_name, params)
- local_ip_address, local_port = local.split(':')
- remote_ip_address, remote_port = remote.split(':')
- if not is_valid_resource_id(vm):
- vm = resource_id(
- subscription=get_subscription_id(), resource_group=resource_group_name,
- namespace='Microsoft.Compute', type='virtualMachines', name=vm)
+ # legacy implementation
+ return _generatevpnclientpackage(client, resource_group_name, virtual_network_gateway_name, params)
- if nic and not is_valid_resource_id(nic):
- nic = resource_id(
- subscription=get_subscription_id(), resource_group=resource_group_name,
- namespace='Microsoft.Network', type='networkInterfaces', name=nic)
+# endregion
- return client.verify_ip_flow(
- watcher_rg, watcher_name,
- VerificationIPFlowParameters(
- target_resource_id=vm, direction=direction, protocol=protocol, local_port=local_port,
- remote_port=remote_port, local_ip_address=local_ip_address,
- remote_ip_address=remote_ip_address, target_nic_resource_id=nic))
+# region VirtualNetworkGatewayConnections
+# pylint: disable=too-many-locals
+def create_vpn_connection(cmd, resource_group_name, connection_name, vnet_gateway1,
+ location=None, tags=None, no_wait=False, validate=False,
+ vnet_gateway2=None, express_route_circuit2=None, local_gateway2=None,
+ authorization_key=None, enable_bgp=False, routing_weight=10,
+ connection_type=None, shared_key=None,
+ use_policy_based_traffic_selectors=False):
+ """
+ :param str vnet_gateway1: Name or ID of the source virtual network gateway.
+ :param str vnet_gateway2: Name or ID of the destination virtual network gateway to connect to
+ using a 'Vnet2Vnet' connection.
+ :param str local_gateway2: Name or ID of the destination local network gateway to connect to
+ using an 'IPSec' connection.
+ :param str express_route_circuit2: Name or ID of the destination ExpressRoute to connect to
+ using an 'ExpressRoute' connection.
+ :param str authorization_key: The authorization key for the VPN connection.
+ :param bool enable_bgp: Enable BGP for this VPN connection.
+ :param bool no_wait: Do not wait for the long running operation to finish.
+ :param bool validate: Display and validate the ARM template but do not create any resources.
+ """
+ from azure.cli.core.util import random_string
+ from azure.cli.command_modules.network._template_builder import \
+ ArmTemplateBuilder, build_vpn_connection_resource
-def show_nw_next_hop(client, resource_group_name, vm, watcher_rg, watcher_name,
- source_ip, dest_ip, nic=None, location=None):
- NextHopParameters = get_sdk(ResourceType.MGMT_NETWORK, 'NextHopParameters', mod='models')
+ client = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
+ DeploymentProperties = cmd.get_models('DeploymentProperties', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES)
+ tags = tags or {}
- if not is_valid_resource_id(vm):
- vm = resource_id(
- subscription=get_subscription_id(), resource_group=resource_group_name,
- namespace='Microsoft.Compute', type='virtualMachines', name=vm)
+ # Build up the ARM template
+ master_template = ArmTemplateBuilder()
+ vpn_connection_resource = build_vpn_connection_resource(
+ cmd, connection_name, location, tags, vnet_gateway1,
+ vnet_gateway2 or local_gateway2 or express_route_circuit2,
+ connection_type, authorization_key, enable_bgp, routing_weight, shared_key,
+ use_policy_based_traffic_selectors)
+ master_template.add_resource(vpn_connection_resource)
+ master_template.add_output('resource', connection_name, output_type='object')
- if nic and not is_valid_resource_id(nic):
- nic = resource_id(
- subscription=get_subscription_id(), resource_group=resource_group_name,
- namespace='Microsoft.Network', type='networkInterfaces', name=nic)
+ template = master_template.build()
- return client.get_next_hop(
- watcher_rg, watcher_name, NextHopParameters(target_resource_id=vm,
- source_ip_address=source_ip,
- destination_ip_address=dest_ip,
- target_nic_resource_id=nic))
+ # deploy ARM template
+ deployment_name = 'vpn_connection_deploy_' + random_string(32)
+ client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).deployments
+ properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
+ if validate:
+ _log_pprint_template(template)
+ return client.validate(resource_group_name, deployment_name, properties)
+ return client.create_or_update(
+ resource_group_name, deployment_name, properties, raw=no_wait)
-def show_nw_security_view(client, resource_group_name, vm, watcher_rg, watcher_name, location=None):
- if not is_valid_resource_id(vm):
- vm = resource_id(
- subscription=get_subscription_id(), resource_group=resource_group_name,
- namespace='Microsoft.Compute', type='virtualMachines', name=vm)
- return client.get_vm_security_rules(watcher_rg, watcher_name, vm)
+def update_vpn_connection(cmd, instance, routing_weight=None, shared_key=None, tags=None,
+ enable_bgp=None, use_policy_based_traffic_selectors=None):
+ ncf = network_client_factory(cmd.cli_ctx)
+ if routing_weight is not None:
+ instance.routing_weight = routing_weight
-def create_nw_packet_capture(client, resource_group_name, capture_name, vm,
- watcher_rg, watcher_name, location=None,
- storage_account=None, storage_path=None, file_path=None,
- capture_size=None, capture_limit=None, time_limit=None, filters=None):
- PacketCapture, PacketCaptureStorageLocation = \
- get_sdk(ResourceType.MGMT_NETWORK, 'PacketCapture', 'PacketCaptureStorageLocation',
- mod='models')
+ if shared_key is not None:
+ instance.shared_key = shared_key
- storage_settings = PacketCaptureStorageLocation(storage_id=storage_account,
- storage_path=storage_path, file_path=file_path)
- capture_params = PacketCapture(target=vm, storage_location=storage_settings,
- bytes_to_capture_per_packet=capture_size,
- total_bytes_per_session=capture_limit, time_limit_in_seconds=time_limit,
- filters=filters)
- return client.create(watcher_rg, watcher_name, capture_name, capture_params)
+ if tags is not None:
+ instance.tags = tags
+ if enable_bgp is not None:
+ instance.enable_bgp = enable_bgp
-def set_nsg_flow_logging(client, watcher_rg, watcher_name, nsg, storage_account=None,
- resource_group_name=None, enabled=None, retention=0):
- from azure.cli.core.commands import LongRunningOperation
- config = LongRunningOperation()(client.get_flow_log_status(watcher_rg, watcher_name, nsg))
- if enabled is not None:
- config.enabled = enabled
- if storage_account is not None:
- config.storage_id = storage_account
- if retention is not None:
- RetentionPolicyParameters = \
- get_sdk(ResourceType.MGMT_NETWORK, 'RetentionPolicyParameters', mod='models')
- config.retention_policy = RetentionPolicyParameters(days=retention, enabled=int(retention) > 0)
- return client.set_flow_log_configuration(watcher_rg, watcher_name, config)
+ if use_policy_based_traffic_selectors is not None:
+ instance.use_policy_based_traffic_selectors = use_policy_based_traffic_selectors
+ # TODO: Remove these when issue #1615 is fixed
+ gateway1_id = parse_resource_id(instance.virtual_network_gateway1.id)
+ instance.virtual_network_gateway1 = ncf.virtual_network_gateways.get(
+ gateway1_id['resource_group'], gateway1_id['name'])
-def show_nsg_flow_logging(client, watcher_rg, watcher_name, nsg, resource_group_name=None):
- return client.get_flow_log_status(watcher_rg, watcher_name, nsg)
+ if instance.virtual_network_gateway2:
+ gateway2_id = parse_resource_id(instance.virtual_network_gateway2.id)
+ instance.virtual_network_gateway2 = ncf.virtual_network_gateways.get(
+ gateway2_id['resource_group'], gateway2_id['name'])
+ if instance.local_network_gateway2:
+ gateway2_id = parse_resource_id(instance.local_network_gateway2.id)
+ instance.local_network_gateway2 = ncf.local_network_gateways.get(
+ gateway2_id['resource_group'], gateway2_id['name'])
-def start_nw_troubleshooting(client, watcher_name, watcher_rg, resource, storage_account,
- storage_path, resource_type=None, resource_group_name=None,
- no_wait=False):
- TroubleshootingParameters = get_sdk(ResourceType.MGMT_NETWORK, 'TroubleshootingParameters',
- mod='models')
- params = TroubleshootingParameters(target_resource_id=resource, storage_id=storage_account,
- storage_path=storage_path)
- return client.get_troubleshooting(watcher_rg, watcher_name, params, raw=no_wait)
+ return instance
-def show_nw_troubleshooting_result(client, watcher_name, watcher_rg, resource, resource_type=None,
- resource_group_name=None):
- return client.get_troubleshooting_result(watcher_rg, watcher_name, resource)
+def add_vpn_conn_ipsec_policy(cmd, resource_group_name, connection_name,
+ sa_life_time_seconds, sa_data_size_kilobytes,
+ ipsec_encryption, ipsec_integrity,
+ ike_encryption, ike_integrity, dh_group, pfs_group, no_wait=False):
+ IpsecPolicy = cmd.get_models('IpsecPolicy')
+ ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
+ conn = ncf.get(resource_group_name, connection_name)
+ new_policy = IpsecPolicy(sa_life_time_seconds=sa_life_time_seconds,
+ sa_data_size_kilobytes=sa_data_size_kilobytes,
+ ipsec_encryption=ipsec_encryption,
+ ipsec_integrity=ipsec_integrity,
+ ike_encryption=ike_encryption,
+ ike_integrity=ike_integrity,
+ dh_group=dh_group,
+ pfs_group=pfs_group)
+ if conn.ipsec_policies:
+ conn.ipsec_policies.append(new_policy)
+# endregion
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_multi_id_show.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_multi_id_show.yaml
deleted file mode 100644
index 2a7fbb29b20..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_multi_id_show.yaml
+++ /dev/null
@@ -1,146 +0,0 @@
-interactions:
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [90c157ac-9d50-11e7-a842-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id/providers/Microsoft.Network/publicIPAddresses/pip1\"\
- ,\r\n \"etag\": \"W/\\\"79b1ea88-3439-4f66-bcc7-02bd16523129\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"d5093f6a-cb25-45ce-a8b4-abd07925b0f4\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:20 GMT']
- ETag: [W/"79b1ea88-3439-4f66-bcc7-02bd16523129"]
- 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]
- content-length: ['582']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [90f96178-9d50-11e7-885d-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id/providers/Microsoft.Network/publicIPAddresses/pip2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"pip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id/providers/Microsoft.Network/publicIPAddresses/pip2\"\
- ,\r\n \"etag\": \"W/\\\"b42d248a-3c41-4334-8e40-3aae8b189786\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"eb49caf6-7d23-402d-854e-09096e21246b\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:24 GMT']
- ETag: [W/"b42d248a-3c41-4334-8e40-3aae8b189786"]
- 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]
- content-length: ['582']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [9300622c-9d50-11e7-8a2a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id/providers/Microsoft.Network/publicIPAddresses/pip1\"\
- ,\r\n \"etag\": \"W/\\\"79b1ea88-3439-4f66-bcc7-02bd16523129\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"d5093f6a-cb25-45ce-a8b4-abd07925b0f4\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:24 GMT']
- ETag: [W/"79b1ea88-3439-4f66-bcc7-02bd16523129"]
- 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]
- content-length: ['582']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [9321f9d4-9d50-11e7-a16c-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id/providers/Microsoft.Network/publicIPAddresses/pip2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"pip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id/providers/Microsoft.Network/publicIPAddresses/pip2\"\
- ,\r\n \"etag\": \"W/\\\"b42d248a-3c41-4334-8e40-3aae8b189786\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"eb49caf6-7d23-402d-854e-09096e21246b\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:25 GMT']
- ETag: [W/"b42d248a-3c41-4334-8e40-3aae8b189786"]
- 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]
- content-length: ['582']
- status: {code: 200, message: OK}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_cross_premise_connection.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_cross_premise_connection.yaml
index e67057ddb88..6d7671a31dd 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_cross_premise_connection.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_cross_premise_connection.yaml
@@ -1,4622 +1,5731 @@
interactions:
+- request:
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001","name":"cli_test_active_active_cross_premise_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:10 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee4b86c6-9ccc-11e7-8008-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection","name":"cli_test_active_active_cross_premise_connection","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001","name":"cli_test_active_active_cross_premise_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:04 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['284']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:12 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"sku": {"tier": "HighPerformance", "name": "HighPerformance"},
- "enableBgp": true, "gatewayType": "Vpn", "activeActive": true, "bgpSettings":
- {"asn": 65010}, "vpnType": "RouteBased", "ipConfigurations": [{"properties":
- {"privateIPAllocationMethod": "Dynamic", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/publicIPAddresses/gwip1"},
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"}},
- "name": "vnetGatewayConfig0"}, {"properties": {"privateIPAllocationMethod":
- "Dynamic", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/publicIPAddresses/gwip2"},
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"}},
- "name": "vnetGatewayConfig1"}]}, "location": "westus"}'
+ body: '{"location": "westus", "properties": {"subnets": [{"properties": {"addressPrefix":
+ "10.12.255.0/27"}, "name": "GatewaySubnet"}], "addressSpace": {"addressPrefixes":
+ ["10.11.0.0/16", "10.12.0.0/16"]}, "dhcpOptions": {}}, "tags": {}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1252']
+ Content-Length: ['231']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
- ,\r\n \"etag\": \"W/\\\"dfb914e7-3fb2-4573-bf8c-7ffd0fffa31c\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"166a4bd3-480f-430f-a5ea-e19587898cd5\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"dfb914e7-3fb2-4573-bf8c-7ffd0fffa31c\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/publicIPAddresses/gwip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"dfb914e7-3fb2-4573-bf8c-7ffd0fffa31c\\\"\"\
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"a7b25de2-ab59-4c8c-a819-161296d9f35b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Updating\",\r\n \"resourceGuid\": \"153b4527-7ea1-44a3-9e75-a98e8d875629\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n ]\r\n },\r\n \"\
+ dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\"\
+ : [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\":\
+ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ ,\r\n \"etag\": \"W/\\\"a7b25de2-ab59-4c8c-a819-161296d9f35b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/publicIPAddresses/gwip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\"\
- : [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\"\
- : []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \
- \ \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['2896']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:03 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1191']
+ ,\r\n \"addressPrefix\": \"10.12.255.0/27\"\r\n }\r\n \
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/39950e06-5a36-4f1f-a88a-e8536b686624?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1271']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:13 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1190']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/39950e06-5a36-4f1f-a88a-e8536b686624?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:14 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:16 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"9d3cd8a9-be96-4b27-9a4d-d9a04e255ef0\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"153b4527-7ea1-44a3-9e75-a98e8d875629\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n ]\r\n },\r\n \"\
+ dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\"\
+ : [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\":\
+ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ ,\r\n \"etag\": \"W/\\\"9d3cd8a9-be96-4b27-9a4d-d9a04e255ef0\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"addressPrefix\": \"10.12.255.0/27\"\r\n }\r\n \
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:24 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['1273']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:16 GMT']
+ etag: [W/"9d3cd8a9-be96-4b27-9a4d-d9a04e255ef0"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001?api-version=2017-05-10
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001","name":"cli_test_active_active_cross_premise_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "properties": {"publicIPAddressVersion": "IPv4",
+ "idleTimeoutInMinutes": 4, "publicIPAllocationMethod": "Dynamic"}, "sku": {"name":
+ "Basic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['164']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gwip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip1\"\
+ ,\r\n \"etag\": \"W/\\\"c79c56c0-6095-4461-b126-07e9ef3afa1e\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"16c1657a-5231-450e-a96c-8f96c2fbf375\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/41cf139f-c47b-48f9-a1e2-52cb7169dd99?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['639']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:18 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/41cf139f-c47b-48f9-a1e2-52cb7169dd99?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:45 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"name\": \"gwip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip1\"\
+ ,\r\n \"etag\": \"W/\\\"ac10be5d-8013-4e7f-9000-2b5f677eaf34\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"16c1657a-5231-450e-a96c-8f96c2fbf375\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:55 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['640']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:22 GMT']
+ etag: [W/"ac10be5d-8013-4e7f-9000-2b5f677eaf34"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001?api-version=2017-05-10
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001","name":"cli_test_active_active_cross_premise_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:57:05 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "properties": {"publicIPAddressVersion": "IPv4",
+ "idleTimeoutInMinutes": 4, "publicIPAllocationMethod": "Dynamic"}, "sku": {"name":
+ "Basic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['164']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gwip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip2\"\
+ ,\r\n \"etag\": \"W/\\\"5a8555f3-8888-4afb-8c7e-881163e6a7b5\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"b8d8bb54-3917-4163-b923-c3582aa6f348\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00ad9c2c-7979-4308-823e-5b507e9046e9?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['639']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00ad9c2c-7979-4308-823e-5b507e9046e9?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:57:16 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"name\": \"gwip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip2\"\
+ ,\r\n \"etag\": \"W/\\\"dc24ffa7-ca5d-4ba1-a1a5-536b33ebc644\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"b8d8bb54-3917-4163-b923-c3582aa6f348\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:57:25 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['640']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:28 GMT']
+ etag: [W/"dc24ffa7-ca5d-4ba1-a1a5-536b33ebc644"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001?api-version=2017-05-10
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001","name":"cli_test_active_active_cross_premise_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:57:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:28 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: null
+ body: 'b''{"location": "westus", "properties": {"gatewayType": "Vpn", "activeActive":
+ true, "enableBgp": true, "ipConfigurations": [{"properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip1"},
+ "privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"}},
+ "name": "vnetGatewayConfig0"}, {"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip2"},
+ "privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"}},
+ "name": "vnetGatewayConfig1"}], "sku": {"tier": "HighPerformance", "name": "HighPerformance"},
+ "vpnType": "RouteBased", "bgpSettings": {"asn": 65010}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['1340']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
+ ,\r\n \"etag\": \"W/\\\"df81ea56-27d0-4e97-bbe6-3c695a05fee8\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"7f8fbe51-e9dd-43cf-8418-87f4034ea628\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"df81ea56-27d0-4e97-bbe6-3c695a05fee8\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"df81ea56-27d0-4e97-bbe6-3c695a05fee8\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\"\
+ : [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\"\
+ : []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \
+ \ \"peerWeight\": 0\r\n }\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:57:46 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
- status: {code: 200, message: OK}
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['3050']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:28 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:57:56 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34:38 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:06 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:34: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:35:00 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:35:10 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:38 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:35: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:48 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:35:31 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:58 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:35:41 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:09 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:35:54 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:19 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:36:04 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:29 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:36:15 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:40 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:36:26 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:36: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:00:00 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:36: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:00:10 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:36: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:00:21 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:37:07 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:00:31 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:37: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:00:41 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:37:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:00:52 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:37:38 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:01:02 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:37:48 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:01:12 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:37:59 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:01:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:38:09 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:01:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:38: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:01:43 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:38: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:01:54 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:38:40 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:02:03 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:38: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:02:14 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:39:01 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:02:24 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:39: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:02:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:39:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:02:45 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:39:32 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:02:55 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:39: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03:06 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:39: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03:15 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:40: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03:26 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:40:14 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:40:24 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03:46 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:40: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03:57 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:40:45 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:06 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:40: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:41: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:41:16 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:38 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:41:26 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:48 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:41: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:58 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:41: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:08 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:41: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:18 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:42: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:29 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:42: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:39 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:42:29 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:49 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:42:39 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:00 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:42: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:11 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:43:00 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:20 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:43:10 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:30 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:43: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:41 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:43:31 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:51 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:43:41 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:01 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:43: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:12 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:44:02 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:44:12 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:44:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:43 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:44:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:53 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:44: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:03 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:44:53 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:14 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:45: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:25 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:45:13 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:45:24 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:45 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:45:34 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:56 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:45:45 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:06 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:45:56 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:46: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:46:15 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:38 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:46:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:48 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:46: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:59 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:46: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:09 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:46: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:19 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:47: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:29 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:47: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:40 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:47: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:47:38 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:00 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:47:48 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:10 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:47:59 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:21 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:48:10 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:31 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:48: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:41 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:48: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:52 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:48:41 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:02 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:48: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:12 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:49:01 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:49: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:49:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:42 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:49:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:52 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:49: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:03 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:49:53 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:13 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:50: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:23 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:50:13 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:50:24 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:44 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:50:34 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:54 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:50:44 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:05 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:50: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:15 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:51: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:25 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:51:16 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:51:26 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:46 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:51: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:55 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:51: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:07 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:51: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:16 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:52:07 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:52:17 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:52: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:47 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:52:38 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:58 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:52: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:16:08 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:52:59 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:16:18 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:53:09 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:16:28 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:53: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:16:38 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:53: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:16:48 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:53:40 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:16:59 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:53: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:17:09 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:54:01 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:17:19 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:54: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:17:30 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:54: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:17:39 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:54:32 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:17:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:54: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:18:00 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:54: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:18:11 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:55: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:18:21 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:55:13 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:18:30 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:55:24 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:18:41 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:55:34 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:18:52 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:55:45 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:19:01 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:55: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:19:12 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:56: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:19:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:56:16 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:19:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:56:26 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:19:42 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:56: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:19:53 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:56: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:20:03 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:56: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:20:13 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:57: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:20:24 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:57: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:20:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:57: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:20:44 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:57:39 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:20:55 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:57: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:21:04 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:58:00 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:21:14 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:58:10 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:21:25 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:58: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:21:38 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:58: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:21:48 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:58:41 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:21:58 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:58: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:09 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:59:04 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:18 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:59:14 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:29 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:59:25 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943efe7-3035-4c34-a8b9-e707830e8953?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:59:34 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:59:45 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:59: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:00: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:00:16 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:00:26 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:00: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:00: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:00: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:01:07 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:01: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:01:29 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:01:39 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:01: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:02:02 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:02:12 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:02:23 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:02:34 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:02: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:02:54 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:03:04 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:03:15 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:03:25 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:03: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:03: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:03:56 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:04:07 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:04:17 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:04:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:04:38 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:04: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:04:59 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:05:09 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:05: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:05:29 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:05:40 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:05: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:01 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:39 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]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00791383-efdb-452e-b024-f1151a90cc7d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:32 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee675102-9ccc-11e7-8075-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
- ,\r\n \"etag\": \"W/\\\"c0cbc21f-7e3b-4669-a92b-b3760013d71f\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
+ ,\r\n \"etag\": \"W/\\\"74310d6a-b2e1-4615-8413-f0b3bed3fc63\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"166a4bd3-480f-430f-a5ea-e19587898cd5\",\r\n \
+ ,\r\n \"resourceGuid\": \"7f8fbe51-e9dd-43cf-8418-87f4034ea628\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c0cbc21f-7e3b-4669-a92b-b3760013d71f\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"74310d6a-b2e1-4615-8413-f0b3bed3fc63\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/publicIPAddresses/gwip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"c0cbc21f-7e3b-4669-a92b-b3760013d71f\\\"\"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"74310d6a-b2e1-4615-8413-f0b3bed3fc63\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/publicIPAddresses/gwip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/publicIPAddresses/gwip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
\ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
@@ -4625,996 +5734,1547 @@ interactions:
: \"10.12.255.4,10.12.255.5\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\
\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['2952']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:32 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]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "eastus", "properties": {"gatewayIpAddress": "131.107.72.22",
+ "localNetworkAddressSpace": {"addressPrefixes": ["10.52.255.253/32"]}, "bgpSettings":
+ {"bgpPeeringAddress": "10.52.255.253", "asn": 65050}}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['215']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"lgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw2\"\
+ ,\r\n \"etag\": \"W/\\\"c4b54a35-c54d-4737-9180-bcf57e6dc758\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\"\
+ : \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"2d855e0e-8271-44ea-bdb0-78020e71d230\",\r\n \
+ \ \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \
+ \ \"10.52.255.253/32\"\r\n ]\r\n },\r\n \"gatewayIpAddress\"\
+ : \"131.107.72.22\",\r\n \"bgpSettings\": {\r\n \"asn\": 65050,\r\n\
+ \ \"bgpPeeringAddress\": \"10.52.255.253\",\r\n \"peerWeight\":\
+ \ 0\r\n }\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/768afc18-8eb6-4592-bcad-6ddc5566c225?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['758']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1191']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:40 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]
- content-length: ['2798']
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/768afc18-8eb6-4592-bcad-6ddc5566c225?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:45 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"gatewayIpAddress": "131.107.72.22", "bgpSettings": {"asn":
- 65050, "bgpPeeringAddress": "10.52.255.253"}, "localNetworkAddressSpace": {"addressPrefixes":
- ["10.52.255.253/32"]}}, "location": "eastus"}'
+ body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['215']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a5bb4cb4-9cd0-11e7-b1c8-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw2?api-version=2017-09-01
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw2\"\
- ,\r\n \"etag\": \"W/\\\"db6739e2-6f9a-47d1-888f-ec806d3efa9a\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw2\"\
+ ,\r\n \"etag\": \"W/\\\"4bf02d3c-aaf3-4cc2-9439-78c8b351d8fb\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\"\
- : \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"954e5267-e775-4f72-884d-6279f0a454fa\",\r\n \
+ : \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"2d855e0e-8271-44ea-bdb0-78020e71d230\",\r\n \
\ \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \
\ \"10.52.255.253/32\"\r\n ]\r\n },\r\n \"gatewayIpAddress\"\
: \"131.107.72.22\",\r\n \"bgpSettings\": {\r\n \"asn\": 65050,\r\n\
\ \"bgpPeeringAddress\": \"10.52.255.253\",\r\n \"peerWeight\":\
\ 0\r\n }\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/eastus/operations/85a8e318-178c-422a-bf22-ce1f7e1ad7dc?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['736']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:41 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
- status: {code: 201, message: Created}
+ cache-control: [no-cache]
+ content-length: ['759']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:44 GMT']
+ etag: [W/"4bf02d3c-aaf3-4cc2-9439-78c8b351d8fb"]
+ 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]
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a5bb4cb4-9cd0-11e7-b1c8-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/85a8e318-178c-422a-bf22-ce1f7e1ad7dc?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001?api-version=2017-05-10
response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001","name":"cli_test_active_active_cross_premise_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22: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]
- content-length: ['29']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"variables": {},
+ "parameters": {}, "resources": [{"type": "Microsoft.Network/connections", "properties":
+ {"connectionType": "IPSec", "authorizationKey": null, "routingWeight": 10, "usePolicyBasedTrafficSelectors":
+ false, "enableBgp": true, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},
+ "sharedKey": "abc123", "localNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw2"}},
+ "dependsOn": [], "location": "westus", "name": "Vnet1toSite5_1", "tags": {},
+ "apiVersion": "2015-06-15"}], "contentVersion": "1.0.0.0", "outputs": {"resource":
+ {"type": "object", "value": "[reference(\''Vnet1toSite5_1\'')]"}}, "$schema":
+ "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"},
+ "parameters": {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['1119']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9","name":"vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9","properties":{"templateHash":"14690139526256253381","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T19:06:51.5911876Z","duration":"PT0.60912S","correlationId":"5da0a66b-ab84-4e85-8077-a07640c0e768","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9/operationStatuses/08586934260744955433?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['693']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a5bb4cb4-9cd0-11e7-b1c8-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T03%3A06%3A56Z%20and%20correlationId%20eq%20%275da0a66b-ab84-4e85-8077-a07640c0e768%27&api-version=2015-04-01
response:
- body: {string: "{\r\n \"name\": \"lgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw2\"\
- ,\r\n \"etag\": \"W/\\\"78e029cb-a878-4e0c-a5d2-0a00a1a6ec7c\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\"\
- : \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"954e5267-e775-4f72-884d-6279f0a454fa\",\r\n \
- \ \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \
- \ \"10.52.255.253/32\"\r\n ]\r\n },\r\n \"gatewayIpAddress\"\
- : \"131.107.72.22\",\r\n \"bgpSettings\": {\r\n \"asn\": 65050,\r\n\
- \ \"bgpPeeringAddress\": \"10.52.255.253\",\r\n \"peerWeight\":\
- \ 0\r\n }\r\n }\r\n}"}
+ body: {string: '{"value":[]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:51 GMT']
- ETag: [W/"78e029cb-a878-4e0c-a5d2-0a00a1a6ec7c"]
- 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]
- content-length: ['737']
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:06:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [acf0ca02-9cd0-11e7-b455-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T03%3A07%3A06Z%20and%20correlationId%20eq%20%275da0a66b-ab84-4e85-8077-a07640c0e768%27&api-version=2015-04-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection","name":"cli_test_active_active_cross_premise_connection","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"value":[]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:52 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['284']
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:07:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"mode": "Incremental", "parameters": {}, "template": {"parameters":
- {}, "resources": [{"properties": {"enableBgp": true, "connectionType": "IPSec",
- "authorizationKey": null, "usePolicyBasedTrafficSelectors": false, "virtualNetworkGateway1":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1"},
- "routingWeight": 10, "localNetworkGateway2": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw2"},
- "sharedKey": "abc123"}, "apiVersion": "2015-06-15", "tags": {}, "type": "Microsoft.Network/connections",
- "dependsOn": [], "location": "westus", "name": "Vnet1toSite5_1"}], "$schema":
- "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "variables": {}, "contentVersion": "1.0.0.0", "outputs": {"resource": {"type":
- "object", "value": "[reference(''Vnet1toSite5_1'')]"}}}}}'
+ body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1075']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ad03dd28-9cd0-11e7-acad-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T03%3A07%3A17Z%20and%20correlationId%20eq%20%275da0a66b-ab84-4e85-8077-a07640c0e768%27&api-version=2015-04-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UJJKYN6mhLYv8Jv5R3cqiKrfdXxHKmdf","name":"vpn_connection_deploy_UJJKYN6mhLYv8Jv5R3cqiKrfdXxHKmdf","properties":{"templateHash":"6773107923285303992","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:22:53.9938723Z","duration":"PT0.4135436S","correlationId":"a2ae8b8a-6197-4687-b520-55f1bd1c3cb5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"5da0a66b-ab84-4e85-8077-a07640c0e768","description":"","eventDataId":"ceee72fe-53ec-4f72-bf30-1a976b825c17","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1d36c7a-1508-4f8f-8f67-abd2182255dc","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1/events/ceee72fe-53ec-4f72-bf30-1a976b825c17/ticks/636437776132905079","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"6e9b8917-915b-42db-81a7-668d678a1816","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Created","serviceRequestId":"e6dad0cd-191e-4d77-bd42-efd89cb2bd1f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:06:53.2905079Z","submissionTimestamp":"2017-10-16T19:07:09.4703838Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"5da0a66b-ab84-4e85-8077-a07640c0e768","description":"","eventDataId":"84c62d51-aff1-4781-ac69-69760f6b2016","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1d36c7a-1508-4f8f-8f67-abd2182255dc","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1/events/84c62d51-aff1-4781-ac69-69760f6b2016/ticks/636437776121452727","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"6e9b8917-915b-42db-81a7-668d678a1816","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:06:52.1452727Z","submissionTimestamp":"2017-10-16T19:07:09.4703838Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"5da0a66b-ab84-4e85-8077-a07640c0e768","description":"","eventDataId":"0e03fd6d-c2ad-4f09-858f-baecf7a979b2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"275871b6-b2a5-11e7-8fc1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9/events/0e03fd6d-c2ad-4f09-858f-baecf7a979b2/ticks/636437776119897159","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5da0a66b-ab84-4e85-8077-a07640c0e768","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:06:51.9897159Z","submissionTimestamp":"2017-10-16T19:07:10.0881532Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"5da0a66b-ab84-4e85-8077-a07640c0e768","description":"","eventDataId":"2ed5c039-5fbf-4368-8c59-d68d03de02e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"275871b6-b2a5-11e7-8fc1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9/events/2ed5c039-5fbf-4368-8c59-d68d03de02e7/ticks/636437776100209522","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5da0a66b-ab84-4e85-8077-a07640c0e768","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:06:50.0209522Z","submissionTimestamp":"2017-10-16T19:07:10.0881532Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UJJKYN6mhLYv8Jv5R3cqiKrfdXxHKmdf/operationStatuses/08586958263118972836?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['672']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:53 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
- status: {code: 201, message: Created}
+ cache-control: [no-cache]
+ content-length: ['14305']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:07:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ad03dd28-9cd0-11e7-acad-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958263118972836?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934260744955433?api-version=2017-05-10
response:
body: {string: '{"status":"Succeeded"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:23:24 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:07:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ad03dd28-9cd0-11e7-acad-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UJJKYN6mhLYv8Jv5R3cqiKrfdXxHKmdf","name":"vpn_connection_deploy_UJJKYN6mhLYv8Jv5R3cqiKrfdXxHKmdf","properties":{"templateHash":"6773107923285303992","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:23:18.6909587Z","duration":"PT25.11063S","correlationId":"a2ae8b8a-6197-4687-b520-55f1bd1c3cb5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"a6f77ce2-f771-4c6a-a5ef-8d6190221f02","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1"},"localNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw2"},"connectionType":"IPsec","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9","name":"vpn_connection_deploy_ow6pADlZZvGwwIyPDuKiYtGvcjUZmWZ9","properties":{"templateHash":"14690139526256253381","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T19:07:21.7315858Z","duration":"PT30.7495182S","correlationId":"5da0a66b-ab84-4e85-8077-a07640c0e768","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"2f1f069b-cd97-444d-b55a-ea079de832e3","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},"localNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw2"},"connectionType":"IPsec","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1"}]}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:23:24 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['1597']
+ cache-control: [no-cache]
+ content-length: ['1688']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:07:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: '{"keyLength": 128}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['18']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey/reset?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey/reset?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 00:23:25 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Mon, 16 Oct 2017 19:07:23 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:23:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:07:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:07:44 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:23:45 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:07:54 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:08:04 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:23:56 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:08:15 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:08:26 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24:06 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:08: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:08: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24:16 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:09:07 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:09: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:09: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:09:39 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:09: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24:47 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:10:00 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c05502ae-9cd0-11e7-8e50-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4eac7d-26b6-4270-89bf-f076457e4fca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15278d9b-c902-4416-bb88-0cabe1d9392e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:10:10 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [f81a8374-9cd0-11e7-bc63-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey?api-version=2017-09-01
response:
- body: {string: "{\r\n \"value\": \"GyPakn0AJvLeVa12Oq7K9bxpgwxkFG3VhdlQetc1pVbfiPD8CveIkGooZTr5Wkog4KToOQvXtu9y6HPyG5902FcCrYsJpgvZb5Z4axATYgZNgqcqhwLh7D6bFJ0xVmcD\"\
+ body: {string: "{\r\n \"value\": \"oMIVms0ROuDfK6b0kDGFMhk2dEvrfTjV7JEoKAiQyXePyWNyJmXkFcERCZlzEaf5N7yAoeC2lf0DgxiARvt4dKYIckPK0vafsuipZdHABwgY5J8QVMyglTadcctJDhkK\"\
\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24: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]
+ cache-control: [no-cache]
content-length: ['147']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:10:10 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [f8456e9e-9cd0-11e7-b440-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"Vnet1toSite5_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_1\"\
- ,\r\n \"etag\": \"W/\\\"ad3b2d49-c8d2-4776-80e4-3f8de12c2e46\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"Vnet1toSite5_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1\"\
+ ,\r\n \"etag\": \"W/\\\"aee53787-8c3f-4e24-a9a0-35f7f65adccb\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"a6f77ce2-f771-4c6a-a5ef-8d6190221f02\"\
- ,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
- \r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw2\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"2f1f069b-cd97-444d-b55a-ea079de832e3\"\
+ ,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
+ \r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw2\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
- : 10,\r\n \"sharedKey\": \"GyPakn0AJvLeVa12Oq7K9bxpgwxkFG3VhdlQetc1pVbfiPD8CveIkGooZTr5Wkog4KToOQvXtu9y6HPyG5902FcCrYsJpgvZb5Z4axATYgZNgqcqhwLh7D6bFJ0xVmcD\"\
+ : 10,\r\n \"sharedKey\": \"oMIVms0ROuDfK6b0kDGFMhk2dEvrfTjV7JEoKAiQyXePyWNyJmXkFcERCZlzEaf5N7yAoeC2lf0DgxiARvt4dKYIckPK0vafsuipZdHABwgY5J8QVMyglTadcctJDhkK\"\
,\r\n \"enableBgp\": true,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\
\n \"ipsecPolicies\": [],\r\n \"connectionStatus\": \"Connecting\",\r\
\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\
- \n \"tunnelConnectionStatus\": [\r\n {\r\n \"tunnel\": \"Vnet1toSite5_1_40.112.248.121\"\
+ \n \"tunnelConnectionStatus\": [\r\n {\r\n \"tunnel\": \"Vnet1toSite5_1_13.88.19.123\"\
,\r\n \"connectionStatus\": \"Connecting\",\r\n \"ingressBytesTransferred\"\
: 0,\r\n \"egressBytesTransferred\": 0,\r\n \"lastConnectionEstablishedUtcTime\"\
: \"1601-01-01T00:00:00Z\"\r\n },\r\n {\r\n \"tunnel\": \"\
- Vnet1toSite5_1_40.83.218.166\",\r\n \"connectionStatus\": \"Connecting\"\
+ Vnet1toSite5_1_40.86.181.91\",\r\n \"connectionStatus\": \"Connecting\"\
,\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\"\
: 0,\r\n \"lastConnectionEstablishedUtcTime\": \"1601-01-01T00:00:00Z\"\
\r\n }\r\n ]\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24:59 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]
- content-length: ['1915']
+ cache-control: [no-cache]
+ content-length: ['1978']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:10:12 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]
status: {code: 200, message: OK}
- request:
body: '{"value": "a1b2c3"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['19']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [f8a26bf8-9cd0-11e7-8a42-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/c682e689-67eb-4c1e-ac72-461ac88c8fae?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 00:25:00 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5280c3f-0032-49fc-9ff3-bca17ac90467?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Mon, 16 Oct 2017 19:10:13 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [f8a26bf8-9cd0-11e7-8a42-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c682e689-67eb-4c1e-ac72-461ac88c8fae?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5280c3f-0032-49fc-9ff3-bca17ac90467?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:10:23 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:10 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5280c3f-0032-49fc-9ff3-bca17ac90467?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:10:34 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [f8a26bf8-9cd0-11e7-8a42-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c682e689-67eb-4c1e-ac72-461ac88c8fae?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5280c3f-0032-49fc-9ff3-bca17ac90467?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:10:44 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:20 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5280c3f-0032-49fc-9ff3-bca17ac90467?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:10: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [f8a26bf8-9cd0-11e7-8a42-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c682e689-67eb-4c1e-ac72-461ac88c8fae?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5280c3f-0032-49fc-9ff3-bca17ac90467?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [f8a26bf8-9cd0-11e7-8a42-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": \"a1b2c3\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25: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]
+ cache-control: [no-cache]
content-length: ['25']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:10 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0bbaa770-9cd1-11e7-9899-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_1/sharedkey?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": \"a1b2c3\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:31 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]
+ cache-control: [no-cache]
content-length: ['25']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11: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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"gatewayIpAddress": "131.107.72.23", "bgpSettings": {"asn":
- 65050, "bgpPeeringAddress": "10.52.255.254"}, "localNetworkAddressSpace": {"addressPrefixes":
- ["10.52.255.254/32"]}}, "location": "eastus"}'
+ body: '{"location": "eastus", "properties": {"gatewayIpAddress": "131.107.72.23",
+ "localNetworkAddressSpace": {"addressPrefixes": ["10.52.255.254/32"]}, "bgpSettings":
+ {"bgpPeeringAddress": "10.52.255.254", "asn": 65050}}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['215']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0be0cdd0-9cd1-11e7-93e8-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw3?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw3?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lgw3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw3\"\
- ,\r\n \"etag\": \"W/\\\"8a5129ba-129f-4969-a068-7b3eb5b87e0e\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lgw3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw3\"\
+ ,\r\n \"etag\": \"W/\\\"357a4f2b-d43d-43dd-8ba1-b48a3cc03ca5\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\"\
: \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"b9166817-0c8d-46b3-9c53-958ac497dce0\",\r\n \
+ ,\r\n \"resourceGuid\": \"11f8a199-0d78-4bbe-8ef3-8aa74d7e58c1\",\r\n \
\ \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \
\ \"10.52.255.254/32\"\r\n ]\r\n },\r\n \"gatewayIpAddress\"\
: \"131.107.72.23\",\r\n \"bgpSettings\": {\r\n \"asn\": 65050,\r\n\
\ \"bgpPeeringAddress\": \"10.52.255.254\",\r\n \"peerWeight\":\
\ 0\r\n }\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/eastus/operations/4cadbf50-995a-43de-8285-2b83b72acaaf?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['736']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/94b0d567-68d7-4cf2-8418-d07f0acf7322?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['758']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:13 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0be0cdd0-9cd1-11e7-93e8-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4cadbf50-995a-43de-8285-2b83b72acaaf?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/94b0d567-68d7-4cf2-8418-d07f0acf7322?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:23 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0be0cdd0-9cd1-11e7-93e8-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw3?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw3?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lgw3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw3\"\
- ,\r\n \"etag\": \"W/\\\"79e45af8-d7c2-4343-8d3d-458df4923a62\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lgw3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw3\"\
+ ,\r\n \"etag\": \"W/\\\"c3b33899-0941-4797-b39b-6b317484a875\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\"\
: \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"b9166817-0c8d-46b3-9c53-958ac497dce0\",\r\n \
+ ,\r\n \"resourceGuid\": \"11f8a199-0d78-4bbe-8ef3-8aa74d7e58c1\",\r\n \
\ \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \
\ \"10.52.255.254/32\"\r\n ]\r\n },\r\n \"gatewayIpAddress\"\
: \"131.107.72.23\",\r\n \"bgpSettings\": {\r\n \"asn\": 65050,\r\n\
\ \"bgpPeeringAddress\": \"10.52.255.254\",\r\n \"peerWeight\":\
\ 0\r\n }\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['759']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:23 GMT']
+ etag: [W/"c3b33899-0941-4797-b39b-6b317484a875"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001","name":"cli_test_active_active_cross_premise_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"variables": {},
+ "parameters": {}, "resources": [{"type": "Microsoft.Network/connections", "properties":
+ {"connectionType": "IPSec", "authorizationKey": null, "routingWeight": 10, "usePolicyBasedTrafficSelectors":
+ false, "enableBgp": true, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},
+ "sharedKey": "abc123", "localNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw3"}},
+ "dependsOn": [], "location": "westus", "name": "Vnet1toSite5_2", "tags": {},
+ "apiVersion": "2015-06-15"}], "contentVersion": "1.0.0.0", "outputs": {"resource":
+ {"type": "object", "value": "[reference(\''Vnet1toSite5_2\'')]"}}, "$schema":
+ "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"},
+ "parameters": {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['1119']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","name":"vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","properties":{"templateHash":"6618294321593633566","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T19:11:27.0245257Z","duration":"PT0.5823548S","correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/operationStatuses/08586934257990354450?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['694']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:43 GMT']
- ETag: [W/"79e45af8-d7c2-4343-8d3d-458df4923a62"]
- 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]
- content-length: ['737']
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T03%3A11%3A36Z%20and%20correlationId%20eq%20%279b457ef4-f36c-4248-8970-934a3ff27099%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [13295e26-9cd1-11e7-b951-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T03%3A11%3A46Z%20and%20correlationId%20eq%20%279b457ef4-f36c-4248-8970-934a3ff27099%27&api-version=2015-04-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection","name":"cli_test_active_active_cross_premise_connection","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"07afd597-95de-49ed-ba70-023c75af2a04","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cdf82d9c-b2a5-11e7-afa0-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/07afd597-95de-49ed-ba70-023c75af2a04/ticks/636437778871850277","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9b457ef4-f36c-4248-8970-934a3ff27099","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:11:27.1850277Z","submissionTimestamp":"2017-10-16T19:11:39.7764361Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"e3bd59d2-03a3-4fec-b3d3-6bb20e97f13f","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cdf82d9c-b2a5-11e7-afa0-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/e3bd59d2-03a3-4fec-b3d3-6bb20e97f13f/ticks/636437778856381502","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9b457ef4-f36c-4248-8970-934a3ff27099","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:25.6381502Z","submissionTimestamp":"2017-10-16T19:11:39.7764361Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['7281']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:46 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:43 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['284']
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934257990354450?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:57 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"mode": "Incremental", "parameters": {}, "template": {"parameters":
- {}, "resources": [{"properties": {"enableBgp": true, "connectionType": "IPSec",
- "authorizationKey": null, "usePolicyBasedTrafficSelectors": false, "virtualNetworkGateway1":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1"},
- "routingWeight": 10, "localNetworkGateway2": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw3"},
- "sharedKey": "abc123"}, "apiVersion": "2015-06-15", "tags": {}, "type": "Microsoft.Network/connections",
- "dependsOn": [], "location": "westus", "name": "Vnet1toSite5_2"}], "$schema":
- "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "variables": {}, "contentVersion": "1.0.0.0", "outputs": {"resource": {"type":
- "object", "value": "[reference(''Vnet1toSite5_2'')]"}}}}}'
+ body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1075']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [133a0efa-9cd1-11e7-bbd6-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T03%3A11%3A57Z%20and%20correlationId%20eq%20%279b457ef4-f36c-4248-8970-934a3ff27099%27&api-version=2015-04-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_JURROpjfepjRCSCYlHv4dybeSjJOrJUp","name":"vpn_connection_deploy_JURROpjfepjRCSCYlHv4dybeSjJOrJUp","properties":{"templateHash":"10555654102769182911","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:25:45.6678275Z","duration":"PT0.5262542S","correlationId":"f59424cf-3588-42ea-b87f-7b141e727bf2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"d2fc6a73-98f0-414c-848e-e9ff112a26a5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0f5885a3-0fb5-4c35-b7a4-7479cc7854fe","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/d2fc6a73-98f0-414c-848e-e9ff112a26a5/ticks/636437778930311608","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"c4be6c18-638a-45d6-9c99-82f87bc56849","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Created","serviceRequestId":"b3352ce4-e9b7-4723-81eb-72b2171dc5a8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:11:33.0311608Z","submissionTimestamp":"2017-10-16T19:11:50.5904535Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"09ef1133-7a2b-473c-b54d-18610c9dd245","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0f5885a3-0fb5-4c35-b7a4-7479cc7854fe","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/09ef1133-7a2b-473c-b54d-18610c9dd245/ticks/636437778902180074","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"c4be6c18-638a-45d6-9c99-82f87bc56849","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:30.2180074Z","submissionTimestamp":"2017-10-16T19:11:50.5904535Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"07afd597-95de-49ed-ba70-023c75af2a04","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cdf82d9c-b2a5-11e7-afa0-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/07afd597-95de-49ed-ba70-023c75af2a04/ticks/636437778871850277","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9b457ef4-f36c-4248-8970-934a3ff27099","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:11:27.1850277Z","submissionTimestamp":"2017-10-16T19:11:39.7764361Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"e3bd59d2-03a3-4fec-b3d3-6bb20e97f13f","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cdf82d9c-b2a5-11e7-afa0-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/e3bd59d2-03a3-4fec-b3d3-6bb20e97f13f/ticks/636437778856381502","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9b457ef4-f36c-4248-8970-934a3ff27099","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:25.6381502Z","submissionTimestamp":"2017-10-16T19:11:39.7764361Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['14305']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:11:57 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_JURROpjfepjRCSCYlHv4dybeSjJOrJUp/operationStatuses/08586958261403360401?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['673']
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:45 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
- status: {code: 201, message: Created}
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T03%3A12%3A07Z%20and%20correlationId%20eq%20%279b457ef4-f36c-4248-8970-934a3ff27099%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"e16f7409-cc89-4bcd-aec9-11caef7a6c14","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/e16f7409-cc89-4bcd-aec9-11caef7a6c14/ticks/636437779059663342","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"063cc2c3-f072-42fc-a8f4-aae1e8b2301e","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:45.9663342Z","submissionTimestamp":"2017-10-16T19:12:00.0160705Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"d2fc6a73-98f0-414c-848e-e9ff112a26a5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0f5885a3-0fb5-4c35-b7a4-7479cc7854fe","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/d2fc6a73-98f0-414c-848e-e9ff112a26a5/ticks/636437778930311608","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"c4be6c18-638a-45d6-9c99-82f87bc56849","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Created","serviceRequestId":"b3352ce4-e9b7-4723-81eb-72b2171dc5a8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:11:33.0311608Z","submissionTimestamp":"2017-10-16T19:11:50.5904535Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"09ef1133-7a2b-473c-b54d-18610c9dd245","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0f5885a3-0fb5-4c35-b7a4-7479cc7854fe","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/09ef1133-7a2b-473c-b54d-18610c9dd245/ticks/636437778902180074","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"c4be6c18-638a-45d6-9c99-82f87bc56849","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:30.2180074Z","submissionTimestamp":"2017-10-16T19:11:50.5904535Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"07afd597-95de-49ed-ba70-023c75af2a04","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cdf82d9c-b2a5-11e7-afa0-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/07afd597-95de-49ed-ba70-023c75af2a04/ticks/636437778871850277","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9b457ef4-f36c-4248-8970-934a3ff27099","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:11:27.1850277Z","submissionTimestamp":"2017-10-16T19:11:39.7764361Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"e3bd59d2-03a3-4fec-b3d3-6bb20e97f13f","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cdf82d9c-b2a5-11e7-afa0-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/e3bd59d2-03a3-4fec-b3d3-6bb20e97f13f/ticks/636437778856381502","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9b457ef4-f36c-4248-8970-934a3ff27099","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:25.6381502Z","submissionTimestamp":"2017-10-16T19:11:39.7764361Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['17722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:12:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [133a0efa-9cd1-11e7-bbd6-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958261403360401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T03%3A12%3A18Z%20and%20correlationId%20eq%20%279b457ef4-f36c-4248-8970-934a3ff27099%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Succeeded"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"4ce2ba3a-b3a9-46e7-9820-6ada6b85f59c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/4ce2ba3a-b3a9-46e7-9820-6ada6b85f59c/ticks/636437779182730176","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"b204d66a-5cdc-482b-b0a7-9463430cf452","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:58.2730176Z","submissionTimestamp":"2017-10-16T19:12:10.1462427Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"22203ddd-5d48-4101-af30-c91c6c9cd351","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/22203ddd-5d48-4101-af30-c91c6c9cd351/ticks/636437779139206643","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"be12259d-1448-43ec-b044-599bf9b21c9b","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:53.9206643Z","submissionTimestamp":"2017-10-16T19:12:09.7989356Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"e16f7409-cc89-4bcd-aec9-11caef7a6c14","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/e16f7409-cc89-4bcd-aec9-11caef7a6c14/ticks/636437779059663342","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"063cc2c3-f072-42fc-a8f4-aae1e8b2301e","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:45.9663342Z","submissionTimestamp":"2017-10-16T19:12:00.0160705Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"d2fc6a73-98f0-414c-848e-e9ff112a26a5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0f5885a3-0fb5-4c35-b7a4-7479cc7854fe","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/d2fc6a73-98f0-414c-848e-e9ff112a26a5/ticks/636437778930311608","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"c4be6c18-638a-45d6-9c99-82f87bc56849","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Created","serviceRequestId":"b3352ce4-e9b7-4723-81eb-72b2171dc5a8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:11:33.0311608Z","submissionTimestamp":"2017-10-16T19:11:50.5904535Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"09ef1133-7a2b-473c-b54d-18610c9dd245","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0f5885a3-0fb5-4c35-b7a4-7479cc7854fe","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2/events/09ef1133-7a2b-473c-b54d-18610c9dd245/ticks/636437778902180074","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"c4be6c18-638a-45d6-9c99-82f87bc56849","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:30.2180074Z","submissionTimestamp":"2017-10-16T19:11:50.5904535Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"07afd597-95de-49ed-ba70-023c75af2a04","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cdf82d9c-b2a5-11e7-afa0-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/07afd597-95de-49ed-ba70-023c75af2a04/ticks/636437778871850277","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9b457ef4-f36c-4248-8970-934a3ff27099","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T19:11:27.1850277Z","submissionTimestamp":"2017-10-16T19:11:39.7764361Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508178685","nbf":"1508178685","exp":"1508182585","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYJD8M33SbL8Fh7pEOLWy3r7a8txW6o7pT89aJb57LFuyZVkB","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"CB8UM-SceUumNn2BdD40AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","description":"","eventDataId":"e3bd59d2-03a3-4fec-b3d3-6bb20e97f13f","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cdf82d9c-b2a5-11e7-afa0-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0/events/e3bd59d2-03a3-4fec-b3d3-6bb20e97f13f/ticks/636437778856381502","level":"Informational","resourceGroupName":"cli_test_active_active_cross_premise_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9b457ef4-f36c-4248-8970-934a3ff27099","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T19:11:25.6381502Z","submissionTimestamp":"2017-10-16T19:11:39.7764361Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['24510']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:12:18 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:26:15 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934257990354450?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:12:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [133a0efa-9cd1-11e7-bbd6-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_JURROpjfepjRCSCYlHv4dybeSjJOrJUp","name":"vpn_connection_deploy_JURROpjfepjRCSCYlHv4dybeSjJOrJUp","properties":{"templateHash":"10555654102769182911","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:26:09.2371034Z","duration":"PT24.0955301S","correlationId":"f59424cf-3588-42ea-b87f-7b141e727bf2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"eff4fa2d-5621-42be-b793-688f933191d6","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/virtualNetworkGateways/gw1"},"localNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/localNetworkGateways/lgw3"},"connectionType":"IPsec","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection/providers/Microsoft.Network/connections/Vnet1toSite5_2"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","name":"vpn_connection_deploy_tc3E4Vl25zDOykBCsa1b6mdxXL3mRFs0","properties":{"templateHash":"6618294321593633566","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T19:11:58.2084307Z","duration":"PT31.7662598S","correlationId":"9b457ef4-f36c-4248-8970-934a3ff27099","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"3a931cb5-a138-405a-b400-6860ed520d9c","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},"localNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/localNetworkGateways/lgw3"},"connectionType":"IPsec","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection000001/providers/Microsoft.Network/connections/Vnet1toSite5_2"}]}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:26:15 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['1600']
+ cache-control: [no-cache]
+ content-length: ['1687']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 19:12:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_cross_premise_connection000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Mon, 16 Oct 2017 19:12:28 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUNUSVZFOjVGQUNUSVZFOjVGQ1JPU1M6NUZQUkVNSVNFOnw4RTY3NzhBNjg3OTRGRUQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_vnet_connection.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_vnet_connection.yaml
new file mode 100644
index 00000000000..1d548e86e68
--- /dev/null
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_vnet_connection.yaml
@@ -0,0 +1,4787 @@
+interactions:
+- request:
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:43 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1187']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:43 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "tags": {}, "properties": {"dhcpOptions": {}, "addressSpace":
+ {"addressPrefixes": ["10.21.0.0/16"]}, "subnets": [{"name": "GatewaySubnet",
+ "properties": {"addressPrefix": "10.21.255.0/27"}}]}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['215']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"e14f6e7f-0c16-48c5-bef1-cd15dad66542\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Updating\",\r\n \"resourceGuid\": \"135bf8c2-b57a-4e6f-b890-d827af2b0640\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.21.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\
+ dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"\
+ name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ ,\r\n \"etag\": \"W/\\\"e14f6e7f-0c16-48c5-bef1-cd15dad66542\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"addressPrefix\": \"10.21.255.0/27\"\r\n }\r\n \
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6f5d764c-96be-4241-b9bb-0adce33e71da?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1246']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:44 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1179']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6f5d764c-96be-4241-b9bb-0adce33e71da?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"98d26f3c-3dc7-41dd-b955-552dd0ca96bb\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"135bf8c2-b57a-4e6f-b890-d827af2b0640\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.21.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\
+ dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"\
+ name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ ,\r\n \"etag\": \"W/\\\"98d26f3c-3dc7-41dd-b955-552dd0ca96bb\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"addressPrefix\": \"10.21.255.0/27\"\r\n }\r\n \
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1248']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:48 GMT']
+ etag: [W/"98d26f3c-3dc7-41dd-b955-552dd0ca96bb"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:48 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic",
+ "idleTimeoutInMinutes": 4, "publicIPAddressVersion": "IPv4"}, "sku": {"name":
+ "Basic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['164']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gw1ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ ,\r\n \"etag\": \"W/\\\"31021c39-c7f4-4ae8-8965-3f2671082a0d\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"c1f56649-6cbc-42f4-8e0b-2e5e8a501c3d\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/157afa89-9383-424f-8b34-605694313d0b?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['641']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/157afa89-9383-424f-8b34-605694313d0b?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:53 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gw1ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ ,\r\n \"etag\": \"W/\\\"f2164e24-2ad0-439a-a547-52db32b46936\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"c1f56649-6cbc-42f4-8e0b-2e5e8a501c3d\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['642']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:53 GMT']
+ etag: [W/"f2164e24-2ad0-439a-a547-52db32b46936"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic",
+ "idleTimeoutInMinutes": 4, "publicIPAddressVersion": "IPv4"}, "sku": {"name":
+ "Basic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['164']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gw1ip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ ,\r\n \"etag\": \"W/\\\"bb796130-abda-4513-91ad-8f000bc33e85\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"64660baa-774f-434c-9745-3bf8e460b8d3\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ec7d71df-f67d-449c-a740-9c200aa6993f?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['641']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ec7d71df-f67d-449c-a740-9c200aa6993f?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gw1ip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ ,\r\n \"etag\": \"W/\\\"08c0e56e-0377-450e-bc9d-0d3f01ec1d7d\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"64660baa-774f-434c-9745-3bf8e460b8d3\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['642']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:59 GMT']
+ etag: [W/"08c0e56e-0377-450e-bc9d-0d3f01ec1d7d"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:58 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "tags": {}, "properties": {"dhcpOptions": {}, "addressSpace":
+ {"addressPrefixes": ["10.22.0.0/16"]}, "subnets": [{"name": "GatewaySubnet",
+ "properties": {"addressPrefix": "10.22.255.0/27"}}]}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['215']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
+ ,\r\n \"etag\": \"W/\\\"9fbb22af-19e1-4a68-bfae-a1ef57a344fa\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Updating\",\r\n \"resourceGuid\": \"2a4ac6b5-5da7-4cc2-90c9-5c988b91616d\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.22.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\
+ dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"\
+ name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
+ ,\r\n \"etag\": \"W/\\\"9fbb22af-19e1-4a68-bfae-a1ef57a344fa\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"addressPrefix\": \"10.22.255.0/27\"\r\n }\r\n \
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5edf435-6df9-4d02-a75e-66769bcbbed5?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1246']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:55:59 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5edf435-6df9-4d02-a75e-66769bcbbed5?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
+ ,\r\n \"etag\": \"W/\\\"2b56ef00-c9b6-48de-9183-56c04dd4a97e\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"2a4ac6b5-5da7-4cc2-90c9-5c988b91616d\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.22.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\
+ dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"\
+ name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
+ ,\r\n \"etag\": \"W/\\\"2b56ef00-c9b6-48de-9183-56c04dd4a97e\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"addressPrefix\": \"10.22.255.0/27\"\r\n }\r\n \
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1248']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:04 GMT']
+ etag: [W/"2b56ef00-c9b6-48de-9183-56c04dd4a97e"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:03 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic",
+ "idleTimeoutInMinutes": 4, "publicIPAddressVersion": "IPv4"}, "sku": {"name":
+ "Basic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['164']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gw2ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
+ ,\r\n \"etag\": \"W/\\\"fe3f8763-ea06-4560-95d3-d0d4f0225aca\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"55600553-d49d-4fda-b167-9d1c1740eb59\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb25915e-72f0-4ea3-b951-39441097e100?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['641']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:05 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb25915e-72f0-4ea3-b951-39441097e100?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gw2ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
+ ,\r\n \"etag\": \"W/\\\"62d59d48-9271-4a3e-b65e-5a7cc74dbe1b\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"55600553-d49d-4fda-b167-9d1c1740eb59\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['642']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:08 GMT']
+ etag: [W/"62d59d48-9271-4a3e-b65e-5a7cc74dbe1b"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic",
+ "idleTimeoutInMinutes": 4, "publicIPAddressVersion": "IPv4"}, "sku": {"name":
+ "Basic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['164']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gw2ip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
+ ,\r\n \"etag\": \"W/\\\"8a234890-5ade-4a14-8677-74b16f63bc9e\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"7a67c791-8fae-4308-9a02-558093a04833\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c9a511fb-073c-4144-b548-ddb11e85dfe6?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['641']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c9a511fb-073c-4144-b548-ddb11e85dfe6?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:13 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"gw2ip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
+ ,\r\n \"etag\": \"W/\\\"aac370c4-5704-4b68-a52b-ccc0701319bd\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"7a67c791-8fae-4308-9a02-558093a04833\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['642']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:13 GMT']
+ etag: [W/"aac370c4-5704-4b68-a52b-ccc0701319bd"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:14 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"location": "westus", "properties": {"ipConfigurations": [{"name":
+ "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1"},
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"}}},
+ {"name": "vnetGatewayConfig1", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2"},
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"}}}],
+ "sku": {"name": "HighPerformance", "tier": "HighPerformance"}, "gatewayType":
+ "Vpn", "vpnType": "RouteBased", "activeActive": true, "enableBgp": true, "bgpSettings":
+ {"asn": 65010}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['1342']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\"\
+ : [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\"\
+ : []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \
+ \ \"peerWeight\": 0\r\n }\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3fe9770e-56e3-456c-9d1c-c879bb6fa70c?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['3056']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:14 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"location": "westus", "properties": {"ipConfigurations": [{"name":
+ "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1"},
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet"}}},
+ {"name": "vnetGatewayConfig1", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2"},
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet"}}}],
+ "sku": {"name": "HighPerformance", "tier": "HighPerformance"}, "gatewayType":
+ "Vpn", "vpnType": "RouteBased", "activeActive": true, "enableBgp": true, "bgpSettings":
+ {"asn": 65020}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['1342']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
+ ,\r\n \"etag\": \"W/\\\"700f1519-2546-42cb-b6e8-e9f4a4d7f8e0\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"d9a8a61d-6658-4aa9-af77-e82450a91384\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"700f1519-2546-42cb-b6e8-e9f4a4d7f8e0\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"700f1519-2546-42cb-b6e8-e9f4a4d7f8e0\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\"\
+ : [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\"\
+ : []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \
+ \ \"peerWeight\": 0\r\n }\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b59d46c-2494-47d4-a41b-8f30924a1b11?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['3056']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:16 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:56:45 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:57:16 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:57: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:58:17 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:58: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:59:17 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 17:59:48 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:00: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:00:48 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:01:23 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:01:53 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:02:23 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:02:53 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:03:24 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:03:54 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:04:24 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:04: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:05:25 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:05: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:06:25 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:06:56 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:07:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:07:56 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:08:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:09: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:09: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:10: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:10: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:11:29 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:11:59 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:12: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:13:00 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:13: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:14:00 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:14: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:15:01 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:15:31 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:16:02 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:16:32 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:17: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:17:32 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:18: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:18:34 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:19:34 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:20:04 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:20: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:21: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:21: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:22:07 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:22: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:23:07 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:24:07 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:24:38 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:25:09 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:25:38 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:26: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:26:39 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:27:09 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc2cc2c-4176-4702-8818-c0b4abeb536b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
+ : 0\r\n }\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2900']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:27:39 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
+ ,\r\n \"etag\": \"W/\\\"e104346c-b297-45f8-9539-ed8490f41680\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"f743393b-6fc3-4a7e-ad87-d3c014b56e4c\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"e104346c-b297-45f8-9539-ed8490f41680\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"e104346c-b297-45f8-9539-ed8490f41680\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"bgpPeeringAddress\"\
+ : \"10.21.255.4,10.21.255.5\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\
+ \n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2958']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:10 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
+ ,\r\n \"etag\": \"W/\\\"02213e59-f86e-4b6c-8049-b1c56757e671\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"d9a8a61d-6658-4aa9-af77-e82450a91384\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"02213e59-f86e-4b6c-8049-b1c56757e671\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
+ vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
+ ,\r\n \"etag\": \"W/\\\"02213e59-f86e-4b6c-8049-b1c56757e671\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
+ ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
+ \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
+ : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\"\
+ : \"10.22.255.4,10.22.255.5\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\
+ \n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2958']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"template": {"resources": [{"apiVersion": "2015-06-15",
+ "tags": {}, "location": "westus", "name": "vnet1to2", "properties": {"authorizationKey":
+ null, "usePolicyBasedTrafficSelectors": false, "sharedKey": "abc123", "virtualNetworkGateway2":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},
+ "routingWeight": 10, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},
+ "connectionType": "Vnet2Vnet", "enableBgp": true}, "dependsOn": [], "type":
+ "Microsoft.Network/connections"}], "outputs": {"resource": {"value": "[reference(\''vnet1to2\'')]",
+ "type": "object"}}, "variables": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "parameters": {}, "contentVersion": "1.0.0.0"}, "mode": "Incremental", "parameters":
+ {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['1116']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi","name":"vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi","properties":{"templateHash":"6216794289813503847","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T18:28:13.1478872Z","duration":"PT0.5642511S","correlationId":"1d39391f-dc2c-4726-805c-0f2b447aa320","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi/operationStatuses/08586934283928939760?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['694']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:12 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T02%3A28%3A21Z%20and%20correlationId%20eq%20%271d39391f-dc2c-4726-805c-0f2b447aa320%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T02%3A28%3A32Z%20and%20correlationId%20eq%20%271d39391f-dc2c-4726-805c-0f2b447aa320%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:32 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T02%3A28%3A42Z%20and%20correlationId%20eq%20%271d39391f-dc2c-4726-805c-0f2b447aa320%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508175377","nbf":"1508175377","exp":"1508179277","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYPg25+7jpQ8uhpVm5PZr9zfn5nOpprbmi0qwzzN6dNJqqi4A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"Nbb0EeTOsk-_XynY-gBEAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"1d39391f-dc2c-4726-805c-0f2b447aa320","description":"","eventDataId":"4c322934-4fbb-44e8-87ad-6d8ff2164168","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"555f56a7-2ff4-4f3e-88b3-bad42e0cc5ff","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2/events/4c322934-4fbb-44e8-87ad-6d8ff2164168/ticks/636437752981395525","level":"Informational","resourceGroupName":"cli_test_active_active_vnet_vnet_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"8b3c3688-3fc3-40cc-abab-8de531479e5d","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Created","serviceRequestId":"a9691410-e8ab-4c1e-8df5-8a138683852a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T18:28:18.1395525Z","submissionTimestamp":"2017-10-16T18:28:30.5788963Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508175377","nbf":"1508175377","exp":"1508179277","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYPg25+7jpQ8uhpVm5PZr9zfn5nOpprbmi0qwzzN6dNJqqi4A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"Nbb0EeTOsk-_XynY-gBEAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"1d39391f-dc2c-4726-805c-0f2b447aa320","description":"","eventDataId":"c49caaf3-116e-4bc8-843c-928769d99d23","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"555f56a7-2ff4-4f3e-88b3-bad42e0cc5ff","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2/events/c49caaf3-116e-4bc8-843c-928769d99d23/ticks/636437752956082896","level":"Informational","resourceGroupName":"cli_test_active_active_vnet_vnet_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"8b3c3688-3fc3-40cc-abab-8de531479e5d","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T18:28:15.6082896Z","submissionTimestamp":"2017-10-16T18:28:30.5778947Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508175377","nbf":"1508175377","exp":"1508179277","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYPg25+7jpQ8uhpVm5PZr9zfn5nOpprbmi0qwzzN6dNJqqi4A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"Nbb0EeTOsk-_XynY-gBEAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"1d39391f-dc2c-4726-805c-0f2b447aa320","description":"","eventDataId":"0f7d9d3c-87b5-45ee-9f3e-a96de76c20ab","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3d6f8c0-b29f-11e7-b7cd-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi/events/0f7d9d3c-87b5-45ee-9f3e-a96de76c20ab/ticks/636437752933156416","level":"Informational","resourceGroupName":"cli_test_active_active_vnet_vnet_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1d39391f-dc2c-4726-805c-0f2b447aa320","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T18:28:13.3156416Z","submissionTimestamp":"2017-10-16T18:28:29.9468128Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508175377","nbf":"1508175377","exp":"1508179277","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYPg25+7jpQ8uhpVm5PZr9zfn5nOpprbmi0qwzzN6dNJqqi4A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"Nbb0EeTOsk-_XynY-gBEAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"1d39391f-dc2c-4726-805c-0f2b447aa320","description":"","eventDataId":"c2c8c1b2-1fff-4b8c-bd43-4037d54c3cb0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3d6f8c0-b29f-11e7-b7cd-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi/events/c2c8c1b2-1fff-4b8c-bd43-4037d54c3cb0/ticks/636437752917378539","level":"Informational","resourceGroupName":"cli_test_active_active_vnet_vnet_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1d39391f-dc2c-4726-805c-0f2b447aa320","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T18:28:11.7378539Z","submissionTimestamp":"2017-10-16T18:28:29.9468128Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['14269']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:42 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934283928939760?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:42 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi","name":"vpn_connection_deploy_CIYDDIuHvJWWeROAcrzhNdTA2WR20CWi","properties":{"templateHash":"6216794289813503847","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T18:28:42.3338577Z","duration":"PT29.7502216S","correlationId":"1d39391f-dc2c-4726-805c-0f2b447aa320","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"76ff9d9c-c578-46d8-a398-db8fafba2611","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},"connectionType":"Vnet2Vnet","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1690']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:43 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:44 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"template": {"resources": [{"apiVersion": "2015-06-15",
+ "tags": {}, "location": "westus", "name": "vnet2to1", "properties": {"authorizationKey":
+ null, "usePolicyBasedTrafficSelectors": false, "sharedKey": "abc123", "virtualNetworkGateway2":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},
+ "routingWeight": 10, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},
+ "connectionType": "Vnet2Vnet", "enableBgp": true}, "dependsOn": [], "type":
+ "Microsoft.Network/connections"}], "outputs": {"resource": {"value": "[reference(\''vnet2to1\'')]",
+ "type": "object"}}, "variables": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "parameters": {}, "contentVersion": "1.0.0.0"}, "mode": "Incremental", "parameters":
+ {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['1116']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ujbXjRT4xGIhYffKbDbnhKugf0p3mfpB","name":"vpn_connection_deploy_ujbXjRT4xGIhYffKbDbnhKugf0p3mfpB","properties":{"templateHash":"9839523218304067206","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T18:28:45.890721Z","duration":"PT0.2538678S","correlationId":"b52ca38f-8db7-4265-8f7a-d94c24940c43","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ujbXjRT4xGIhYffKbDbnhKugf0p3mfpB/operationStatuses/08586934283598407629?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['693']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T02%3A28%3A55Z%20and%20correlationId%20eq%20%27b52ca38f-8db7-4265-8f7a-d94c24940c43%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:28:55 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T02%3A29%3A05Z%20and%20correlationId%20eq%20%27b52ca38f-8db7-4265-8f7a-d94c24940c43%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet2to1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508175377","nbf":"1508175377","exp":"1508179277","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYPg25+7jpQ8uhpVm5PZr9zfn5nOpprbmi0qwzzN6dNJqqi4A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"Nbb0EeTOsk-_XynY-gBEAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"b52ca38f-8db7-4265-8f7a-d94c24940c43","description":"","eventDataId":"83c9ed95-1145-4903-b629-28c4bf4263dd","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d08c368b-a488-4f89-97d2-5e6443c3058a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet2to1/events/83c9ed95-1145-4903-b629-28c4bf4263dd/ticks/636437753281562011","level":"Informational","resourceGroupName":"cli_test_active_active_vnet_vnet_connection000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet2to1","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"9592d185-6c91-4166-9af9-53bec84bafc8","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T18:28:48.1562011Z","submissionTimestamp":"2017-10-16T18:29:00.3287569Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ujbXjRT4xGIhYffKbDbnhKugf0p3mfpB"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508175377","nbf":"1508175377","exp":"1508179277","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYPg25+7jpQ8uhpVm5PZr9zfn5nOpprbmi0qwzzN6dNJqqi4A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"Nbb0EeTOsk-_XynY-gBEAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"b52ca38f-8db7-4265-8f7a-d94c24940c43","description":"","eventDataId":"5d06f6fa-0a72-4064-867b-6d66304d9ec7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d78b3ccc-b29f-11e7-a585-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ujbXjRT4xGIhYffKbDbnhKugf0p3mfpB/events/5d06f6fa-0a72-4064-867b-6d66304d9ec7/ticks/636437753259702556","level":"Informational","resourceGroupName":"cli_test_active_active_vnet_vnet_connection000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ujbXjRT4xGIhYffKbDbnhKugf0p3mfpB","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"b52ca38f-8db7-4265-8f7a-d94c24940c43","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T18:28:45.9702556Z","submissionTimestamp":"2017-10-16T18:29:00.1898095Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['7123']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:29:05 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934283598407629?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:29:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_ujbXjRT4xGIhYffKbDbnhKugf0p3mfpB","name":"vpn_connection_deploy_ujbXjRT4xGIhYffKbDbnhKugf0p3mfpB","properties":{"templateHash":"9839523218304067206","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T18:29:12.5527486Z","duration":"PT26.9158954S","correlationId":"b52ca38f-8db7-4265-8f7a-d94c24940c43","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"63f2e031-3a03-44da-b415-50df8aa01964","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},"connectionType":"Vnet2Vnet","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet2to1"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1690']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 18:29:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Mon, 16 Oct 2017 18:29:16 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUNUSVZFOjVGQUNUSVZFOjVGVk5FVDo1RlZORVQ6NUZDT3xGOUJCRjczRTJEM0FEQUVBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 202, message: Accepted}
+version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_vnet_vnet_connection.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_vnet_vnet_connection.yaml
deleted file mode 100644
index 6b15ecc2794..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_active_active_vnet_vnet_connection.yaml
+++ /dev/null
@@ -1,3508 +0,0 @@
-interactions:
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [f5c89468-9ccc-11e7-867a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection","name":"cli_test_active_active_vnet_vnet_connection","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:16 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['276']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"enableBgp": true, "bgpSettings": {"asn": 65010}, "activeActive":
- true, "gatewayType": "Vpn", "vpnType": "RouteBased", "sku": {"tier": "HighPerformance",
- "name": "HighPerformance"}, "ipConfigurations": [{"properties": {"publicIPAddress":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1"},
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"},
- "privateIPAllocationMethod": "Dynamic"}, "name": "vnetGatewayConfig0"}, {"properties":
- {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2"},
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"},
- "privateIPAllocationMethod": "Dynamic"}, "name": "vnetGatewayConfig1"}]}, "location":
- "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['1238']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [f5e2fecc-9ccc-11e7-b00b-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\"\
- : [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\"\
- : []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \
- \ \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/14fe5f2a-494d-4437-9b38-8b7027dd36ee?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['2874']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1191']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [f65758e2-9ccc-11e7-9c91-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection","name":"cli_test_active_active_vnet_vnet_connection","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['276']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"enableBgp": true, "bgpSettings": {"asn": 65020}, "activeActive":
- true, "gatewayType": "Vpn", "vpnType": "RouteBased", "sku": {"tier": "HighPerformance",
- "name": "HighPerformance"}, "ipConfigurations": [{"properties": {"publicIPAddress":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip1"},
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet"},
- "privateIPAllocationMethod": "Dynamic"}, "name": "vnetGatewayConfig0"}, {"properties":
- {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip2"},
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet"},
- "privateIPAllocationMethod": "Dynamic"}, "name": "vnetGatewayConfig1"}]}, "location":
- "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['1238']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [f672d4ec-9ccc-11e7-9234-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"64977f2c-1fd1-438d-b9c1-acf74626c0c2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\"\
- : [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\"\
- : []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \
- \ \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/923c6e64-2e95-4ed8-ae8b-cbfbe9884aa5?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['2874']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:18 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [f6d37c76-9ccc-11e7-af33-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [090cef86-9ccd-11e7-9097-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:56:48 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [1b0ac27e-9ccd-11e7-86dd-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:57: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2d10c888-9ccd-11e7-b07b-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:57: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [3f0d6c5a-9ccd-11e7-87cb-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [5124a412-9ccd-11e7-9ecd-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [63257fbe-9ccd-11e7-9fdc-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [752baf4a-9ccd-11e7-921a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [872f1f2e-9ccd-11e7-91ba-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:00: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [993c527e-9ccd-11e7-9749-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:00: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ab3489d4-9ccd-11e7-8078-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:01: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [bd305758-9ccd-11e7-982a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:01: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [cf26d414-9ccd-11e7-8fd8-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:02: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [e1264bb8-9ccd-11e7-b4e3-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:02: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [f31f04be-9ccd-11e7-a3fd-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [05166498-9cce-11e7-a523-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [170f0c06-9cce-11e7-906e-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [290ee214-9cce-11e7-bd2a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [3b055f02-9cce-11e7-9daf-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [4d07e04c-9cce-11e7-ae49-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [5f0679d8-9cce-11e7-95cb-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:25 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [727fbb7e-9cce-11e7-b949-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [8480764a-9cce-11e7-a53e-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:25 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [96848a30-9cce-11e7-b56e-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [a88d12e2-9cce-11e7-baa7-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:25 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ba88cd6e-9cce-11e7-80c2-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:56 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ccb186d0-9cce-11e7-a604-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:26 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ded892be-9cce-11e7-af23-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [f0e3376e-9cce-11e7-ae57-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [02f199be-9ccf-11e7-bbc0-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [14e9c222-9ccf-11e7-9ac4-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [26e23b3a-9ccf-11e7-ac87-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [3901fb38-9ccf-11e7-8972-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [4b00e3d0-9ccf-11e7-8c42-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [5d0db07a-9ccf-11e7-86eb-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:29 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [6f31d528-9ccf-11e7-a90a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:59 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [8138803a-9ccf-11e7-a1c4-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:29 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [933ce248-9ccf-11e7-bf27-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:00 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [a5b0bb78-9ccf-11e7-9f90-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [b7c46dda-9ccf-11e7-ae32-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:16:01 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [c9ce2e30-9ccf-11e7-9652-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:16:31 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [dbe16792-9ccf-11e7-be65-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:17:01 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [eddd96dc-9ccf-11e7-812b-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:17:31 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ffd5015e-9ccf-11e7-af92-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:18:01 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [11e443de-9cd0-11e7-a651-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:18:32 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [23dbae54-9cd0-11e7-b9ab-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:19:02 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [35eaf0a6-9cd0-11e7-9386-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:19:32 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [47ebe4d2-9cd0-11e7-9958-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:20: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [59f8c4be-9cd0-11e7-8706-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:20:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [6bfe7da4-9cd0-11e7-b963-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:21: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [7e02095c-9cd0-11e7-9c14-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:21:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [8ff973de-9cd0-11e7-9e83-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"60f72e67-8f20-4cd2-ad4c-c7cbac460106\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [a2018f24-9cd0-11e7-8bf8-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"0e371c6b-6f29-4188-8eb0-47f08518e30e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"208d9883-f762-4b0e-abeb-98d4fdd57533\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"0e371c6b-6f29-4188-8eb0-47f08518e30e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"0e371c6b-6f29-4188-8eb0-47f08518e30e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65010,\r\n \"bgpPeeringAddress\"\
- : \"10.21.255.4,10.21.255.5\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\
- \n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['2776']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [a2208e4c-9cd0-11e7-8e9d-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"64977f2c-1fd1-438d-b9c1-acf74626c0c2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:22:34 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [b442e3d0-9cd0-11e7-a340-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"64977f2c-1fd1-438d-b9c1-acf74626c0c2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:23:04 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [c643d7ec-9cd0-11e7-a656-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"64977f2c-1fd1-438d-b9c1-acf74626c0c2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:23:34 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [d84990c2-9cd0-11e7-a396-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"64977f2c-1fd1-438d-b9c1-acf74626c0c2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24: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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ea40fb3a-9cd0-11e7-ba06-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"64977f2c-1fd1-438d-b9c1-acf74626c0c2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"1658a469-693d-435c-8235-7ac6cd082e94\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \"peerWeight\"\
- : 0\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:24:34 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]
- content-length: ['2718']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [fc46b410-9cd0-11e7-a78c-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2\"\
- ,\r\n \"etag\": \"W/\\\"1608a068-0d4b-446f-81a1-7ddb5e96cc47\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"64977f2c-1fd1-438d-b9c1-acf74626c0c2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"1608a068-0d4b-446f-81a1-7ddb5e96cc47\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- vnetGatewayConfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\"\
- ,\r\n \"etag\": \"W/\\\"1608a068-0d4b-446f-81a1-7ddb5e96cc47\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\
- ,\r\n \"capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n\
- \ \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\"\
- : true,\r\n \"bgpSettings\": {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\"\
- : \"10.22.255.4,10.22.255.5\",\r\n \"peerWeight\": 0\r\n }\r\n }\r\
- \n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25: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]
- content-length: ['2776']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [fc6cda6c-9cd0-11e7-b16b-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection","name":"cli_test_active_active_vnet_vnet_connection","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:05 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['276']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "resources": [{"properties": {"enableBgp": true, "usePolicyBasedTrafficSelectors":
- false, "virtualNetworkGateway1": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},
- "connectionType": "Vnet2Vnet", "virtualNetworkGateway2": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},
- "sharedKey": "abc123", "routingWeight": 10, "authorizationKey": null}, "location":
- "westus", "apiVersion": "2015-06-15", "tags": {}, "type": "Microsoft.Network/connections",
- "dependsOn": [], "name": "vnet1to2"}], "parameters": {}, "outputs": {"resource":
- {"type": "object", "value": "[reference(''vnet1to2'')]"}}, "contentVersion":
- "1.0.0.0", "variables": {}}, "parameters": {}, "mode": "Incremental"}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['1064']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [fc84b248-9cd0-11e7-8096-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_EvipoDfkfLihg2jY4SCgpWFCo0saQObE","name":"vpn_connection_deploy_EvipoDfkfLihg2jY4SCgpWFCo0saQObE","properties":{"templateHash":"11279323520420068760","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:25:07.4635306Z","duration":"PT0.4785634S","correlationId":"b6412581-b125-4d7b-98ae-0069876bba6b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_EvipoDfkfLihg2jY4SCgpWFCo0saQObE/operationStatuses/08586958261784926412?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['669']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:07 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [fc84b248-9cd0-11e7-8096-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958261784926412?api-version=2017-05-10
- response:
- body: {string: '{"status":"Succeeded"}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['22']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [fc84b248-9cd0-11e7-8096-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_EvipoDfkfLihg2jY4SCgpWFCo0saQObE","name":"vpn_connection_deploy_EvipoDfkfLihg2jY4SCgpWFCo0saQObE","properties":{"templateHash":"11279323520420068760","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:25:37.3304151Z","duration":"PT30.3454479S","correlationId":"b6412581-b125-4d7b-98ae-0069876bba6b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"75114944-b87c-4d77-a121-0da6d7dc84d2","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},"connectionType":"Vnet2Vnet","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/connections/vnet1to2"}]}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:37 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['1587']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0feb9d02-9cd1-11e7-8fbc-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection","name":"cli_test_active_active_vnet_vnet_connection","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:38 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['276']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "resources": [{"properties": {"enableBgp": true, "usePolicyBasedTrafficSelectors":
- false, "virtualNetworkGateway1": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},
- "connectionType": "Vnet2Vnet", "virtualNetworkGateway2": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},
- "sharedKey": "abc123", "routingWeight": 10, "authorizationKey": null}, "location":
- "westus", "apiVersion": "2015-06-15", "tags": {}, "type": "Microsoft.Network/connections",
- "dependsOn": [], "name": "vnet2to1"}], "parameters": {}, "outputs": {"resource":
- {"type": "object", "value": "[reference(''vnet2to1'')]"}}, "contentVersion":
- "1.0.0.0", "variables": {}}, "parameters": {}, "mode": "Incremental"}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['1064']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0ffc4dc6-9cd1-11e7-b7b7-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_1QIhp4F60jpYp3xpJPrOIkazwTAOaic7","name":"vpn_connection_deploy_1QIhp4F60jpYp3xpJPrOIkazwTAOaic7","properties":{"templateHash":"17076822265057216207","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:25:39.9619153Z","duration":"PT0.4059151S","correlationId":"a6d83db7-d553-44d7-91c6-58b0ff6007c2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_1QIhp4F60jpYp3xpJPrOIkazwTAOaic7/operationStatuses/08586958261459216132?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['669']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:25:39 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0ffc4dc6-9cd1-11e7-b7b7-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958261459216132?api-version=2017-05-10
- response:
- body: {string: '{"status":"Running"}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:26:09 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['20']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0ffc4dc6-9cd1-11e7-b7b7-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958261459216132?api-version=2017-05-10
- response:
- body: {string: '{"status":"Succeeded"}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:26:40 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['22']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0ffc4dc6-9cd1-11e7-b7b7-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Resources/deployments/vpn_connection_deploy_1QIhp4F60jpYp3xpJPrOIkazwTAOaic7","name":"vpn_connection_deploy_1QIhp4F60jpYp3xpJPrOIkazwTAOaic7","properties":{"templateHash":"17076822265057216207","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:26:16.2088661Z","duration":"PT36.6528659S","correlationId":"a6d83db7-d553-44d7-91c6-58b0ff6007c2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"510b1e40-6e6b-45a6-9573-72743e2ebd29","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},"connectionType":"Vnet2Vnet","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection/providers/Microsoft.Network/connections/vnet2to1"}]}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:26:40 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['1587']
- status: {code: 200, message: OK}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_address_pool.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_address_pool.yaml
deleted file mode 100644
index edd5def5230..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_address_pool.yaml
+++ /dev/null
@@ -1,1434 +0,0 @@
-interactions:
-- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_address_pool000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001","name":"cli_test_ag_address_pool000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:41 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_address_pool000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001","name":"cli_test_ag_address_pool000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:42 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_address_pool000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
- response:
- body: {string: '{"value":[]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['12']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:42 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"resources": [{"dependsOn": [], "location": "westus", "apiVersion": "2015-06-15",
- "tags": {}, "type": "Microsoft.Network/virtualNetworks", "name": "ag1Vnet",
- "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
- [{"name": "default", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion":
- "2017-09-01", "location": "westus", "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
- "tags": {}, "type": "Microsoft.Network/applicationGateways", "name": "ag1",
- "properties": {"frontendPorts": [{"name": "appGatewayFrontendPort", "properties":
- {"Port": 80}}], "requestRoutingRules": [{"Name": "rule1", "properties": {"backendHttpSettings":
- {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic"}}], "sku": {"name": "Standard_Medium", "capacity": 2, "tier":
- "Standard"}, "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"privateIPAllocationMethod": "Dynamic", "privateIPAddress": "", "subnet": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "CookieBasedAffinity":
- "disabled", "Port": 80}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]}}],
- "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]", "type":
- "object"}}, "parameters": {}, "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0"}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2784']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_address_pool000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Resources/deployments/ag_deploy_J1Jb8I49Za7D95eJBVfK41Xd8tGvLO1P","name":"ag_deploy_J1Jb8I49Za7D95eJBVfK41Xd8tGvLO1P","properties":{"templateHash":"6343593764875194643","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-18T22:54:44.4414136Z","duration":"PT0.6902321S","correlationId":"a2670a01-c40c-4457-b6ce-feff5e8ad4d9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_address_pool000001/providers/Microsoft.Resources/deployments/ag_deploy_J1Jb8I49Za7D95eJBVfK41Xd8tGvLO1P/operationStatuses/08586958316017264344?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['1309']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:43 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/applicationGateways/ag1''
- under resource group ''cli_test_ag_address_pool000001'' was not found."}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['220']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:47 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:18 GMT']
- etag: [W/"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:18 GMT']
- etag: [W/"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}, {"name":
- "pool1", "properties": {"backendAddresses": [{"ipAddress": "123.4.5.6"}, {"fqdn":
- "www.mydns.com"}]}}], "provisioningState": "Updating", "resourceGuid": "27204df7-b5f4-42f1-aede-d41c37cfe394",
- "requestRoutingRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"dea7a72d-c8d1-4e82-86a7-f3a8b6fedf28\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool create]
- Connection: [keep-alive]
- Content-Length: ['5732']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"pool1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/pool1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [\r\n {\r\n \"\
- ipAddress\": \"123.4.5.6\"\r\n },\r\n {\r\n \
- \ \"fqdn\": \"www.mydns.com\"\r\n }\r\n ]\r\n \
- \ }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\
- \n {\r\n \"name\": \"appGatewayBackendHttpSettings\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1edb92b8-4821-41d0-a577-6a95b0174eea?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['9092']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55: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-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"pool1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/pool1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [\r\n {\r\n \"\
- ipAddress\": \"123.4.5.6\"\r\n },\r\n {\r\n \
- \ \"fqdn\": \"www.mydns.com\"\r\n }\r\n ]\r\n \
- \ }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\
- \n {\r\n \"name\": \"appGatewayBackendHttpSettings\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9092']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:18 GMT']
- etag: [W/"0d0279c3-b825-4176-8eda-46d6bd0c34c2"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"pool1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/pool1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [\r\n {\r\n \"\
- ipAddress\": \"123.4.5.6\"\r\n },\r\n {\r\n \
- \ \"fqdn\": \"www.mydns.com\"\r\n }\r\n ]\r\n \
- \ }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\
- \n {\r\n \"name\": \"appGatewayBackendHttpSettings\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9092']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:18 GMT']
- etag: [W/"0d0279c3-b825-4176-8eda-46d6bd0c34c2"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}, {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/pool1",
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\"", "name": "pool1", "properties":
- {"backendAddresses": [{"ipAddress": "5.4.3.2"}], "provisioningState": "Updating"}}],
- "provisioningState": "Updating", "resourceGuid": "27204df7-b5f4-42f1-aede-d41c37cfe394",
- "requestRoutingRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"0d0279c3-b825-4176-8eda-46d6bd0c34c2\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool update]
- Connection: [keep-alive]
- Content-Length: ['6020']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"pool1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/pool1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [\r\n {\r\n \"\
- ipAddress\": \"5.4.3.2\"\r\n }\r\n ]\r\n }\r\n\
- \ }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\
- \n \"name\": \"appGatewayBackendHttpSettings\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0a091962-45b0-42b4-a967-ff9d9281a60a?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['9020']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55: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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"pool1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/pool1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [\r\n {\r\n \"\
- ipAddress\": \"5.4.3.2\"\r\n }\r\n ]\r\n }\r\n\
- \ }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\
- \n \"name\": \"appGatewayBackendHttpSettings\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9020']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:19 GMT']
- etag: [W/"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"pool1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/pool1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [\r\n {\r\n \"\
- ipAddress\": \"5.4.3.2\"\r\n }\r\n ]\r\n }\r\n\
- \ }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\
- \n \"name\": \"appGatewayBackendHttpSettings\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9020']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:20 GMT']
- etag: [W/"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"pool1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/pool1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [\r\n {\r\n \"\
- ipAddress\": \"5.4.3.2\"\r\n }\r\n ]\r\n }\r\n\
- \ }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\
- \n \"name\": \"appGatewayBackendHttpSettings\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9020']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:20 GMT']
- etag: [W/"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "27204df7-b5f4-42f1-aede-d41c37cfe394", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"8f5ec51a-7c6d-436d-a9ab-b4a0c19abee6\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool delete]
- Connection: [keep-alive]
- Content-Length: ['5620']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4fc5f83a-275d-42ac-9ea2-f491ab842f8f?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55: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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway address-pool list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"27204df7-b5f4-42f1-aede-d41c37cfe394\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_address_pool000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:21 GMT']
- etag: [W/"b1c7e40a-a75e-4fa0-ac6f-2eece338d56e"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_address_pool000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Mon, 18 Sep 2017 22:55:21 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZBRERSRVNTOjVGUE9PTElTNlJIWEtZQ1FLSkNHU3xFMDI3RjYxNURGNTMwMDUwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_ip_private.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_ip_private.yaml
deleted file mode 100644
index 99c02cdc064..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_ip_private.yaml
+++ /dev/null
@@ -1,1367 +0,0 @@
-interactions:
-- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_private000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001","name":"cli_test_ag_frontend_ip_private000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:23 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_private000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001","name":"cli_test_ag_frontend_ip_private000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:22 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: '{"location": "westus", "properties": {"idleTimeoutInMinutes": 4, "publicIPAddressVersion":
- "IPv4", "publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Length: ['164']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"myip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- ,\r\n \"etag\": \"W/\\\"704bce5b-83b7-4c74-892c-553d5d6ef6a2\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"e01c6e6c-212e-4a89-beee-0183a1c0991e\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b4e07e9a-e9ab-439f-b7fb-e77935e20c92?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['639']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:23 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b4e07e9a-e9ab-439f-b7fb-e77935e20c92?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:27 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"myip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- ,\r\n \"etag\": \"W/\\\"459e4e74-3d07-4738-a985-d85ec453c6df\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"e01c6e6c-212e-4a89-beee-0183a1c0991e\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['640']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:27 GMT']
- etag: [W/"459e4e74-3d07-4738-a985-d85ec453c6df"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_private000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001","name":"cli_test_ag_frontend_ip_private000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:27 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "subnet1", "properties":
- {"addressPrefix": "10.0.0.0/24"}}]}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Length: ['205']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"2c111943-b113-4f8e-8aad-bd2680c6bb61\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
- ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"8bfd0fd8-b70e-4fdf-b489-08adb07f6a9d\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
- 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"2c111943-b113-4f8e-8aad-bd2680c6bb61\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
- \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
- : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/814ef2f7-9a1a-4ac8-9ec1-0568307607cf?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['1230']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:28 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/814ef2f7-9a1a-4ac8-9ec1-0568307607cf?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"0add9ae9-e6ab-4b2c-8387-8f74e64848a1\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
- ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"8bfd0fd8-b70e-4fdf-b489-08adb07f6a9d\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
- 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"0add9ae9-e6ab-4b2c-8387-8f74e64848a1\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
- \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
- : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1232']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:31 GMT']
- etag: [W/"0add9ae9-e6ab-4b2c-8387-8f74e64848a1"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_private000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001","name":"cli_test_ag_frontend_ip_private000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:31 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_frontend_ip_private000001%27%20and%20name%20eq%20%27vnet1%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
- response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1","name":"vnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['301']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:31 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_frontend_ip_private000001%27%20and%20name%20eq%20%27myip1%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27
- response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1","name":"myip1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['318']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:31 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"resources": [{"apiVersion": "2017-09-01", "location": "westus", "dependsOn":
- [], "tags": {}, "type": "Microsoft.Network/applicationGateways", "name": "ag1",
- "properties": {"frontendPorts": [{"name": "appGatewayFrontendPort", "properties":
- {"Port": 80}}], "requestRoutingRules": [{"Name": "rule1", "properties": {"backendHttpSettings":
- {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic"}}], "sku": {"name": "Standard_Medium", "capacity": 2, "tier":
- "Standard"}, "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "CookieBasedAffinity":
- "disabled", "Port": 80}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}]}}],
- "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]", "type":
- "object"}}, "parameters": {}, "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0"}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2371']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Resources/deployments/ag_deploy_1xPee5zWwZe1yg65jm46Q9AGW5KAlPE4","name":"ag_deploy_1xPee5zWwZe1yg65jm46Q9AGW5KAlPE4","properties":{"templateHash":"1645959418007744211","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-18T22:55:33.8786955Z","duration":"PT0.2820405S","correlationId":"a74c1f9b-7c20-4f03-ba71-35339cb83665","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Resources/deployments/ag_deploy_1xPee5zWwZe1yg65jm46Q9AGW5KAlPE4/operationStatuses/08586958315518809633?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['678']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:33 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/applicationGateways/ag1''
- under resource group ''cli_test_ag_frontend_ip_private000001'' was not found."}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['220']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:55:33 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"5df91636-7ce1-40ce-8007-78943db36896\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8470']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:04 GMT']
- etag: [W/"0c91278c-17dd-4e12-b2b8-9fdd62145407"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"5df91636-7ce1-40ce-8007-78943db36896\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8470']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:08 GMT']
- etag: [W/"0c91278c-17dd-4e12-b2b8-9fdd62145407"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1"}}},
- {"name": "frontendip", "properties": {"privateIPAllocationMethod": "Static",
- "privateIPAddress": "10.0.0.10", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "5df91636-7ce1-40ce-8007-78943db36896", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}]},
- "etag": "W/\\"0c91278c-17dd-4e12-b2b8-9fdd62145407\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip create]
- Connection: [keep-alive]
- Content-Length: ['5953']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"5df91636-7ce1-40ce-8007-78943db36896\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"frontendip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/frontendip\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.10\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendPort\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4726e569-f3b2-424f-a776-a4e3a72f9437?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['9272']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56: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-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"5df91636-7ce1-40ce-8007-78943db36896\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"frontendip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/frontendip\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.10\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendPort\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9272']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:08 GMT']
- etag: [W/"5a96907a-29a7-4275-87eb-9fa16ed0acbd"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"5df91636-7ce1-40ce-8007-78943db36896\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"frontendip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/frontendip\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.10\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendPort\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9272']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:09 GMT']
- etag: [W/"5a96907a-29a7-4275-87eb-9fa16ed0acbd"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"5df91636-7ce1-40ce-8007-78943db36896\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"frontendip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/frontendip\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.10\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendPort\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9272']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:09 GMT']
- etag: [W/"5a96907a-29a7-4275-87eb-9fa16ed0acbd"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "5df91636-7ce1-40ce-8007-78943db36896", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}]},
- "etag": "W/\\"5a96907a-29a7-4275-87eb-9fa16ed0acbd\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip delete]
- Connection: [keep-alive]
- Content-Length: ['5611']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"5df91636-7ce1-40ce-8007-78943db36896\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af810420-24d0-4c32-bdb7-489c28c86350?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8470']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:09 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-ms-ratelimit-remaining-subscription-writes: ['1195']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"5df91636-7ce1-40ce-8007-78943db36896\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a7934180-d21c-41e7-b29f-f3cb23c012b9\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_private000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8470']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:09 GMT']
- etag: [W/"a7934180-d21c-41e7-b29f-f3cb23c012b9"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_private000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Mon, 18 Sep 2017 22:56:10 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZGUk9OVEVORDo1RklQOjVGUFJJVkFURUNSSEVDUXw2MTU5N0M5Q0UzNzVEOUM5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_ip_public.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_ip_public.yaml
deleted file mode 100644
index 03435152160..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_ip_public.yaml
+++ /dev/null
@@ -1,1339 +0,0 @@
-interactions:
-- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_public000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001","name":"cli_test_ag_frontend_ip_public000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:26:41 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_public000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001","name":"cli_test_ag_frontend_ip_public000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:26:41 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_ag_frontend_ip_public000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
- response:
- body: {string: '{"value":[]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['12']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:26:42 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0", "outputs": {"applicationGateway": {"type": "object",
- "value": "[reference(\''ag1\'')]"}}, "parameters": {}, "resources": [{"type":
- "Microsoft.Network/virtualNetworks", "name": "ag1Vnet", "dependsOn": [], "tags":
- {}, "apiVersion": "2015-06-15", "properties": {"addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}, "subnets": [{"name": "default", "properties": {"addressPrefix":
- "10.0.0.0/24"}}]}, "location": "westus"}, {"type": "Microsoft.Network/applicationGateways",
- "name": "ag1", "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"], "tags":
- {}, "apiVersion": "2017-09-01", "properties": {"requestRoutingRules": [{"properties":
- {"backendHttpSettings": {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic", "httpListener": {"id": "[concat(variables(\''appGwID\''),
- \''/httpListeners/appGatewayHttpListener\'')]"}}, "Name": "rule1"}], "sku":
- {"name": "Standard_Medium", "tier": "Standard", "capacity": 2}, "frontendIPConfigurations":
- [{"name": "appGatewayFrontendIP", "properties": {"privateIPAddress": "", "subnet":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
- "privateIPAllocationMethod": "Dynamic"}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"SslCertificate": null, "Protocol": "http", "FrontendIpConfiguration":
- {"Id": "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"},
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "gatewayIPConfigurations":
- [{"name": "appGatewayFrontendIP", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port":
- 80}}], "backendHttpSettingsCollection": [{"name": "appGatewayBackendHttpSettings",
- "properties": {"Port": 80, "Protocol": "Http", "CookieBasedAffinity": "disabled",
- "connectionDraining": {"enabled": false, "drainTimeoutInSec": 1}}}]}, "location":
- "westus"}], "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2784']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Resources/deployments/ag_deploy_aRxedBXQBWKYOg0vUyzRE2GeihTBSaBD","name":"ag_deploy_aRxedBXQBWKYOg0vUyzRE2GeihTBSaBD","properties":{"templateHash":"8660513114867780761","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T16:26:44.1666529Z","duration":"PT0.7377979S","correlationId":"ab7b0446-bf4a-44ff-8d43-39d5de011222","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Resources/deployments/ag_deploy_aRxedBXQBWKYOg0vUyzRE2GeihTBSaBD/operationStatuses/08586957684820487663?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['1309']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:26:43 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/applicationGateways/ag1''
- under resource group ''cli_test_ag_frontend_ip_public000001'' was not found."}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['220']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:26:44 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"07953863-6715-4fc5-b993-a1121efb7061\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:14 GMT']
- etag: [W/"e46d1d24-e14c-47a3-8fab-9cb7c5d35916"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_public000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001","name":"cli_test_ag_frontend_ip_public000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:15 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: '{"sku": {"name": "Basic"}, "properties": {"publicIPAddressVersion": "IPv4",
- "idleTimeoutInMinutes": 4, "publicIPAllocationMethod": "Dynamic"}, "location":
- "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Length: ['164']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"myip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- ,\r\n \"etag\": \"W/\\\"3ccb41b7-160d-41f7-9d63-b5d8ef629314\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"57a89bed-0be6-4488-b8b1-6da09cf35846\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2a041aa5-2a72-4187-9ff4-25e7b8430a21?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['639']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:15 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2a041aa5-2a72-4187-9ff4-25e7b8430a21?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"myip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- ,\r\n \"etag\": \"W/\\\"374908e7-f5a5-4bb3-b243-19e76c5401e4\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"57a89bed-0be6-4488-b8b1-6da09cf35846\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['640']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:19 GMT']
- etag: [W/"374908e7-f5a5-4bb3-b243-19e76c5401e4"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_public000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001","name":"cli_test_ag_frontend_ip_public000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:19 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: '{"sku": {"name": "Basic"}, "properties": {"publicIPAddressVersion": "IPv4",
- "idleTimeoutInMinutes": 4, "publicIPAllocationMethod": "Dynamic"}, "location":
- "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Length: ['164']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"myip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip2\"\
- ,\r\n \"etag\": \"W/\\\"40a4e9b5-ba44-45ce-ba0b-6f52ee257d7d\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"0bf4faa1-3778-4daf-a76a-d363b9022688\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b2032bd4-271a-4784-9544-960d8c3539f6?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['639']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:20 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b2032bd4-271a-4784-9544-960d8c3539f6?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:24 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"myip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip2\"\
- ,\r\n \"etag\": \"W/\\\"f3c82cb8-3847-4656-b05e-f8d640fd5e61\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"0bf4faa1-3778-4daf-a76a-d363b9022688\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['640']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:24 GMT']
- etag: [W/"f3c82cb8-3847-4656-b05e-f8d640fd5e61"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"07953863-6715-4fc5-b993-a1121efb7061\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:25 GMT']
- etag: [W/"e46d1d24-e14c-47a3-8fab-9cb7c5d35916"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"location": "westus", "etag": "W/\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\"",
- "properties": {"sku": {"name": "Standard_Medium", "tier": "Standard", "capacity":
- 2}, "authenticationCertificates": [], "probes": [], "redirectConfigurations":
- [], "urlPathMaps": [], "requestRoutingRules": [{"name": "rule1", "properties":
- {"provisioningState": "Updating", "ruleType": "Basic", "backendHttpSettings":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}},
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\""}], "provisioningState":
- "Updating", "sslCertificates": [], "resourceGuid": "07953863-6715-4fc5-b993-a1121efb7061",
- "httpListeners": [{"name": "appGatewayHttpListener", "properties": {"provisioningState":
- "Updating", "requireServerNameIndication": false, "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "protocol": "Http", "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}},
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\""}], "frontendIPConfigurations":
- [{"name": "appGatewayFrontendIP", "properties": {"provisioningState": "Updating",
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
- "privateIPAllocationMethod": "Dynamic"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\""}, {"name": "myfrontend",
- "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1"}}}],
- "backendAddressPools": [{"etag": "W/\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\"",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}, "id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "name": "appGatewayBackendPool"}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\""}], "frontendPorts": [{"name":
- "appGatewayFrontendPort", "properties": {"provisioningState": "Updating", "port":
- 80}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\""}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"requestTimeout":
- 30, "pickHostNameFromBackendAddress": false, "connectionDraining": {"enabled":
- false, "drainTimeoutInSec": 1}, "provisioningState": "Updating", "cookieBasedAffinity":
- "Disabled", "protocol": "Http", "port": 80}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"e46d1d24-e14c-47a3-8fab-9cb7c5d35916\\""}]}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip create]
- Connection: [keep-alive]
- Content-Length: ['5885']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"07953863-6715-4fc5-b993-a1121efb7061\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myfrontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/myfrontend\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendPort\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b32ae86-8583-4875-b179-1e97b363cfa9?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['9233']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:25 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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"07953863-6715-4fc5-b993-a1121efb7061\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myfrontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/myfrontend\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendPort\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9233']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:25 GMT']
- etag: [W/"69366421-de4b-4ea0-b4e9-ffca9b2d10eb"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"07953863-6715-4fc5-b993-a1121efb7061\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myfrontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/myfrontend\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendPort\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9233']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:26 GMT']
- etag: [W/"69366421-de4b-4ea0-b4e9-ffca9b2d10eb"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"07953863-6715-4fc5-b993-a1121efb7061\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myfrontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/myfrontend\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/publicIPAddresses/myip1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendPort\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9233']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:26 GMT']
- etag: [W/"69366421-de4b-4ea0-b4e9-ffca9b2d10eb"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"location": "westus", "etag": "W/\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\"",
- "properties": {"sku": {"name": "Standard_Medium", "tier": "Standard", "capacity":
- 2}, "authenticationCertificates": [], "probes": [], "redirectConfigurations":
- [], "urlPathMaps": [], "requestRoutingRules": [{"name": "rule1", "properties":
- {"provisioningState": "Updating", "ruleType": "Basic", "backendHttpSettings":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}},
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\""}], "provisioningState":
- "Updating", "sslCertificates": [], "resourceGuid": "07953863-6715-4fc5-b993-a1121efb7061",
- "httpListeners": [{"name": "appGatewayHttpListener", "properties": {"provisioningState":
- "Updating", "requireServerNameIndication": false, "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "protocol": "Http", "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}},
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\""}], "frontendIPConfigurations":
- [{"name": "appGatewayFrontendIP", "properties": {"provisioningState": "Updating",
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
- "privateIPAllocationMethod": "Dynamic"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\""}], "backendAddressPools":
- [{"etag": "W/\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\"", "properties": {"backendAddresses":
- [], "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "name": "appGatewayBackendPool"}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\""}], "frontendPorts": [{"name":
- "appGatewayFrontendPort", "properties": {"provisioningState": "Updating", "port":
- 80}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\""}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"requestTimeout":
- 30, "pickHostNameFromBackendAddress": false, "connectionDraining": {"enabled":
- false, "drainTimeoutInSec": 1}, "provisioningState": "Updating", "cookieBasedAffinity":
- "Disabled", "protocol": "Http", "port": 80}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"69366421-de4b-4ea0-b4e9-ffca9b2d10eb\\""}]}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip delete]
- Connection: [keep-alive]
- Content-Length: ['5620']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"07953863-6715-4fc5-b993-a1121efb7061\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/845b3400-39a6-42de-859d-6e4e6f97dee2?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:25 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-ms-ratelimit-remaining-subscription-writes: ['1196']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-ip list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"07953863-6715-4fc5-b993-a1121efb7061\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"30785d02-cbf8-475d-9b39-d421ed1451f8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_ip_public000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:27:26 GMT']
- etag: [W/"30785d02-cbf8-475d-9b39-d421ed1451f8"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_ip_public000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Tue, 19 Sep 2017 16:27:26 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZGUk9OVEVORDo1RklQOjVGUFVCTElDSUJBWFgyNXwwNkJDREVCQjczQzgwNzI4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_port.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_port.yaml
deleted file mode 100644
index 382c1294446..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_frontend_port.yaml
+++ /dev/null
@@ -1,1415 +0,0 @@
-interactions:
-- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_port000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001","name":"cli_test_ag_frontend_port000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:12 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_port000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001","name":"cli_test_ag_frontend_port000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:12 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_frontend_port000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
- response:
- body: {string: '{"value":[]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['12']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:12 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"resources": [{"dependsOn": [], "location": "westus", "apiVersion": "2015-06-15",
- "tags": {}, "type": "Microsoft.Network/virtualNetworks", "name": "ag1Vnet",
- "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
- [{"name": "default", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion":
- "2017-09-01", "location": "westus", "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
- "tags": {}, "type": "Microsoft.Network/applicationGateways", "name": "ag1",
- "properties": {"frontendPorts": [{"name": "appGatewayFrontendPort", "properties":
- {"Port": 80}}], "requestRoutingRules": [{"Name": "rule1", "properties": {"backendHttpSettings":
- {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic"}}], "sku": {"name": "Standard_Medium", "capacity": 2, "tier":
- "Standard"}, "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"privateIPAllocationMethod": "Dynamic", "privateIPAddress": "", "subnet": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "CookieBasedAffinity":
- "disabled", "Port": 80}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]}}],
- "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]", "type":
- "object"}}, "parameters": {}, "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0"}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2784']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_port000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Resources/deployments/ag_deploy_ZBXYMfd30EDZQKR35Tq9t5mUYhFTix6u","name":"ag_deploy_ZBXYMfd30EDZQKR35Tq9t5mUYhFTix6u","properties":{"templateHash":"14684369250464881847","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-18T22:56:15.1940061Z","duration":"PT0.7103441S","correlationId":"44075db9-fbe9-446c-8fb5-df99f52c20a7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_port000001/providers/Microsoft.Resources/deployments/ag_deploy_ZBXYMfd30EDZQKR35Tq9t5mUYhFTix6u/operationStatuses/08586958315109939538?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['1310']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:14 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/applicationGateways/ag1''
- under resource group ''cli_test_ag_frontend_port000001'' was not found."}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['220']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:15 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:45 GMT']
- etag: [W/"9dd22586-55e3-458d-887a-d4d044981295"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9dd22586-55e3-458d-887a-d4d044981295\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:45 GMT']
- etag: [W/"9dd22586-55e3-458d-887a-d4d044981295"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"9dd22586-55e3-458d-887a-d4d044981295\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}, {"name": "myport",
- "properties": {"port": 111}}], "backendHttpSettingsCollection": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"9dd22586-55e3-458d-887a-d4d044981295\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"9dd22586-55e3-458d-887a-d4d044981295\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"9dd22586-55e3-458d-887a-d4d044981295\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"9dd22586-55e3-458d-887a-d4d044981295\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "f1b225a6-8c86-4b85-a796-d198eecc8645", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"9dd22586-55e3-458d-887a-d4d044981295\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"9dd22586-55e3-458d-887a-d4d044981295\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"9dd22586-55e3-458d-887a-d4d044981295\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port create]
- Connection: [keep-alive]
- Content-Length: ['5669']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myport\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/myport\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 111\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"appGatewayBackendPool\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6df67bea-02ee-4dba-893a-ec3aef88b34f?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8925']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56: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-ms-ratelimit-remaining-subscription-writes: ['1187']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myport\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/myport\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 111\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"appGatewayBackendPool\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8925']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:46 GMT']
- etag: [W/"7394657f-88bf-47ea-b8ac-586b07bdd705"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myport\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/myport\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 111\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"appGatewayBackendPool\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8925']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:46 GMT']
- etag: [W/"7394657f-88bf-47ea-b8ac-586b07bdd705"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/myport",
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\"", "name": "myport", "properties":
- {"provisioningState": "Updating", "port": 112}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "f1b225a6-8c86-4b85-a796-d198eecc8645", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"7394657f-88bf-47ea-b8ac-586b07bdd705\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port update]
- Connection: [keep-alive]
- Content-Length: ['5981']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myport\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/myport\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 112\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"appGatewayBackendPool\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3983b966-5fe8-424b-bd55-4b4e252ee952?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8925']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56: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-ms-ratelimit-remaining-subscription-writes: ['1196']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myport\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/myport\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 112\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"appGatewayBackendPool\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8925']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:46 GMT']
- etag: [W/"86e598a6-698f-4a98-9593-49df5e57b9bf"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myport\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/myport\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 112\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"appGatewayBackendPool\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8925']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:47 GMT']
- etag: [W/"86e598a6-698f-4a98-9593-49df5e57b9bf"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"myport\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/myport\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 112\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"appGatewayBackendPool\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8925']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:48 GMT']
- etag: [W/"86e598a6-698f-4a98-9593-49df5e57b9bf"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "f1b225a6-8c86-4b85-a796-d198eecc8645", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"86e598a6-698f-4a98-9593-49df5e57b9bf\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port delete]
- Connection: [keep-alive]
- Content-Length: ['5620']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74414ca5-9ccb-47fe-ba2c-a537d1c396fa?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:48 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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway frontend-port list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1b225a6-8c86-4b85-a796-d198eecc8645\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"8c020c8d-73f8-4a36-83de-a8c342b64c07\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_frontend_port000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:48 GMT']
- etag: [W/"8c020c8d-73f8-4a36-83de-a8c342b64c07"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_frontend_port000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Mon, 18 Sep 2017 22:56:49 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZGUk9OVEVORDo1RlBPUlRZSlk0MkZUUVhWV1YyWHw2MjU2NTNERUQ4NDU3QThGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1184']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_http_listener.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_http_listener.yaml
deleted file mode 100644
index 5d690eb368f..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_http_listener.yaml
+++ /dev/null
@@ -1,1464 +0,0 @@
-interactions:
-- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_listener000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001","name":"cli_test_ag_http_listener000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:51 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_listener000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001","name":"cli_test_ag_http_listener000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:50 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_http_listener000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
- response:
- body: {string: '{"value":[]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['12']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:50 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"resources": [{"dependsOn": [], "location": "westus", "apiVersion": "2015-06-15",
- "tags": {}, "type": "Microsoft.Network/virtualNetworks", "name": "ag1Vnet",
- "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
- [{"name": "default", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion":
- "2017-09-01", "location": "westus", "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
- "tags": {}, "type": "Microsoft.Network/applicationGateways", "name": "ag1",
- "properties": {"frontendPorts": [{"name": "appGatewayFrontendPort", "properties":
- {"Port": 80}}], "requestRoutingRules": [{"Name": "rule1", "properties": {"backendHttpSettings":
- {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic"}}], "sku": {"name": "Standard_Medium", "capacity": 2, "tier":
- "Standard"}, "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"privateIPAllocationMethod": "Dynamic", "privateIPAddress": "", "subnet": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "CookieBasedAffinity":
- "disabled", "Port": 80}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]}}],
- "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]", "type":
- "object"}}, "parameters": {}, "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0"}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2784']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_listener000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Resources/deployments/ag_deploy_p8eCs17Ne7wJvrKf5UolpAvpVoBn9txP","name":"ag_deploy_p8eCs17Ne7wJvrKf5UolpAvpVoBn9txP","properties":{"templateHash":"4063536239799534674","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-18T22:56:53.0676463Z","duration":"PT0.6131025S","correlationId":"c0866803-c005-435a-81bb-4a5091ff3b29","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_listener000001/providers/Microsoft.Resources/deployments/ag_deploy_p8eCs17Ne7wJvrKf5UolpAvpVoBn9txP/operationStatuses/08586958314730230771?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['1309']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:53 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/applicationGateways/ag1''
- under resource group ''cli_test_ag_http_listener000001'' was not found."}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['220']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:56:52 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:22 GMT']
- etag: [W/"a89af881-0b87-4cb9-ae4b-34a19d336764"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:22 GMT']
- etag: [W/"a89af881-0b87-4cb9-ae4b-34a19d336764"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"name": "mylistener", "properties": {"hostName": "www.test.com", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "protocol": "http", "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "6d0a2126-80d0-4cf0-818d-ca1557836bb0", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"a89af881-0b87-4cb9-ae4b-34a19d336764\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener create]
- Connection: [keep-alive]
- Content-Length: ['6246']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cac601ba-5caa-4d29-a3e7-799f22a6ec82?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['10188']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:24 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-ms-ratelimit-remaining-subscription-writes: ['1196']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['10188']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:24 GMT']
- etag: [W/"58d23d71-760a-4977-9246-972e79aeb58a"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"58d23d71-760a-4977-9246-972e79aeb58a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['10188']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:25 GMT']
- etag: [W/"58d23d71-760a-4977-9246-972e79aeb58a"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener",
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\"", "name": "mylistener",
- "properties": {"hostName": "www.test2.com", "protocol": "Http", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "6d0a2126-80d0-4cf0-818d-ca1557836bb0", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"58d23d71-760a-4977-9246-972e79aeb58a\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener update]
- Connection: [keep-alive]
- Content-Length: ['6601']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/df9f0c55-b695-44b6-a0d7-06a086d02d55?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['10189']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:25 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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['10189']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:25 GMT']
- etag: [W/"b85c4486-28e5-450c-84bf-a2e00372cd8e"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['10189']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:26 GMT']
- etag: [W/"b85c4486-28e5-450c-84bf-a2e00372cd8e"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['10189']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:26 GMT']
- etag: [W/"b85c4486-28e5-450c-84bf-a2e00372cd8e"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "6d0a2126-80d0-4cf0-818d-ca1557836bb0", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"b85c4486-28e5-450c-84bf-a2e00372cd8e\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener delete]
- Connection: [keep-alive]
- Content-Length: ['5620']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1941c3ed-0666-458d-af40-11a85ee4dce7?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:26 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-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6d0a2126-80d0-4cf0-818d-ca1557836bb0\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5853aa4b-2f6f-401e-83b1-ddabd2597c1a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:26 GMT']
- etag: [W/"5853aa4b-2f6f-401e-83b1-ddabd2597c1a"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_listener000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Mon, 18 Sep 2017 22:57:28 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZIVFRQOjVGTElTVEVORVJBNUg0RE5FQktHNzJXNnxCNTI4MkU1MjhFNTExMTNELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_http_settings.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_http_settings.yaml
deleted file mode 100644
index 83e27eeda84..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_http_settings.yaml
+++ /dev/null
@@ -1,1456 +0,0 @@
-interactions:
-- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_settings000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001","name":"cli_test_ag_http_settings000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:28 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_settings000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001","name":"cli_test_ag_http_settings000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:29 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_http_settings000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
- response:
- body: {string: '{"value":[]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['12']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:28 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"resources": [{"dependsOn": [], "location": "westus", "apiVersion": "2015-06-15",
- "tags": {}, "type": "Microsoft.Network/virtualNetworks", "name": "ag1Vnet",
- "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
- [{"name": "default", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion":
- "2017-09-01", "location": "westus", "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
- "tags": {}, "type": "Microsoft.Network/applicationGateways", "name": "ag1",
- "properties": {"frontendPorts": [{"name": "appGatewayFrontendPort", "properties":
- {"Port": 80}}], "requestRoutingRules": [{"Name": "rule1", "properties": {"backendHttpSettings":
- {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic"}}], "sku": {"name": "Standard_Medium", "capacity": 2, "tier":
- "Standard"}, "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"privateIPAllocationMethod": "Dynamic", "privateIPAddress": "", "subnet": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "CookieBasedAffinity":
- "disabled", "Port": 80}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]}}],
- "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]", "type":
- "object"}}, "parameters": {}, "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0"}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2784']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_settings000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Resources/deployments/ag_deploy_rhwugCHiYeMBc6KPCythBXKY2LQaqFY7","name":"ag_deploy_rhwugCHiYeMBc6KPCythBXKY2LQaqFY7","properties":{"templateHash":"11972130763955307712","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-18T22:57:31.0618155Z","duration":"PT0.5710097S","correlationId":"e4acfe60-58a9-4a86-bc54-08017dc6f29b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_settings000001/providers/Microsoft.Resources/deployments/ag_deploy_rhwugCHiYeMBc6KPCythBXKY2LQaqFY7/operationStatuses/08586958314349868168?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['1310']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:30 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/applicationGateways/ag1''
- under resource group ''cli_test_ag_http_settings000001'' was not found."}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['220']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:57:30 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:01 GMT']
- etag: [W/"9578adb6-b4bb-4385-bc81-50c01d1ce19a"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:01 GMT']
- etag: [W/"9578adb6-b4bb-4385-bc81-50c01d1ce19a"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}, {"name": "mysettings", "properties": {"requestTimeout": 50, "pickHostNameFromBackendAddress":
- true, "cookieBasedAffinity": "Enabled", "connectionDraining": {"enabled": true,
- "drainTimeoutInSec": 60}, "affinityCookieName": "mycookie", "port": 70, "protocol":
- "Https"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "6c04881b-9546-4ead-8ebe-4bf2e7edde2e", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"9578adb6-b4bb-4385-bc81-50c01d1ce19a\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings create]
- Connection: [keep-alive]
- Content-Length: ['5889']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mysettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/mysettings\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 70,\r\n \"protocol\": \"Https\",\r\n \
- \ \"cookieBasedAffinity\": \"Enabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\"\
- : 60\r\n },\r\n \"pickHostNameFromBackendAddress\": true,\r\
- \n \"affinityCookieName\": \"mycookie\",\r\n \"requestTimeout\"\
- : 50\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"name\": \"appGatewayHttpListener\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47a95718-b992-41fd-b753-bc993eec6749?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['9270']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:01 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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mysettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/mysettings\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 70,\r\n \"protocol\": \"Https\",\r\n \
- \ \"cookieBasedAffinity\": \"Enabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\"\
- : 60\r\n },\r\n \"pickHostNameFromBackendAddress\": true,\r\
- \n \"affinityCookieName\": \"mycookie\",\r\n \"requestTimeout\"\
- : 50\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"name\": \"appGatewayHttpListener\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9270']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:01 GMT']
- etag: [W/"a015edea-39b4-4b6d-bba6-61a03decab67"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mysettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/mysettings\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 70,\r\n \"protocol\": \"Https\",\r\n \
- \ \"cookieBasedAffinity\": \"Enabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\"\
- : 60\r\n },\r\n \"pickHostNameFromBackendAddress\": true,\r\
- \n \"affinityCookieName\": \"mycookie\",\r\n \"requestTimeout\"\
- : 50\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"name\": \"appGatewayHttpListener\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a015edea-39b4-4b6d-bba6-61a03decab67\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9270']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:01 GMT']
- etag: [W/"a015edea-39b4-4b6d-bba6-61a03decab67"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/mysettings",
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\"", "name": "mysettings",
- "properties": {"requestTimeout": 40, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "affinityCookieName": "mycookie2", "provisioningState":
- "Updating", "port": 71, "protocol": "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "6c04881b-9546-4ead-8ebe-4bf2e7edde2e", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"a015edea-39b4-4b6d-bba6-61a03decab67\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings update]
- Connection: [keep-alive]
- Content-Length: ['6223']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mysettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/mysettings\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 71,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"affinityCookieName\": \"mycookie2\",\r\n \"requestTimeout\"\
- : 40\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"name\": \"appGatewayHttpListener\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/93cc3505-f4e4-47c9-88af-2805cea038db?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['9272']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:02 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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mysettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/mysettings\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 71,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"affinityCookieName\": \"mycookie2\",\r\n \"requestTimeout\"\
- : 40\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"name\": \"appGatewayHttpListener\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9272']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:02 GMT']
- etag: [W/"1e3cca6e-2ad6-48d3-af59-17bd264599af"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mysettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/mysettings\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 71,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"affinityCookieName\": \"mycookie2\",\r\n \"requestTimeout\"\
- : 40\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"name\": \"appGatewayHttpListener\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9272']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:02 GMT']
- etag: [W/"1e3cca6e-2ad6-48d3-af59-17bd264599af"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mysettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/mysettings\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 71,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"affinityCookieName\": \"mycookie2\",\r\n \"requestTimeout\"\
- : 40\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"name\": \"appGatewayHttpListener\",\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9272']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:03 GMT']
- etag: [W/"1e3cca6e-2ad6-48d3-af59-17bd264599af"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "6c04881b-9546-4ead-8ebe-4bf2e7edde2e", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"1e3cca6e-2ad6-48d3-af59-17bd264599af\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings delete]
- Connection: [keep-alive]
- Content-Length: ['5620']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/525dc343-7657-4c31-8c82-fcb3f9699f86?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:04 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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-settings list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"6c04881b-9546-4ead-8ebe-4bf2e7edde2e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"4a821201-c270-4278-9e6c-e00cd8abd0ee\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_settings000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:04 GMT']
- etag: [W/"4a821201-c270-4278-9e6c-e00cd8abd0ee"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_http_settings000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Mon, 18 Sep 2017 22:58:04 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZIVFRQOjVGU0VUVElOR1NGUTIzQ01MWUtNV0lPV3w3Qzk1MjQ0MjI2NENENzQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_probe.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_probe.yaml
deleted file mode 100644
index 6c268ce1f2f..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_probe.yaml
+++ /dev/null
@@ -1,1460 +0,0 @@
-interactions:
-- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_probe000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001","name":"cli_test_ag_probe000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:05 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_probe000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001","name":"cli_test_ag_probe000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:06 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_probe000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
- response:
- body: {string: '{"value":[]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['12']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:06 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"resources": [{"dependsOn": [], "location": "westus", "apiVersion": "2015-06-15",
- "tags": {}, "type": "Microsoft.Network/virtualNetworks", "name": "ag1Vnet",
- "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
- [{"name": "default", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion":
- "2017-09-01", "location": "westus", "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
- "tags": {}, "type": "Microsoft.Network/applicationGateways", "name": "ag1",
- "properties": {"frontendPorts": [{"name": "appGatewayFrontendPort", "properties":
- {"Port": 80}}], "requestRoutingRules": [{"Name": "rule1", "properties": {"backendHttpSettings":
- {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic"}}], "sku": {"name": "Standard_Medium", "capacity": 2, "tier":
- "Standard"}, "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"privateIPAllocationMethod": "Dynamic", "privateIPAddress": "", "subnet": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "CookieBasedAffinity":
- "disabled", "Port": 80}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]}}],
- "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]", "type":
- "object"}}, "parameters": {}, "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0"}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2784']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_probe000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Resources/deployments/ag_deploy_Hr5m4gWJ8JdZN5OWITtevgzNz7bSfeUz","name":"ag_deploy_Hr5m4gWJ8JdZN5OWITtevgzNz7bSfeUz","properties":{"templateHash":"15876522433358376986","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-18T22:58:12.5160964Z","duration":"PT1.0612816S","correlationId":"b50f219a-d82b-4532-afee-279489bba176","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_probe000001/providers/Microsoft.Resources/deployments/ag_deploy_Hr5m4gWJ8JdZN5OWITtevgzNz7bSfeUz/operationStatuses/08586958313940228058?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['1310']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:12 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/applicationGateways/ag1''
- under resource group ''cli_test_ag_probe000001'' was not found."}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['220']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:12 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:43 GMT']
- etag: [W/"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:42 GMT']
- etag: [W/"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [{"name": "myprobe", "properties": {"host": "www.test.com", "minServers":
- 2, "path": "/test", "timeout": 100, "match": {"statusCodes": ["200", "204"]},
- "unhealthyThreshold": 10, "interval": 25, "pickHostNameFromBackendHttpSettings":
- false, "protocol": "Http"}}], "urlPathMaps": [], "frontendIPConfigurations":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "ec6e35c3-dd54-453f-9297-9b73189fd637", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"a3a6298d-aa68-4b8a-8de8-5a4b0ad349d4\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe create]
- Connection: [keep-alive]
- Content-Length: ['5879']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\
- \ {\r\n \"name\": \"myprobe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/probes/myprobe\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"protocol\": \"Http\",\r\n \"host\": \"www.test.com\"\
- ,\r\n \"path\": \"/test\",\r\n \"interval\": 25,\r\n \
- \ \"timeout\": 100,\r\n \"unhealthyThreshold\": 10,\r\n \
- \ \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\"\
- : 2,\r\n \"match\": {\r\n \"statusCodes\": [\r\n \
- \ \"200\",\r\n \"204\"\r\n ]\r\n \
- \ }\r\n }\r\n }\r\n ],\r\n \"redirectConfigurations\": []\r\
- \n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b084ca6-8924-45a4-b600-33cea6d01b1f?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['9295']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58: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-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\
- \ {\r\n \"name\": \"myprobe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/probes/myprobe\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"protocol\": \"Http\",\r\n \"host\": \"www.test.com\"\
- ,\r\n \"path\": \"/test\",\r\n \"interval\": 25,\r\n \
- \ \"timeout\": 100,\r\n \"unhealthyThreshold\": 10,\r\n \
- \ \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\"\
- : 2,\r\n \"match\": {\r\n \"statusCodes\": [\r\n \
- \ \"200\",\r\n \"204\"\r\n ]\r\n \
- \ }\r\n }\r\n }\r\n ],\r\n \"redirectConfigurations\": []\r\
- \n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9295']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:43 GMT']
- etag: [W/"9f3cfe90-529d-422d-a646-71020c03dd35"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\
- \ {\r\n \"name\": \"myprobe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/probes/myprobe\"\
- ,\r\n \"etag\": \"W/\\\"9f3cfe90-529d-422d-a646-71020c03dd35\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"protocol\": \"Http\",\r\n \"host\": \"www.test.com\"\
- ,\r\n \"path\": \"/test\",\r\n \"interval\": 25,\r\n \
- \ \"timeout\": 100,\r\n \"unhealthyThreshold\": 10,\r\n \
- \ \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\"\
- : 2,\r\n \"match\": {\r\n \"statusCodes\": [\r\n \
- \ \"200\",\r\n \"204\"\r\n ]\r\n \
- \ }\r\n }\r\n }\r\n ],\r\n \"redirectConfigurations\": []\r\
- \n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9295']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:44 GMT']
- etag: [W/"9f3cfe90-529d-422d-a646-71020c03dd35"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/probes/myprobe",
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\"", "name": "myprobe", "properties":
- {"host": "", "minServers": 3, "path": "/test2", "timeout": 101, "match": {"statusCodes":
- ["201"]}, "unhealthyThreshold": 11, "provisioningState": "Updating", "interval":
- 26, "pickHostNameFromBackendHttpSettings": true, "protocol": "Https"}}], "urlPathMaps":
- [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "ec6e35c3-dd54-453f-9297-9b73189fd637", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"9f3cfe90-529d-422d-a646-71020c03dd35\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe update]
- Connection: [keep-alive]
- Content-Length: ['6167']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\
- \ {\r\n \"name\": \"myprobe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/probes/myprobe\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"protocol\": \"Https\",\r\n \"host\": \"\",\r\n \
- \ \"path\": \"/test2\",\r\n \"interval\": 26,\r\n \
- \ \"timeout\": 101,\r\n \"unhealthyThreshold\": 11,\r\n \
- \ \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\"\
- : 3,\r\n \"match\": {\r\n \"statusCodes\": [\r\n \
- \ \"201\"\r\n ]\r\n }\r\n }\r\n }\r\
- \n ],\r\n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e700be60-a06b-488c-b561-7afbbace8348?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['9262']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:44 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-ms-ratelimit-remaining-subscription-writes: ['1190']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\
- \ {\r\n \"name\": \"myprobe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/probes/myprobe\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"protocol\": \"Https\",\r\n \"host\": \"\",\r\n \
- \ \"path\": \"/test2\",\r\n \"interval\": 26,\r\n \
- \ \"timeout\": 101,\r\n \"unhealthyThreshold\": 11,\r\n \
- \ \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\"\
- : 3,\r\n \"match\": {\r\n \"statusCodes\": [\r\n \
- \ \"201\"\r\n ]\r\n }\r\n }\r\n }\r\
- \n ],\r\n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9262']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:44 GMT']
- etag: [W/"d367b640-fa5f-44c1-ab08-70c88a6a1caa"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\
- \ {\r\n \"name\": \"myprobe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/probes/myprobe\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"protocol\": \"Https\",\r\n \"host\": \"\",\r\n \
- \ \"path\": \"/test2\",\r\n \"interval\": 26,\r\n \
- \ \"timeout\": 101,\r\n \"unhealthyThreshold\": 11,\r\n \
- \ \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\"\
- : 3,\r\n \"match\": {\r\n \"statusCodes\": [\r\n \
- \ \"201\"\r\n ]\r\n }\r\n }\r\n }\r\
- \n ],\r\n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9262']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:44 GMT']
- etag: [W/"d367b640-fa5f-44c1-ab08-70c88a6a1caa"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\
- \ {\r\n \"name\": \"myprobe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/probes/myprobe\"\
- ,\r\n \"etag\": \"W/\\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"protocol\": \"Https\",\r\n \"host\": \"\",\r\n \
- \ \"path\": \"/test2\",\r\n \"interval\": 26,\r\n \
- \ \"timeout\": 101,\r\n \"unhealthyThreshold\": 11,\r\n \
- \ \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\"\
- : 3,\r\n \"match\": {\r\n \"statusCodes\": [\r\n \
- \ \"201\"\r\n ]\r\n }\r\n }\r\n }\r\
- \n ],\r\n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['9262']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:44 GMT']
- etag: [W/"d367b640-fa5f-44c1-ab08-70c88a6a1caa"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "ec6e35c3-dd54-453f-9297-9b73189fd637", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"d367b640-fa5f-44c1-ab08-70c88a6a1caa\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe delete]
- Connection: [keep-alive]
- Content-Length: ['5620']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/307967d6-be51-483d-a19a-b693dacf8747?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:45 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-ms-ratelimit-remaining-subscription-writes: ['1192']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway probe list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ec6e35c3-dd54-453f-9297-9b73189fd637\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_probe000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:45 GMT']
- etag: [W/"4c40e5ca-1623-4d2e-a6a9-967d28b8b2bb"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_probe000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Mon, 18 Sep 2017 22:58:46 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZQUk9CRTVONUNCRVhCNENRQ1AzVkRCUlZXV0xJTnw4OTcxRTlBRkRGQjgxMTQ1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_rule.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_rule.yaml
deleted file mode 100644
index 89a25b592c9..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_ag_rule.yaml
+++ /dev/null
@@ -1,2261 +0,0 @@
-interactions:
-- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_rule000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001","name":"cli_test_ag_rule000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:46 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_rule000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001","name":"cli_test_ag_rule000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:46 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_rule000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
- response:
- body: {string: '{"value":[]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['12']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:47 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"resources": [{"dependsOn": [], "location": "westus", "apiVersion": "2015-06-15",
- "tags": {}, "type": "Microsoft.Network/virtualNetworks", "name": "ag1Vnet",
- "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
- [{"name": "default", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion":
- "2017-09-01", "location": "westus", "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
- "tags": {}, "type": "Microsoft.Network/applicationGateways", "name": "ag1",
- "properties": {"frontendPorts": [{"name": "appGatewayFrontendPort", "properties":
- {"Port": 80}}], "requestRoutingRules": [{"Name": "rule1", "properties": {"backendHttpSettings":
- {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic"}}], "sku": {"name": "Standard_Medium", "capacity": 2, "tier":
- "Standard"}, "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"privateIPAllocationMethod": "Dynamic", "privateIPAddress": "", "subnet": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "CookieBasedAffinity":
- "disabled", "Port": 80}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]}}],
- "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]", "type":
- "object"}}, "parameters": {}, "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0"}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2784']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_rule000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Resources/deployments/ag_deploy_NGhgvapPENbB119m3vL0Uc8VQoJ222p7","name":"ag_deploy_NGhgvapPENbB119m3vL0Uc8VQoJ222p7","properties":{"templateHash":"5512021077031724746","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-18T22:58:49.4865727Z","duration":"PT0.2814365S","correlationId":"930afd56-445c-44cb-883d-4287afc62457","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_rule000001/providers/Microsoft.Resources/deployments/ag_deploy_NGhgvapPENbB119m3vL0Uc8VQoJ222p7/operationStatuses/08586958313562724811?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['1309']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:48 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/applicationGateways/ag1''
- under resource group ''cli_test_ag_rule000001'' was not found."}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['220']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:58:49 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:19 GMT']
- etag: [W/"a6933681-f852-44a0-b3b5-22fdc32f9b1d"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['8479']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:19 GMT']
- etag: [W/"a6933681-f852-44a0-b3b5-22fdc32f9b1d"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"name": "mylistener", "properties": {"hostName": "www.test.com", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "protocol": "http", "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "a23f5806-af9b-4363-96ee-a4eb806d353e", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"a6933681-f852-44a0-b3b5-22fdc32f9b1d\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener create]
- Connection: [keep-alive]
- Content-Length: ['6246']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/22164cc7-62ec-4ede-be90-a1cdd1e66900?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['10188']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59: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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['10188']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:20 GMT']
- etag: [W/"9a2c0bf6-7882-4a07-96d5-2e966124aacb"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener",
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\"", "name": "mylistener",
- "properties": {"hostName": "www.test.com", "protocol": "Http", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"name": "mylistener2", "properties": {"hostName": "www.test2.com", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "protocol": "http", "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "a23f5806-af9b-4363-96ee-a4eb806d353e", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"9a2c0bf6-7882-4a07-96d5-2e966124aacb\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway http-listener create]
- Connection: [keep-alive]
- Content-Length: ['7228']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n },\r\n {\r\n \"name\": \"mylistener2\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/11b7e664-0501-452e-b3e1-53f79592f653?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['11902']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:22 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n },\r\n {\r\n \"name\": \"mylistener2\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['11902']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:22 GMT']
- etag: [W/"111ff0c7-1cc4-4d90-8185-869af9e1156e"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "mylistener",
- "properties": {"hostName": "www.test.com", "protocol": "Http", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "mylistener2",
- "properties": {"hostName": "www.test2.com", "protocol": "Http", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "a23f5806-af9b-4363-96ee-a4eb806d353e", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}},
- {"name": "myrule", "properties": {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "ruleType": "Basic", "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"111ff0c7-1cc4-4d90-8185-869af9e1156e\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule create]
- Connection: [keep-alive]
- Content-Length: ['8446']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false,\r\
- \n \"requestRoutingRules\": [\r\n {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- myrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2dcca22-b20a-4f46-af20-0691f00c4454?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['14156']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:23 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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false,\r\
- \n \"requestRoutingRules\": [\r\n {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- myrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['14156']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:23 GMT']
- etag: [W/"ffa6ddb0-a524-4fd0-9351-81638f695603"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false,\r\
- \n \"requestRoutingRules\": [\r\n {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- myrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- ,\r\n \"etag\": \"W/\\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['14156']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:23 GMT']
- etag: [W/"ffa6ddb0-a524-4fd0-9351-81638f695603"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "mylistener",
- "properties": {"hostName": "www.test.com", "protocol": "Http", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "mylistener2",
- "properties": {"hostName": "www.test2.com", "protocol": "Http", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "a23f5806-af9b-4363-96ee-a4eb806d353e", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "myrule", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"ffa6ddb0-a524-4fd0-9351-81638f695603\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule update]
- Connection: [keep-alive]
- Content-Length: ['8765']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n },\r\n {\r\n \"name\": \"mylistener2\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false,\r\
- \n \"requestRoutingRules\": [\r\n {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- myrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3791e106-92f5-4226-8dbd-fb6781f121fb?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['14157']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:24 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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n },\r\n {\r\n \"name\": \"mylistener2\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false,\r\
- \n \"requestRoutingRules\": [\r\n {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- myrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['14157']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:24 GMT']
- etag: [W/"16a275f6-2600-45e3-9802-b54f39765f89"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n },\r\n {\r\n \"name\": \"mylistener2\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false,\r\
- \n \"requestRoutingRules\": [\r\n {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- myrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['14157']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:24 GMT']
- etag: [W/"16a275f6-2600-45e3-9802-b54f39765f89"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n },\r\n {\r\n \"name\": \"mylistener2\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false,\r\
- \n \"requestRoutingRules\": [\r\n {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"\
- myrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/myrule\"\
- ,\r\n \"etag\": \"W/\\\"16a275f6-2600-45e3-9802-b54f39765f89\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['14157']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:24 GMT']
- etag: [W/"16a275f6-2600-45e3-9802-b54f39765f89"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus", "properties": {"sslCertificates": [], "authenticationCertificates":
- [], "redirectConfigurations": [], "sku": {"name": "Standard_Medium", "tier":
- "Standard", "capacity": 2}, "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "appGatewayBackendHttpSettings",
- "properties": {"requestTimeout": 30, "pickHostNameFromBackendAddress": false,
- "cookieBasedAffinity": "Disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "provisioningState": "Updating", "port": 80, "protocol":
- "Http"}}], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "appGatewayHttpListener",
- "properties": {"protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "mylistener",
- "properties": {"hostName": "www.test.com", "protocol": "Http", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "mylistener2",
- "properties": {"hostName": "www.test2.com", "protocol": "Http", "frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "provisioningState": "Updating", "requireServerNameIndication": false, "frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}}}],
- "probes": [], "urlPathMaps": [], "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Updating"}}], "provisioningState":
- "Updating", "resourceGuid": "a23f5806-af9b-4363-96ee-a4eb806d353e", "requestRoutingRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "rule1", "properties":
- {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}}}],
- "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\"", "name": "appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}]},
- "etag": "W/\\"16a275f6-2600-45e3-9802-b54f39765f89\\""}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule delete]
- Connection: [keep-alive]
- Content-Length: ['7583']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n },\r\n {\r\n \"name\": \"mylistener2\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f4baf82a-5cd5-4103-bcfb-e8071d147e94?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['11902']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:25 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-ms-ratelimit-remaining-subscription-writes: ['1196']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway rule list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"a23f5806-af9b-4363-96ee-a4eb806d353e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \
- \ \"name\": \"mylistener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test.com\",\r\n \"requireServerNameIndication\": false\r\n\
- \ }\r\n },\r\n {\r\n \"name\": \"mylistener2\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/mylistener2\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"hostName\"\
- : \"www.test2.com\",\r\n \"requireServerNameIndication\": false\r\
- \n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"0c909290-8edd-4ce2-8587-8fe40f5c6d62\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_rule000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['11902']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:59:25 GMT']
- etag: [W/"0c909290-8edd-4ce2-8587-8fe40f5c6d62"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_rule000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Mon, 18 Sep 2017 22:59:25 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZSVUxFSUNNUzY2WEg3WEVSM0FONTZWQllKRlM3RHwyRjIwMkM2M0YyQkVCNkIyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_no_wait.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_no_wait.yaml
index cd5693a80d2..36852952055 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_no_wait.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_no_wait.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001?api-version=2017-05-10
@@ -20,7 +20,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:03 GMT']
+ date: ['Fri, 13 Oct 2017 23:07:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -31,12 +31,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:03 GMT']
+ date: ['Fri, 13 Oct 2017 23:07:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,12 +57,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_ag_no_wait000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
@@ -72,77 +72,78 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:04 GMT']
+ date: ['Fri, 13 Oct 2017 23:07:34 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"template": {"contentVersion": "1.0.0.0", "parameters":
- {}, "resources": [{"apiVersion": "2015-06-15", "type": "Microsoft.Network/virtualNetworks",
- "location": "westus", "dependsOn": [], "name": "ag1Vnet", "tags": {}, "properties":
- {"subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"}, "name": "default"}],
- "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}}, {"apiVersion": "2017-09-01",
- "type": "Microsoft.Network/applicationGateways", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
- "location": "westus", "name": "ag1", "properties": {"gatewayIPConfigurations":
- [{"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
- "name": "appGatewayFrontendIP"}], "backendHttpSettingsCollection": [{"properties":
- {"CookieBasedAffinity": "disabled", "Protocol": "Http", "connectionDraining":
- {"drainTimeoutInSec": 180, "enabled": true}, "Port": 80}, "name": "appGatewayBackendHttpSettings"}],
- "requestRoutingRules": [{"Name": "rule1", "properties": {"RuleType": "Basic",
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"}}}],
- "httpListeners": [{"properties": {"SslCertificate": null, "Protocol": "http",
- "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"},
+ body: 'b''{"properties": {"parameters": {}, "template": {"parameters": {}, "variables":
+ {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'', \''ag1\'')]"},
+ "resources": [{"dependsOn": [], "tags": {}, "location": "westus", "type": "Microsoft.Network/virtualNetworks",
+ "apiVersion": "2015-06-15", "name": "ag1Vnet", "properties": {"addressSpace":
+ {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"properties": {"addressPrefix":
+ "10.0.0.0/24"}, "name": "default"}]}}, {"dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
+ "tags": {}, "location": "westus", "type": "Microsoft.Network/applicationGateways",
+ "apiVersion": "2017-09-01", "name": "ag1", "properties": {"httpListeners": [{"properties":
+ {"SslCertificate": null, "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
+ \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
"FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"}},
- "name": "appGatewayHttpListener"}], "sku": {"tier": "Standard", "capacity":
- 2, "name": "Standard_Medium"}, "frontendIPConfigurations": [{"properties": {"privateIPAllocationMethod":
- "Dynamic", "privateIPAddress": "", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
- "name": "appGatewayFrontendIP"}], "backendAddressPools": [{"name": "appGatewayBackendPool"}],
+ "name": "appGatewayHttpListener"}], "sku": {"capacity": 2, "tier": "Standard",
+ "name": "Standard_Medium"}, "requestRoutingRules": [{"properties": {"backendHttpSettings":
+ {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
+ "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
+ "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
+ "RuleType": "Basic"}, "Name": "rule1"}], "backendHttpSettingsCollection": [{"properties":
+ {"Port": 80, "connectionDraining": {"enabled": true, "drainTimeoutInSec": 180},
+ "Protocol": "Http", "CookieBasedAffinity": "disabled"}, "name": "appGatewayBackendHttpSettings"}],
+ "backendAddressPools": [{"name": "appGatewayBackendPool"}], "gatewayIPConfigurations":
+ [{"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
+ "name": "appGatewayFrontendIP"}], "frontendIPConfigurations": [{"properties":
+ {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "privateIPAddress": "", "privateIPAllocationMethod": "Dynamic"}, "name": "appGatewayFrontendIP"}],
"frontendPorts": [{"properties": {"Port": 80}, "name": "appGatewayFrontendPort"}]}}],
- "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]",
- "type": "object"}}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"},
- "parameters": {}, "mode": "Incremental"}}'''
+ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"applicationGateway": {"type": "object", "value": "[reference(\''ag1\'')]"}},
+ "contentVersion": "1.0.0.0"}, "mode": "Incremental"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['2785']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/ag_deploy_6BiryXxfkFjAevHNXjQwYxtIaLpG5DM3","name":"ag_deploy_6BiryXxfkFjAevHNXjQwYxtIaLpG5DM3","properties":{"templateHash":"9396705371205783233","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:37:05.7933751Z","duration":"PT0.2820516S","correlationId":"6f7b7bc3-4c9c-49a5-b1a9-960da6ee2b9b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/ag_deploy_52o9JnXS4WMuKUeL8abF4T4INZVqzcMz","name":"ag_deploy_52o9JnXS4WMuKUeL8abF4T4INZVqzcMz","properties":{"templateHash":"10897323392725206080","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T23:07:36.364833Z","duration":"PT0.4669669S","correlationId":"19c2e1d9-9139-49f8-98c5-b1cefc04bc34","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/ag_deploy_6BiryXxfkFjAevHNXjQwYxtIaLpG5DM3/operationStatuses/08586957714599662957?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/ag_deploy_52o9JnXS4WMuKUeL8abF4T4INZVqzcMz/operationStatuses/08586936708295797633?api-version=2017-05-10']
cache-control: [no-cache]
content-length: ['1309']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:05 GMT']
+ date: ['Fri, 13 Oct 2017 23:07:35 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001?api-version=2017-05-10
@@ -152,7 +153,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:05 GMT']
+ date: ['Fri, 13 Oct 2017 23:07:36 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -163,12 +164,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_ag_no_wait000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
@@ -178,77 +179,78 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:06 GMT']
+ date: ['Fri, 13 Oct 2017 23:07:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"template": {"contentVersion": "1.0.0.0", "parameters":
- {}, "resources": [{"apiVersion": "2015-06-15", "type": "Microsoft.Network/virtualNetworks",
- "location": "westus", "dependsOn": [], "name": "ag2Vnet", "tags": {}, "properties":
- {"subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"}, "name": "default"}],
- "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}}, {"apiVersion": "2017-09-01",
- "type": "Microsoft.Network/applicationGateways", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/ag2Vnet"],
- "location": "westus", "name": "ag2", "properties": {"gatewayIPConfigurations":
- [{"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default"}},
- "name": "appGatewayFrontendIP"}], "backendHttpSettingsCollection": [{"properties":
- {"CookieBasedAffinity": "disabled", "Protocol": "Http", "connectionDraining":
- {"drainTimeoutInSec": 1, "enabled": false}, "Port": 80}, "name": "appGatewayBackendHttpSettings"}],
- "requestRoutingRules": [{"Name": "rule1", "properties": {"RuleType": "Basic",
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"}}}],
- "httpListeners": [{"properties": {"SslCertificate": null, "Protocol": "http",
- "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"},
+ body: 'b''{"properties": {"parameters": {}, "template": {"parameters": {}, "variables":
+ {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'', \''ag2\'')]"},
+ "resources": [{"dependsOn": [], "tags": {}, "location": "westus", "type": "Microsoft.Network/virtualNetworks",
+ "apiVersion": "2015-06-15", "name": "ag2Vnet", "properties": {"addressSpace":
+ {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"properties": {"addressPrefix":
+ "10.0.0.0/24"}, "name": "default"}]}}, {"dependsOn": ["Microsoft.Network/virtualNetworks/ag2Vnet"],
+ "tags": {}, "location": "westus", "type": "Microsoft.Network/applicationGateways",
+ "apiVersion": "2017-09-01", "name": "ag2", "properties": {"httpListeners": [{"properties":
+ {"SslCertificate": null, "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
+ \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http",
"FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"}},
- "name": "appGatewayHttpListener"}], "sku": {"tier": "Standard", "capacity":
- 2, "name": "Standard_Medium"}, "frontendIPConfigurations": [{"properties": {"privateIPAllocationMethod":
- "Dynamic", "privateIPAddress": "", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default"}},
- "name": "appGatewayFrontendIP"}], "backendAddressPools": [{"name": "appGatewayBackendPool"}],
+ "name": "appGatewayHttpListener"}], "sku": {"capacity": 2, "tier": "Standard",
+ "name": "Standard_Medium"}, "requestRoutingRules": [{"properties": {"backendHttpSettings":
+ {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
+ "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
+ "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
+ "RuleType": "Basic"}, "Name": "rule1"}], "backendHttpSettingsCollection": [{"properties":
+ {"Port": 80, "connectionDraining": {"enabled": false, "drainTimeoutInSec": 1},
+ "Protocol": "Http", "CookieBasedAffinity": "disabled"}, "name": "appGatewayBackendHttpSettings"}],
+ "backendAddressPools": [{"name": "appGatewayBackendPool"}], "gatewayIPConfigurations":
+ [{"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default"}},
+ "name": "appGatewayFrontendIP"}], "frontendIPConfigurations": [{"properties":
+ {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default"},
+ "privateIPAddress": "", "privateIPAllocationMethod": "Dynamic"}, "name": "appGatewayFrontendIP"}],
"frontendPorts": [{"properties": {"Port": 80}, "name": "appGatewayFrontendPort"}]}}],
- "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag2\'')]"}, "outputs": {"applicationGateway": {"value": "[reference(\''ag2\'')]",
- "type": "object"}}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"},
- "parameters": {}, "mode": "Incremental"}}'''
+ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"applicationGateway": {"type": "object", "value": "[reference(\''ag2\'')]"}},
+ "contentVersion": "1.0.0.0"}, "mode": "Incremental"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['2784']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/ag_deploy_Y6tF2ESOtk1Bdj4evMJgDR9RUPbMukuq","name":"ag_deploy_Y6tF2ESOtk1Bdj4evMJgDR9RUPbMukuq","properties":{"templateHash":"12219187531373536387","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:37:07.640417Z","duration":"PT0.2425022S","correlationId":"87a0c30e-7b15-40c9-99b5-4e9924aaa63f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag2Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag2"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/ag_deploy_f1IYXgnNSHNoaJ0u0z0eRpkmaAa6rL2E","name":"ag_deploy_f1IYXgnNSHNoaJ0u0z0eRpkmaAa6rL2E","properties":{"templateHash":"3561426981406297531","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T23:07:39.7976436Z","duration":"PT0.608739S","correlationId":"3dcf91b2-1b8f-4779-8a1e-e826bab66e17","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag2Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag2"}]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/ag_deploy_Y6tF2ESOtk1Bdj4evMJgDR9RUPbMukuq/operationStatuses/08586957714580797010?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001/providers/Microsoft.Resources/deployments/ag_deploy_f1IYXgnNSHNoaJ0u0z0eRpkmaAa6rL2E/operationStatuses/08586936708262887261?api-version=2017-05-10']
cache-control: [no-cache]
- content-length: ['1309']
+ content-length: ['1308']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:07 GMT']
+ date: ['Fri, 13 Oct 2017 23:07:39 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
@@ -259,7 +261,7 @@ interactions:
cache-control: [no-cache]
content-length: ['220']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:07 GMT']
+ date: ['Fri, 13 Oct 2017 23:07:39 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -270,33 +272,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -305,21 +307,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -330,7 +332,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -341,7 +343,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -355,8 +357,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8480']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:07 GMT']
- etag: [W/"02052bdb-9149-474f-82ab-71955920689f"]
+ date: ['Fri, 13 Oct 2017 23:09:40 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -369,33 +371,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -404,21 +406,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -429,7 +431,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -440,7 +442,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -454,8 +456,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8480']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:08 GMT']
- etag: [W/"02052bdb-9149-474f-82ab-71955920689f"]
+ date: ['Fri, 13 Oct 2017 23:11:40 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -468,33 +470,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -503,21 +505,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -528,7 +530,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -539,7 +541,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -553,8 +555,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8480']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:08 GMT']
- etag: [W/"02052bdb-9149-474f-82ab-71955920689f"]
+ date: ['Fri, 13 Oct 2017 23:13:40 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -567,33 +569,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -602,21 +604,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -627,7 +629,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -638,7 +640,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -652,8 +654,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8480']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:08 GMT']
- etag: [W/"02052bdb-9149-474f-82ab-71955920689f"]
+ date: ['Fri, 13 Oct 2017 23:15:41 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -666,33 +668,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -701,21 +703,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -726,7 +728,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -737,7 +739,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -751,8 +753,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8480']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:08 GMT']
- etag: [W/"02052bdb-9149-474f-82ab-71955920689f"]
+ date: ['Fri, 13 Oct 2017 23:17:41 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -765,33 +767,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -800,21 +802,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -825,7 +827,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -836,7 +838,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -850,8 +852,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8480']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:09 GMT']
- etag: [W/"02052bdb-9149-474f-82ab-71955920689f"]
+ date: ['Fri, 13 Oct 2017 23:19:42 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -864,33 +866,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -899,21 +901,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -924,7 +926,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -935,7 +937,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -949,8 +951,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8480']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:09 GMT']
- etag: [W/"02052bdb-9149-474f-82ab-71955920689f"]
+ date: ['Fri, 13 Oct 2017 23:21:43 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -963,33 +965,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -998,21 +1000,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -1023,7 +1025,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1034,7 +1036,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"02052bdb-9149-474f-82ab-71955920689f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -1048,8 +1050,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8480']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:09 GMT']
- etag: [W/"02052bdb-9149-474f-82ab-71955920689f"]
+ date: ['Fri, 13 Oct 2017 23:23:43 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1062,33 +1064,132 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
+ ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
+ : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
+ : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
+ : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
+ : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
+ appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
+ : {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\"\
+ : 180\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
+ \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
+ \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
+ : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
+ \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"960524ed-e3de-4195-9a04-de084c66d82c\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n },\r\n \"backendAddressPool\": {\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
+ \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['8480']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 23:25:43 GMT']
+ etag: [W/"960524ed-e3de-4195-9a04-de084c66d82c"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
+ \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -1097,21 +1198,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -1122,7 +1223,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1133,7 +1234,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -1147,8 +1248,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8531']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:09 GMT']
- etag: [W/"ca970a23-f3df-4a8a-bd65-fd281d0fe50a"]
+ date: ['Fri, 13 Oct 2017 23:27:44 GMT']
+ etag: [W/"f7b51e8c-d04e-4059-a878-64e9eda1ee2c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1161,33 +1262,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"95cd17d0-dc08-473e-9793-5c39c1753ea9\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"6f422c2e-d808-4ca0-9d9d-58202fd48875\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
@@ -1196,21 +1297,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -1221,7 +1322,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1232,7 +1333,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
@@ -1246,8 +1347,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8530']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:09 GMT']
- etag: [W/"5327ea26-9463-4826-8ca7-548a12195fdd"]
+ date: ['Fri, 13 Oct 2017 23:27:44 GMT']
+ etag: [W/"e112e53d-c83a-4a7e-a2ce-927d20723d9d"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1260,33 +1361,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"06d482a9-1af3-4a30-98a4-91752194d6c7\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"04d7ce6f-5e5a-4546-a2fa-c608b69cf8d6\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -1295,21 +1396,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -1320,7 +1421,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1331,7 +1432,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"ca970a23-f3df-4a8a-bd65-fd281d0fe50a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f7b51e8c-d04e-4059-a878-64e9eda1ee2c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -1345,8 +1446,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8531']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:10 GMT']
- etag: [W/"ca970a23-f3df-4a8a-bd65-fd281d0fe50a"]
+ date: ['Fri, 13 Oct 2017 23:27:44 GMT']
+ etag: [W/"f7b51e8c-d04e-4059-a878-64e9eda1ee2c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1359,33 +1460,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"95cd17d0-dc08-473e-9793-5c39c1753ea9\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"6f422c2e-d808-4ca0-9d9d-58202fd48875\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
@@ -1394,21 +1495,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -1419,7 +1520,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1430,7 +1531,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5327ea26-9463-4826-8ca7-548a12195fdd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e112e53d-c83a-4a7e-a2ce-927d20723d9d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
@@ -1444,8 +1545,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8530']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:10 GMT']
- etag: [W/"5327ea26-9463-4826-8ca7-548a12195fdd"]
+ date: ['Fri, 13 Oct 2017 23:27:45 GMT']
+ etag: [W/"e112e53d-c83a-4a7e-a2ce-927d20723d9d"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1458,62 +1559,62 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/472cfbb2-a3de-45ea-98b9-194aed575f39?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3a39fc9f-8082-4037-839e-ed799a8ac3d2?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:55:10 GMT']
+ date: ['Fri, 13 Oct 2017 23:27:46 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/472cfbb2-a3de-45ea-98b9-194aed575f39?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/3a39fc9f-8082-4037-839e-ed799a8ac3d2?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Deleting\",\r\n \"resourceGuid\": \"95cd17d0-dc08-473e-9793-5c39c1753ea9\"\
+ : \"Deleting\",\r\n \"resourceGuid\": \"6f422c2e-d808-4ca0-9d9d-58202fd48875\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
@@ -1522,21 +1623,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -1547,7 +1648,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1558,7 +1659,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
@@ -1572,8 +1673,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8522']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:10 GMT']
- etag: [W/"fea3b50d-39b8-496c-b819-9b7763fa4f7a"]
+ date: ['Fri, 13 Oct 2017 23:27:46 GMT']
+ etag: [W/"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1586,33 +1687,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Deleting\",\r\n \"resourceGuid\": \"95cd17d0-dc08-473e-9793-5c39c1753ea9\"\
+ : \"Deleting\",\r\n \"resourceGuid\": \"6f422c2e-d808-4ca0-9d9d-58202fd48875\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
@@ -1621,21 +1722,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -1646,7 +1747,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1657,7 +1758,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
@@ -1671,8 +1772,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8522']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:41 GMT']
- etag: [W/"fea3b50d-39b8-496c-b819-9b7763fa4f7a"]
+ date: ['Fri, 13 Oct 2017 23:28:16 GMT']
+ etag: [W/"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1685,33 +1786,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Deleting\",\r\n \"resourceGuid\": \"95cd17d0-dc08-473e-9793-5c39c1753ea9\"\
+ : \"Deleting\",\r\n \"resourceGuid\": \"6f422c2e-d808-4ca0-9d9d-58202fd48875\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default\"\
@@ -1720,21 +1821,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -1745,7 +1846,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1756,7 +1857,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fea3b50d-39b8-496c-b819-9b7763fa4f7a\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener\"\
@@ -1770,8 +1871,8 @@ interactions:
cache-control: [no-cache]
content-length: ['8522']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:11 GMT']
- etag: [W/"fea3b50d-39b8-496c-b819-9b7763fa4f7a"]
+ date: ['Fri, 13 Oct 2017 23:28:47 GMT']
+ etag: [W/"fd74ac30-1bf1-4e88-8bf8-b9bee76ec195"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1784,12 +1885,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait000001/providers/Microsoft.Network/applicationGateways/ag2?api-version=2017-09-01
@@ -1800,7 +1901,7 @@ interactions:
cache-control: [no-cache]
content-length: ['220']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:42 GMT']
+ date: ['Fri, 13 Oct 2017 23:29:18 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1811,13 +1912,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_no_wait000001?api-version=2017-05-10
@@ -1826,11 +1927,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:56:42 GMT']
+ date: ['Fri, 13 Oct 2017 23:29:19 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZOTzo1RldBSVRMSUlPVVZBWklSU1BVR0hUVkJaVnw2OTI4RDU2RTQxMjU3QTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZOTzo1RldBSVRVWTNETFRYRVNJQ0dYRTNESzZJRXxCRUUyNkIyOTY3RTNBMjFBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_redirect_config.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_redirect_config.yaml
index 4f902d2ffe9..45712f59bc2 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_redirect_config.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_redirect_config.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:53:58 GMT']
+ date: ['Wed, 11 Oct 2017 19:59:51 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:53:59 GMT']
+ date: ['Wed, 11 Oct 2017 19:59:51 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,12 +57,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_basic000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
@@ -72,79 +72,79 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:53:59 GMT']
+ date: ['Wed, 11 Oct 2017 19:59:52 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"template": {"variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "parameters": {}, "resources": [{"location": "westus", "type":
- "Microsoft.Network/virtualNetworks", "apiVersion": "2015-06-15", "properties":
- {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"properties":
- {"addressPrefix": "10.0.0.0/24"}, "name": "default"}]}, "tags": {}, "name":
- "ag1Vnet", "dependsOn": []}, {"location": "westus", "type": "Microsoft.Network/applicationGateways",
- "apiVersion": "2017-09-01", "properties": {"requestRoutingRules": [{"Name":
- "rule1", "properties": {"backendAddressPool": {"id": "[concat(variables(\''appGwID\''),
- \''/backendAddressPools/appGatewayBackendPool\'')]"}, "backendHttpSettings":
- {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
+ body: 'b''{"properties": {"parameters": {}, "template": {"variables": {"appGwID":
+ "[resourceId(\''Microsoft.Network/applicationGateways\'', \''ag1\'')]"}, "outputs":
+ {"applicationGateway": {"value": "[reference(\''ag1\'')]", "type": "object"}},
+ "parameters": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "resources": [{"properties": {"subnets": [{"name": "default", "properties":
+ {"addressPrefix": "10.0.0.0/24"}}], "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}},
+ "type": "Microsoft.Network/virtualNetworks", "location": "westus", "tags": {},
+ "dependsOn": [], "name": "ag1Vnet", "apiVersion": "2015-06-15"}, {"properties":
+ {"gatewayIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
+ {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
+ "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port":
+ 80}}], "backendHttpSettingsCollection": [{"name": "appGatewayBackendHttpSettings",
+ "properties": {"Protocol": "Http", "Port": 80, "CookieBasedAffinity": "disabled"}}],
+ "sku": {"name": "Standard_Medium", "capacity": 2, "tier": "Standard"}, "requestRoutingRules":
+ [{"properties": {"backendHttpSettings": {"id": "[concat(variables(\''appGwID\''),
+ \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"}, "backendAddressPool":
+ {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
"RuleType": "Basic", "httpListener": {"id": "[concat(variables(\''appGwID\''),
- \''/httpListeners/appGatewayHttpListener\'')]"}}}], "backendAddressPools": [{"name":
- "appGatewayBackendPool"}], "backendHttpSettingsCollection": [{"properties":
- {"connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "Protocol":
- "Http", "CookieBasedAffinity": "disabled", "Port": 80}, "name": "appGatewayBackendHttpSettings"}],
- "gatewayIPConfigurations": [{"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
- "name": "appGatewayFrontendIP"}], "httpListeners": [{"properties": {"FrontendPort":
- {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null, "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http"},
- "name": "appGatewayHttpListener"}], "frontendIPConfigurations": [{"properties":
- {"privateIPAddress": "", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
- "privateIPAllocationMethod": "Dynamic"}, "name": "appGatewayFrontendIP"}], "sku":
- {"tier": "Standard", "capacity": 2, "name": "Standard_Medium"}, "frontendPorts":
- [{"properties": {"Port": 80}, "name": "appGatewayFrontendPort"}]}, "tags": {},
- "name": "ag1", "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"]}],
- "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "outputs": {"applicationGateway": {"type": "object", "value": "[reference(\''ag1\'')]"}}},
- "parameters": {}, "mode": "Incremental"}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2784']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ \''/httpListeners/appGatewayHttpListener\'')]"}}, "Name": "rule1"}], "backendAddressPools":
+ [{"name": "appGatewayBackendPool"}], "frontendIPConfigurations": [{"name": "appGatewayFrontendIP",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "privateIPAddress": ""}}], "httpListeners": [{"name": "appGatewayHttpListener",
+ "properties": {"FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
+ \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "FrontendPort": {"Id":
+ "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
+ "Protocol": "http", "SslCertificate": null}}]}, "type": "Microsoft.Network/applicationGateways",
+ "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
+ "name": "ag1", "apiVersion": "2017-09-01"}], "contentVersion": "1.0.0.0"}, "mode":
+ "Incremental"}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['2718']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/ag_deploy_8oTjVCYQuqeLdn9wKa3DzOhEfF8y75AU","name":"ag_deploy_8oTjVCYQuqeLdn9wKa3DzOhEfF8y75AU","properties":{"templateHash":"7527042767012032369","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-18T22:54:00.9855327Z","duration":"PT0.2405334S","correlationId":"1720e7e3-0573-4416-bb46-d6fba657993d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/ag_deploy_bjvrY8BkkUDcsL3L9YcDq0l7JSjzumOk","name":"ag_deploy_bjvrY8BkkUDcsL3L9YcDq0l7JSjzumOk","properties":{"templateHash":"2478702294496462700","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-11T19:59:55.4031696Z","duration":"PT0.856966S","correlationId":"288cad2a-0c28-4472-91d8-62e5b044de0b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/ag_deploy_8oTjVCYQuqeLdn9wKa3DzOhEfF8y75AU/operationStatuses/08586958316447326211?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/ag_deploy_bjvrY8BkkUDcsL3L9YcDq0l7JSjzumOk/operationStatuses/08586938548909314142?api-version=2017-05-10']
cache-control: [no-cache]
- content-length: ['1309']
+ content-length: ['1308']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:00 GMT']
+ date: ['Wed, 11 Oct 2017 19:59:55 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
@@ -155,7 +155,7 @@ interactions:
cache-control: [no-cache]
content-length: ['220']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:00 GMT']
+ date: ['Wed, 11 Oct 2017 19:59:55 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -166,33 +166,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1e29dc1-5135-401c-8a54-4f6cd10bd43e\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"78af0411-84e9-46e9-96c1-04991ff26d95\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -201,32 +201,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -237,7 +235,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -249,10 +247,10 @@ interactions:
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8479']
+ content-length: ['8363']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:31 GMT']
- etag: [W/"38c5d585-008b-46e2-9927-77360e37f08c"]
+ date: ['Wed, 11 Oct 2017 20:00:26 GMT']
+ etag: [W/"13dec1f7-c83d-428f-adfd-c58616dce5d6"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -265,33 +263,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway redirect-config create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1e29dc1-5135-401c-8a54-4f6cd10bd43e\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"78af0411-84e9-46e9-96c1-04991ff26d95\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -300,32 +298,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -336,7 +332,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"38c5d585-008b-46e2-9927-77360e37f08c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -348,10 +344,10 @@ interactions:
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8479']
+ content-length: ['8363']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:31 GMT']
- etag: [W/"38c5d585-008b-46e2-9927-77360e37f08c"]
+ date: ['Wed, 11 Oct 2017 20:00:27 GMT']
+ etag: [W/"13dec1f7-c83d-428f-adfd-c58616dce5d6"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -360,75 +356,72 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "etag": "W/\\"38c5d585-008b-46e2-9927-77360e37f08c\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1",
- "properties": {"frontendPorts": [{"etag": "W/\\"38c5d585-008b-46e2-9927-77360e37f08c\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}, "name": "appGatewayFrontendPort"}],
- "redirectConfigurations": [{"properties": {"includePath": false, "redirectType":
- "Permanent", "targetListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},
- "includeQueryString": true}, "name": "redirect1"}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"38c5d585-008b-46e2-9927-77360e37f08c\\"", "properties": {"pickHostNameFromBackendAddress":
- false, "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "cookieBasedAffinity":
- "Disabled", "port": 80, "protocol": "Http", "provisioningState": "Updating",
- "requestTimeout": 30}, "name": "appGatewayBackendHttpSettings"}], "sslCertificates":
- [], "urlPathMaps": [], "httpListeners": [{"etag": "W/\\"38c5d585-008b-46e2-9927-77360e37f08c\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "properties": {"provisioningState": "Updating", "frontendIPConfiguration": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "protocol": "Http", "requireServerNameIndication": false, "frontendPort": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}},
- "name": "appGatewayHttpListener"}], "backendAddressPools": [{"etag": "W/\\"38c5d585-008b-46e2-9927-77360e37f08c\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "properties": {"provisioningState": "Updating", "backendAddresses": []}, "name":
- "appGatewayBackendPool"}], "probes": [], "requestRoutingRules": [{"etag": "W/\\"38c5d585-008b-46e2-9927-77360e37f08c\\"",
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1",
+ "properties": {"gatewayIPConfigurations": [{"etag": "W/\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\"",
+ "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP"}], "sku": {"name": "Standard_Medium", "capacity":
+ 2, "tier": "Standard"}, "resourceGuid": "78af0411-84e9-46e9-96c1-04991ff26d95",
+ "sslCertificates": [], "frontendPorts": [{"etag": "W/\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\"",
+ "properties": {"port": 80, "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
+ "name": "appGatewayFrontendPort"}], "requestRoutingRules": [{"etag": "W/\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\"",
+ "properties": {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
+ "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
+ "ruleType": "Basic", "provisioningState": "Updating", "httpListener": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}},
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "properties": {"backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "ruleType": "Basic", "provisioningState": "Updating", "backendHttpSettings":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}},
- "name": "rule1"}], "sku": {"tier": "Standard", "capacity": 2, "name": "Standard_Medium"},
- "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"38c5d585-008b-46e2-9927-77360e37f08c\\"", "properties": {"provisioningState":
- "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
- "privateIPAllocationMethod": "Dynamic"}, "name": "appGatewayFrontendIP"}], "resourceGuid":
- "f1e29dc1-5135-401c-8a54-4f6cd10bd43e", "authenticationCertificates": [], "gatewayIPConfigurations":
- [{"etag": "W/\\"38c5d585-008b-46e2-9927-77360e37f08c\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
- "name": "appGatewayFrontendIP"}], "provisioningState": "Updating"}, "tags":
- {}}'''
+ "name": "rule1"}], "probes": [], "frontendIPConfigurations": [{"etag": "W/\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\"",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP"}], "redirectConfigurations": [{"properties":
+ {"targetListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},
+ "redirectType": "Permanent", "includeQueryString": true, "includePath": false},
+ "name": "redirect1"}], "provisioningState": "Updating", "httpListeners": [{"etag":
+ "W/\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\"", "properties": {"provisioningState":
+ "Updating", "protocol": "Http", "requireServerNameIndication": false, "frontendIPConfiguration":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
+ "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
+ "name": "appGatewayHttpListener"}], "urlPathMaps": [], "backendHttpSettingsCollection":
+ [{"etag": "W/\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\"", "properties": {"cookieBasedAffinity":
+ "Disabled", "port": 80, "pickHostNameFromBackendAddress": false, "requestTimeout":
+ 30, "protocol": "Http", "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
+ "name": "appGatewayBackendHttpSettings"}], "backendAddressPools": [{"etag":
+ "W/\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\"", "properties": {"backendAddresses":
+ [], "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
+ "name": "appGatewayBackendPool"}], "authenticationCertificates": []}, "location":
+ "westus", "tags": {}, "etag": "W/\\"13dec1f7-c83d-428f-adfd-c58616dce5d6\\""}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway redirect-config create]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['5997']
+ Content-Length: ['5931']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1e29dc1-5135-401c-8a54-4f6cd10bd43e\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"78af0411-84e9-46e9-96c1-04991ff26d95\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -437,32 +430,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -475,7 +466,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -486,58 +477,58 @@ interactions:
\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"redirect1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\"\
: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n },\r\n \"includePath\": false,\r\n \"includeQueryString\"\
: true\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8b7eac50-31f0-42cc-93c9-b773f86e9319?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64ee9054-6dff-4e43-a310-0f5bb79066c4?api-version=2017-09-01']
cache-control: [no-cache]
- content-length: ['9664']
+ content-length: ['9548']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:32 GMT']
+ date: ['Wed, 11 Oct 2017 20:00:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: [Accept-Encoding]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway redirect-config show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1e29dc1-5135-401c-8a54-4f6cd10bd43e\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"78af0411-84e9-46e9-96c1-04991ff26d95\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -546,32 +537,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -584,7 +573,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -595,7 +584,7 @@ interactions:
\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"redirect1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\"\
: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -603,10 +592,10 @@ interactions:
: true\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['9664']
+ content-length: ['9548']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:32 GMT']
- etag: [W/"2a48b8be-3861-476b-b75f-6bff6bc61fb1"]
+ date: ['Wed, 11 Oct 2017 20:00:28 GMT']
+ etag: [W/"3c817103-779b-4cea-ac58-f72203aafefc"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -619,33 +608,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway redirect-config update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1e29dc1-5135-401c-8a54-4f6cd10bd43e\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"78af0411-84e9-46e9-96c1-04991ff26d95\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -654,32 +643,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -692,7 +679,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -703,7 +690,7 @@ interactions:
\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"redirect1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
- ,\r\n \"etag\": \"W/\\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c817103-779b-4cea-ac58-f72203aafefc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\"\
: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -711,10 +698,10 @@ interactions:
: true\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['9664']
+ content-length: ['9548']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:33 GMT']
- etag: [W/"2a48b8be-3861-476b-b75f-6bff6bc61fb1"]
+ date: ['Wed, 11 Oct 2017 20:00:29 GMT']
+ etag: [W/"3c817103-779b-4cea-ac58-f72203aafefc"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -723,76 +710,73 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1",
- "properties": {"frontendPorts": [{"etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "properties": {"provisioningState": "Updating", "port": 80}, "name": "appGatewayFrontendPort"}],
- "redirectConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1",
- "etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"", "properties": {"includePath":
- true, "redirectType": "Permanent", "targetListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},
- "includeQueryString": false}, "name": "redirect1"}], "backendHttpSettingsCollection":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"", "properties": {"pickHostNameFromBackendAddress":
- false, "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false}, "cookieBasedAffinity":
- "Disabled", "port": 80, "protocol": "Http", "provisioningState": "Updating",
- "requestTimeout": 30}, "name": "appGatewayBackendHttpSettings"}], "sslCertificates":
- [], "urlPathMaps": [], "httpListeners": [{"etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "properties": {"provisioningState": "Updating", "frontendIPConfiguration": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "protocol": "Http", "requireServerNameIndication": false, "frontendPort": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}},
- "name": "appGatewayHttpListener"}], "backendAddressPools": [{"etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "properties": {"provisioningState": "Updating", "backendAddresses": []}, "name":
- "appGatewayBackendPool"}], "probes": [], "requestRoutingRules": [{"etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"",
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1",
+ "properties": {"gatewayIPConfigurations": [{"etag": "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\"",
+ "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP"}], "sku": {"name": "Standard_Medium", "capacity":
+ 2, "tier": "Standard"}, "resourceGuid": "78af0411-84e9-46e9-96c1-04991ff26d95",
+ "sslCertificates": [], "frontendPorts": [{"etag": "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\"",
+ "properties": {"port": 80, "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
+ "name": "appGatewayFrontendPort"}], "requestRoutingRules": [{"etag": "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\"",
+ "properties": {"backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
+ "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
+ "ruleType": "Basic", "provisioningState": "Updating", "httpListener": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}},
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "properties": {"backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "ruleType": "Basic", "provisioningState": "Updating", "backendHttpSettings":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}},
- "name": "rule1"}], "sku": {"tier": "Standard", "capacity": 2, "name": "Standard_Medium"},
- "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"", "properties": {"provisioningState":
- "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
- "privateIPAllocationMethod": "Dynamic"}, "name": "appGatewayFrontendIP"}], "resourceGuid":
- "f1e29dc1-5135-401c-8a54-4f6cd10bd43e", "authenticationCertificates": [], "gatewayIPConfigurations":
- [{"etag": "W/\\"2a48b8be-3861-476b-b75f-6bff6bc61fb1\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
- "name": "appGatewayFrontendIP"}], "provisioningState": "Updating"}, "tags":
- {}}'''
+ "name": "rule1"}], "probes": [], "frontendIPConfigurations": [{"etag": "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\"",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP"}], "redirectConfigurations": [{"etag": "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\"",
+ "properties": {"targetListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},
+ "redirectType": "Permanent", "includeQueryString": false, "includePath": true},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1",
+ "name": "redirect1"}], "provisioningState": "Updating", "httpListeners": [{"etag":
+ "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\"", "properties": {"provisioningState":
+ "Updating", "protocol": "Http", "requireServerNameIndication": false, "frontendIPConfiguration":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
+ "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
+ "name": "appGatewayHttpListener"}], "urlPathMaps": [], "backendHttpSettingsCollection":
+ [{"etag": "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\"", "properties": {"cookieBasedAffinity":
+ "Disabled", "port": 80, "pickHostNameFromBackendAddress": false, "requestTimeout":
+ 30, "protocol": "Http", "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
+ "name": "appGatewayBackendHttpSettings"}], "backendAddressPools": [{"etag":
+ "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\"", "properties": {"backendAddresses":
+ [], "provisioningState": "Updating"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
+ "name": "appGatewayBackendPool"}], "authenticationCertificates": []}, "location":
+ "westus", "tags": {}, "etag": "W/\\"3c817103-779b-4cea-ac58-f72203aafefc\\""}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway redirect-config update]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['6288']
+ Content-Length: ['6222']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1e29dc1-5135-401c-8a54-4f6cd10bd43e\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"78af0411-84e9-46e9-96c1-04991ff26d95\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -801,32 +785,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -839,7 +821,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -850,127 +832,47 @@ interactions:
\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"redirect1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4b3de064-ac0a-4f74-8d84-771e16e5387d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\"\
: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\"\
: false\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0de0c322-69b0-4016-84f6-6c76a161b666?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01']
cache-control: [no-cache]
- content-length: ['9664']
+ content-length: ['9548']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:33 GMT']
+ date: ['Wed, 11 Oct 2017 20:00:29 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-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway redirect-config show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f1e29dc1-5135-401c-8a54-4f6cd10bd43e\"\
- ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
- : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
- : \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ],\r\n \"redirectConfiguration\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"redirect1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
- ,\r\n \"etag\": \"W/\\\"6037d60f-9a05-49a4-87d0-c45ab0f35fc3\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\"\
- : false\r\n }\r\n }\r\n ]\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['9664']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 22:54:33 GMT']
- etag: [W/"6037d60f-9a05-49a4-87d0-c45ab0f35fc3"]
+ date: ['Wed, 11 Oct 2017 20:00:40 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -983,26 +885,2618 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001?api-version=2017-05-10
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
response:
- body: {string: ''}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['0']
- date: ['Mon, 18 Sep 2017 22:54:35 GMT']
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:00:50 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZCQVNJQ1NVRkNWNUhQT1pZSkw3Tkw1VU1DWlVEVHxFRkVBMDJENUI3NTBDQUQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:01:00 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:01: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:01: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:01:32 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:01: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:01: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:02:02 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:02:13 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:02:24 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:02:34 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:02:44 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:02:54 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:03: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:03:15 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:03:25 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:03: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:03: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:03: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:04:07 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:04:17 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:04: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:04:38 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:04:48 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:04: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:05:09 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:05: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:05: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:05:41 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:05: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:06:02 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:06:13 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:06:24 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:06:34 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:06: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:06:56 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:07:07 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:07:17 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:07: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:07:38 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:07:48 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:07: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:08:09 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:08: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:08:29 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:08:40 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:08: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:09:01 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:09:12 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:09: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:09:31 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:09: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:09: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:10: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:10:13 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:10:24 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:10:34 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:10:45 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:10:54 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:11: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:11:16 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:11:26 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:11: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:11: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:11: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:12: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:12: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:12: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:12:39 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:12: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:13:00 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:13: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:13: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:13:32 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:13: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:13:53 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:14: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:14:14 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:14:24 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:14:34 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:14:45 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:14: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:15: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:15:17 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2ce86fa-6449-42a6-94df-d712079a8caf?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:15: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
+ \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"78af0411-84e9-46e9-96c1-04991ff26d95\"\
+ ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
+ : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
+ : \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
+ : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
+ : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
+ appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
+ : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ],\r\n \"redirectConfiguration\":\
+ \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
+ \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n },\r\n \"backendAddressPool\": {\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
+ \n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"redirect1\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\"\
+ : false\r\n }\r\n }\r\n ]\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['9600']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:15:29 GMT']
+ etag: [W/"3d900cc1-cc8f-4be6-a7b0-be581edf3d62"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
+ \ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"78af0411-84e9-46e9-96c1-04991ff26d95\"\
+ ,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
+ : \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
+ : \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
+ : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
+ : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
+ appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
+ : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ],\r\n \"redirectConfiguration\":\
+ \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
+ \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
+ \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n },\r\n \"backendAddressPool\": {\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
+ \n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"redirect1\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/redirectConfigurations/redirect1\"\
+ ,\r\n \"etag\": \"W/\\\"3d900cc1-cc8f-4be6-a7b0-be581edf3d62\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\"\
+ : false\r\n }\r\n }\r\n ]\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['9600']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 20:15:30 GMT']
+ etag: [W/"3d900cc1-cc8f-4be6-a7b0-be581edf3d62"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 20:15:31 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZCQVNJQ0NMSTJBRTI3NEdaVUtaRExRR1BIUkZGUXw4MDM5ODNENUQxQUFCRTNELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_waf_config.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_waf_config.yaml
index 84161ca10dd..bfc8351292f 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_waf_config.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_waf_config.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001?api-version=2017-05-10
@@ -20,7 +20,142 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:33 GMT']
+ date: ['Fri, 13 Oct 2017 22:22:44 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001","name":"cli_test_app_gateway_waf_config000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:22:43 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_app_gateway_waf_config000001%27%20and%20name%20eq%20%27vnet1%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:22:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_app_gateway_waf_config000001%27%20and%20name%20eq%20%27pip1%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:22:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"outputs": {"applicationGateway":
+ {"type": "object", "value": "[reference(\''ag1\'')]"}}, "resources": [{"dependsOn":
+ [], "name": "vnet1", "apiVersion": "2015-06-15", "location": "westus", "type":
+ "Microsoft.Network/virtualNetworks", "tags": {}, "properties": {"addressSpace":
+ {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": "subnet1", "properties":
+ {"addressPrefix": "10.0.0.0/24"}}]}}, {"dependsOn": [], "name": "pip1", "apiVersion":
+ "2017-09-01", "location": "westus", "type": "Microsoft.Network/publicIPAddresses",
+ "tags": {}, "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"dependsOn":
+ ["Microsoft.Network/virtualNetworks/vnet1", "Microsoft.Network/publicIpAddresses/pip1"],
+ "name": "ag1", "apiVersion": "2017-09-01", "location": "westus", "type": "Microsoft.Network/applicationGateways",
+ "tags": {}, "properties": {"backendAddressPools": [{"name": "appGatewayBackendPool"}],
+ "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP", "properties": {"subnet":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}],
+ "httpListeners": [{"name": "appGatewayHttpListener", "properties": {"FrontendIpConfiguration":
+ {"Id": "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"},
+ "Protocol": "http", "FrontendPort": {"Id": "[concat(variables(\''appGwID\''),
+ \''/frontendPorts/appGatewayFrontendPort\'')]"}, "SslCertificate": null}}],
+ "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port":
+ 80}}], "requestRoutingRules": [{"Name": "rule1", "properties": {"httpListener":
+ {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
+ "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
+ "RuleType": "Basic", "backendAddressPool": {"id": "[concat(variables(\''appGwID\''),
+ \''/backendAddressPools/appGatewayBackendPool\'')]"}}}], "sku": {"capacity":
+ 2, "name": "WAF_Medium", "tier": "WAF"}, "frontendIPConfigurations": [{"name":
+ "appGatewayFrontendIP", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"}}}],
+ "backendHttpSettingsCollection": [{"name": "appGatewayBackendHttpSettings",
+ "properties": {"Protocol": "Http", "CookieBasedAffinity": "disabled", "Port":
+ 80}}]}}], "parameters": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
+ \''ag1\'')]"}}, "parameters": {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['2873']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","name":"ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","properties":{"templateHash":"7046321306258557913","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T22:22:46.8287598Z","duration":"PT0.2587781S","correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"pip1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/operationStatuses/08586936735189076433?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['1643']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:22:46 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -31,22 +166,3355 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A22%3A55Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:22:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A23%3A05Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['10932']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:23:05 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A23%3A15Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['37002']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:23:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:23:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A23%3A26Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['40450']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:23:25 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A23%3A36Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['43898']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:23:36 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:23:46 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A23%3A57Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['50792']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:23:57 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A24%3A07Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['50792']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:24:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:24:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A24%3A18Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['54240']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:24:18 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A24%3A28Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['57688']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:24:28 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A24%3A39Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['61136']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:24:39 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:24:47 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A24%3A50Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['64583']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:24:49 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A25%3A00Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['68031']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:25:00 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A25%3A11Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['74925']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:25:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:25:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A25%3A21Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['74925']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:25:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A25%3A32Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['78373']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:25:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A25%3A42Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['81821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:25:42 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:25:48 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A25%3A53Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['85269']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:25:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A26%3A03Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['88716']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:26:03 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A26%3A14Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['92163']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:26:14 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:26:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A26%3A24Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['92163']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:26:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A26%3A35Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['95610']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:26:34 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A26%3A45Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['99058']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:26:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:26:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A26%3A56Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['102506']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:26:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A27%3A07Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4c8ee0f1-a56e-4709-9291-897cbd32e1d8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4c8ee0f1-a56e-4709-9291-897cbd32e1d8/ticks/636435304041736923","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"efec8c4c-8a01-4f3a-9045-44cdb21ffe85","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:44.1736923Z","submissionTimestamp":"2017-10-13T22:26:59.8707216Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['105954']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:27:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A27%3A17Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e183057f-dd9b-4a73-a7aa-8e27ca11175d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e183057f-dd9b-4a73-a7aa-8e27ca11175d/ticks/636435304146073963","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"13417e65-5d73-4a40-a4c7-5dc9b0e3bd92","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:54.6073963Z","submissionTimestamp":"2017-10-13T22:27:09.9853831Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4c8ee0f1-a56e-4709-9291-897cbd32e1d8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4c8ee0f1-a56e-4709-9291-897cbd32e1d8/ticks/636435304041736923","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"efec8c4c-8a01-4f3a-9045-44cdb21ffe85","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:44.1736923Z","submissionTimestamp":"2017-10-13T22:26:59.8707216Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['109402']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:27:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:27:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A27%3A28Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e/ticks/636435304254775810","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6cdc7628-2e8e-4c92-a45a-958d3e948e12","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:05.477581Z","submissionTimestamp":"2017-10-13T22:27:20.2314139Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e183057f-dd9b-4a73-a7aa-8e27ca11175d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e183057f-dd9b-4a73-a7aa-8e27ca11175d/ticks/636435304146073963","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"13417e65-5d73-4a40-a4c7-5dc9b0e3bd92","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:54.6073963Z","submissionTimestamp":"2017-10-13T22:27:09.9853831Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4c8ee0f1-a56e-4709-9291-897cbd32e1d8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4c8ee0f1-a56e-4709-9291-897cbd32e1d8/ticks/636435304041736923","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"efec8c4c-8a01-4f3a-9045-44cdb21ffe85","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:44.1736923Z","submissionTimestamp":"2017-10-13T22:26:59.8707216Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['112849']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:27:28 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A27%3A38Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"0d7b6f17-29eb-465e-aba3-940a90c2e121","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/0d7b6f17-29eb-465e-aba3-940a90c2e121/ticks/636435304361723201","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9c81cc5d-f3a8-4dd5-b8af-9b314abaa7ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:16.1723201Z","submissionTimestamp":"2017-10-13T22:27:30.1484934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e/ticks/636435304254775810","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6cdc7628-2e8e-4c92-a45a-958d3e948e12","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:05.477581Z","submissionTimestamp":"2017-10-13T22:27:20.2314139Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e183057f-dd9b-4a73-a7aa-8e27ca11175d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e183057f-dd9b-4a73-a7aa-8e27ca11175d/ticks/636435304146073963","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"13417e65-5d73-4a40-a4c7-5dc9b0e3bd92","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:54.6073963Z","submissionTimestamp":"2017-10-13T22:27:09.9853831Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4c8ee0f1-a56e-4709-9291-897cbd32e1d8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4c8ee0f1-a56e-4709-9291-897cbd32e1d8/ticks/636435304041736923","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"efec8c4c-8a01-4f3a-9045-44cdb21ffe85","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:44.1736923Z","submissionTimestamp":"2017-10-13T22:26:59.8707216Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['116297']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:27:38 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A27%3A48Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"69aed471-a40c-47c4-9b12-f8ddb790880c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/69aed471-a40c-47c4-9b12-f8ddb790880c/ticks/636435304476099964","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"54ffdea1-42d8-401d-a134-1b0041c16fc4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:27.6099964Z","submissionTimestamp":"2017-10-13T22:27:40.1019356Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"0d7b6f17-29eb-465e-aba3-940a90c2e121","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/0d7b6f17-29eb-465e-aba3-940a90c2e121/ticks/636435304361723201","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9c81cc5d-f3a8-4dd5-b8af-9b314abaa7ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:16.1723201Z","submissionTimestamp":"2017-10-13T22:27:30.1484934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e/ticks/636435304254775810","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6cdc7628-2e8e-4c92-a45a-958d3e948e12","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:05.477581Z","submissionTimestamp":"2017-10-13T22:27:20.2314139Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e183057f-dd9b-4a73-a7aa-8e27ca11175d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e183057f-dd9b-4a73-a7aa-8e27ca11175d/ticks/636435304146073963","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"13417e65-5d73-4a40-a4c7-5dc9b0e3bd92","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:54.6073963Z","submissionTimestamp":"2017-10-13T22:27:09.9853831Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4c8ee0f1-a56e-4709-9291-897cbd32e1d8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4c8ee0f1-a56e-4709-9291-897cbd32e1d8/ticks/636435304041736923","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"efec8c4c-8a01-4f3a-9045-44cdb21ffe85","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:44.1736923Z","submissionTimestamp":"2017-10-13T22:26:59.8707216Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['119745']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:27:48 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:27:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A27%3A59Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"69aed471-a40c-47c4-9b12-f8ddb790880c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/69aed471-a40c-47c4-9b12-f8ddb790880c/ticks/636435304476099964","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"54ffdea1-42d8-401d-a134-1b0041c16fc4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:27.6099964Z","submissionTimestamp":"2017-10-13T22:27:40.1019356Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"0d7b6f17-29eb-465e-aba3-940a90c2e121","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/0d7b6f17-29eb-465e-aba3-940a90c2e121/ticks/636435304361723201","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9c81cc5d-f3a8-4dd5-b8af-9b314abaa7ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:16.1723201Z","submissionTimestamp":"2017-10-13T22:27:30.1484934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e/ticks/636435304254775810","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6cdc7628-2e8e-4c92-a45a-958d3e948e12","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:05.477581Z","submissionTimestamp":"2017-10-13T22:27:20.2314139Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e183057f-dd9b-4a73-a7aa-8e27ca11175d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e183057f-dd9b-4a73-a7aa-8e27ca11175d/ticks/636435304146073963","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"13417e65-5d73-4a40-a4c7-5dc9b0e3bd92","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:54.6073963Z","submissionTimestamp":"2017-10-13T22:27:09.9853831Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4c8ee0f1-a56e-4709-9291-897cbd32e1d8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4c8ee0f1-a56e-4709-9291-897cbd32e1d8/ticks/636435304041736923","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"efec8c4c-8a01-4f3a-9045-44cdb21ffe85","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:44.1736923Z","submissionTimestamp":"2017-10-13T22:26:59.8707216Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['119745']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:27:59 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A28%3A10Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"51f87ac1-49a7-429e-9b11-d7e4f0b145bf","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/51f87ac1-49a7-429e-9b11-d7e4f0b145bf/ticks/636435304595579792","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f31828c4-af9c-4d19-b521-b90e40353d11","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:39.5579792Z","submissionTimestamp":"2017-10-13T22:28:00.0053075Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"69aed471-a40c-47c4-9b12-f8ddb790880c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/69aed471-a40c-47c4-9b12-f8ddb790880c/ticks/636435304476099964","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"54ffdea1-42d8-401d-a134-1b0041c16fc4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:27.6099964Z","submissionTimestamp":"2017-10-13T22:27:40.1019356Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"0d7b6f17-29eb-465e-aba3-940a90c2e121","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/0d7b6f17-29eb-465e-aba3-940a90c2e121/ticks/636435304361723201","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9c81cc5d-f3a8-4dd5-b8af-9b314abaa7ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:16.1723201Z","submissionTimestamp":"2017-10-13T22:27:30.1484934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e/ticks/636435304254775810","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6cdc7628-2e8e-4c92-a45a-958d3e948e12","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:05.477581Z","submissionTimestamp":"2017-10-13T22:27:20.2314139Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e183057f-dd9b-4a73-a7aa-8e27ca11175d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e183057f-dd9b-4a73-a7aa-8e27ca11175d/ticks/636435304146073963","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"13417e65-5d73-4a40-a4c7-5dc9b0e3bd92","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:54.6073963Z","submissionTimestamp":"2017-10-13T22:27:09.9853831Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4c8ee0f1-a56e-4709-9291-897cbd32e1d8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4c8ee0f1-a56e-4709-9291-897cbd32e1d8/ticks/636435304041736923","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"efec8c4c-8a01-4f3a-9045-44cdb21ffe85","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:44.1736923Z","submissionTimestamp":"2017-10-13T22:26:59.8707216Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['123193']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:28:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A28%3A20Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"27a31597-be2d-4d3f-ab71-088daa93d5ee","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/27a31597-be2d-4d3f-ab71-088daa93d5ee/ticks/636435304723496139","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6801306e-afd4-498e-a75c-15a9d1d4079c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:52.3496139Z","submissionTimestamp":"2017-10-13T22:28:10.1397041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"51f87ac1-49a7-429e-9b11-d7e4f0b145bf","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/51f87ac1-49a7-429e-9b11-d7e4f0b145bf/ticks/636435304595579792","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f31828c4-af9c-4d19-b521-b90e40353d11","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:39.5579792Z","submissionTimestamp":"2017-10-13T22:28:00.0053075Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"69aed471-a40c-47c4-9b12-f8ddb790880c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/69aed471-a40c-47c4-9b12-f8ddb790880c/ticks/636435304476099964","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"54ffdea1-42d8-401d-a134-1b0041c16fc4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:27.6099964Z","submissionTimestamp":"2017-10-13T22:27:40.1019356Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"0d7b6f17-29eb-465e-aba3-940a90c2e121","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/0d7b6f17-29eb-465e-aba3-940a90c2e121/ticks/636435304361723201","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9c81cc5d-f3a8-4dd5-b8af-9b314abaa7ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:16.1723201Z","submissionTimestamp":"2017-10-13T22:27:30.1484934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8eeaa98a-6928-4e5d-8dc3-7118f9c03a4e/ticks/636435304254775810","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6cdc7628-2e8e-4c92-a45a-958d3e948e12","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:27:05.477581Z","submissionTimestamp":"2017-10-13T22:27:20.2314139Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e183057f-dd9b-4a73-a7aa-8e27ca11175d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e183057f-dd9b-4a73-a7aa-8e27ca11175d/ticks/636435304146073963","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"13417e65-5d73-4a40-a4c7-5dc9b0e3bd92","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:54.6073963Z","submissionTimestamp":"2017-10-13T22:27:09.9853831Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4c8ee0f1-a56e-4709-9291-897cbd32e1d8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4c8ee0f1-a56e-4709-9291-897cbd32e1d8/ticks/636435304041736923","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"efec8c4c-8a01-4f3a-9045-44cdb21ffe85","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:44.1736923Z","submissionTimestamp":"2017-10-13T22:26:59.8707216Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"32fb3586-127e-4751-a4f8-a784619ec18f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/32fb3586-127e-4751-a4f8-a784619ec18f/ticks/636435303918952222","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"b4578da1-edc8-4519-a5da-c87eb96e29fb","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:31.8952222Z","submissionTimestamp":"2017-10-13T22:26:50.3562755Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"63118a68-fbb3-48ac-a0dd-fc152dd10d49","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/63118a68-fbb3-48ac-a0dd-fc152dd10d49/ticks/636435303808542902","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8a268d28-bf49-4b8f-b2aa-a8f76b63a9ca","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:20.8542902Z","submissionTimestamp":"2017-10-13T22:26:39.9351426Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e413b509-6635-42f7-9738-923f07fc750e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e413b509-6635-42f7-9738-923f07fc750e/ticks/636435303695960420","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bb553d3c-418b-49b8-82dd-fe9dd7ca58c4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:26:09.596042Z","submissionTimestamp":"2017-10-13T22:26:30.3270133Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94f418ce-56eb-457d-a479-494e91752c71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94f418ce-56eb-457d-a479-494e91752c71/ticks/636435303570658190","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"6dfdda3b-69c2-420c-835c-8e4950b05f4f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:57.065819Z","submissionTimestamp":"2017-10-13T22:26:10.5199803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"a8ecea01-0241-41eb-a426-a3d7de832a43","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/a8ecea01-0241-41eb-a426-a3d7de832a43/ticks/636435303440607072","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"69c21b5d-907a-47f9-9486-30e9b215af63","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:44.0607072Z","submissionTimestamp":"2017-10-13T22:25:59.787452Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fdd0b3b3-2cca-4cf5-bc82-61bd7cf90e9e/ticks/636435303326315405","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"caba78d5-c33a-4a78-a30d-4c42754b2fbf","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:32.6315405Z","submissionTimestamp":"2017-10-13T22:25:50.6238615Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/483bc7b6-f7ac-479e-b38e-5cfb26d3b7dd/ticks/636435303222135889","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"690b3681-05eb-4736-a9d9-b11a773d9f0f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:22.2135889Z","submissionTimestamp":"2017-10-13T22:25:39.7933892Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3574b83-15a4-4c09-a9c0-dcc3a37a45a4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b3574b83-15a4-4c09-a9c0-dcc3a37a45a4/ticks/636435303105883113","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8071f26a-8849-4cba-98be-106a446af987","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:25:10.5883113Z","submissionTimestamp":"2017-10-13T22:25:30.2041304Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"6264cb0a-9536-430e-952b-bbe5c85f71f8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/6264cb0a-9536-430e-952b-bbe5c85f71f8/ticks/636435302978106779","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d05a8866-7127-408f-8141-cd0f724193b7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:57.8106779Z","submissionTimestamp":"2017-10-13T22:25:10.2781697Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"1fe7af42-2c5e-476b-9e35-c79d8a15e575","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/1fe7af42-2c5e-476b-9e35-c79d8a15e575/ticks/636435302859950100","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9364950f-dab7-47fc-a782-468d204a5aad","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:45.99501Z","submissionTimestamp":"2017-10-13T22:25:00.3711983Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"94452b6f-757f-468d-8fce-adac2a5eb5fd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/94452b6f-757f-468d-8fce-adac2a5eb5fd/ticks/636435302739029291","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c783e8b1-4fe5-4f6a-aa97-715f53325469","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:33.9029291Z","submissionTimestamp":"2017-10-13T22:24:51.1062556Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"9693402e-57a9-4091-bbca-97a69aabaa2d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/9693402e-57a9-4091-bbca-97a69aabaa2d/ticks/636435302629520693","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"26df8e6e-c3dc-4675-95ed-59f2792bb802","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:22.9520693Z","submissionTimestamp":"2017-10-13T22:24:40.208713Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b2717786-09a8-4b1e-b5a6-97a44d5790a7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b2717786-09a8-4b1e-b5a6-97a44d5790a7/ticks/636435302511150349","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"70adefc7-c639-4806-b3d6-c35c7b15fa24","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:11.1150349Z","submissionTimestamp":"2017-10-13T22:24:30.5980293Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"fe98ce63-e57c-4ac3-a055-f2051b1f987b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/fe98ce63-e57c-4ac3-a055-f2051b1f987b/ticks/636435302401449926","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8f671221-bd20-4d73-951c-c6929a590927","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:24:00.1449926Z","submissionTimestamp":"2017-10-13T22:24:20.2146028Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"4bcd0cad-d213-4b9f-9edb-c23df4049c34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/4bcd0cad-d213-4b9f-9edb-c23df4049c34/ticks/636435302285564343","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04fc29bf-381c-43c9-a6c2-d2123c77c8d2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:48.5564343Z","submissionTimestamp":"2017-10-13T22:24:09.9757719Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b8890f73-2b87-4705-a67c-fe470fe0c8a3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/b8890f73-2b87-4705-a67c-fe470fe0c8a3/ticks/636435302171555980","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8586716d-e8ef-44d7-8645-ef2adb1f2f16","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:37.155598Z","submissionTimestamp":"2017-10-13T22:23:50.098966Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/c4bf01f5-e0e2-4f8d-8a62-8d390e3acf71/ticks/636435302062591834","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"8e286240-e317-40af-aa11-f600da2dc77b","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:26.2591834Z","submissionTimestamp":"2017-10-13T22:23:40.2955591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"8f4d2c67-e070-45a9-a3a3-ab1a68e956fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/8f4d2c67-e070-45a9-a3a3-ab1a68e956fe/ticks/636435301949915498","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"3c42d6fe-7582-496d-913c-8a74a161b71c","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:14.9915498Z","submissionTimestamp":"2017-10-13T22:23:30.3740522Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"40981664-44f1-40de-aecf-32d189910fe3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/40981664-44f1-40de-aecf-32d189910fe3/ticks/636435301837998047","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"122f9578-6e40-4ef7-88e9-a9d09898c53d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:23:03.7998047Z","submissionTimestamp":"2017-10-13T22:23:20.8258041Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"af139ab3-c6fc-4f17-9193-df877e7fd642","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/af139ab3-c6fc-4f17-9193-df877e7fd642/ticks/636435301740033015","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"fb34943d-1733-42e3-9b00-f672c4314d90","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:54.0033015Z","submissionTimestamp":"2017-10-13T22:23:09.7713591Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"68c6c328-8546-447a-b3fa-61b7d356229a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/68c6c328-8546-447a-b3fa-61b7d356229a/ticks/636435301736112683","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2ab439c5-5805-445c-b6b5-c304bfb05d06","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:53.6112683Z","submissionTimestamp":"2017-10-13T22:23:10.145884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"21e295ae-a169-4c8c-b614-e2f4f667749e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/21e295ae-a169-4c8c-b614-e2f4f667749e/ticks/636435301726485253","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"35b3eae0-5883-4f36-befc-9e228fd0d001"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:52.6485253Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"e114feed-d7e2-45fd-b8c6-34d707147bc7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"365756e1-6624-4433-9f99-5d157ca8a27d","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/events/e114feed-d7e2-45fd-b8c6-34d707147bc7/ticks/636435301722400126","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bcc78de5-e506-45a1-ab9d-9130eed7fa2f","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:52.2400126Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"ab0aa538-e23f-4f72-8f5c-d04f39ee16ff","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/ab0aa538-e23f-4f72-8f5c-d04f39ee16ff/ticks/636435301687395887","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"cf5caf75-10ea-4585-aacf-df6a4f458d30","responseBody":"{\"name\":\"pip1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\"etag\":\"W/\\\"0cff54fc-bf22-4e0a-9faa-32bd19316c31\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"93aa3b54-bd5e-4dec-989e-265c13e9d06f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.7395887Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/f7ae8c73-99dd-4173-a6b5-e9ccf4b2420f/ticks/636435301686770877","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"766df7be-3659-4a5d-ab2b-5026c79608ad","responseBody":"{\"name\":\"vnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4fb93e1a-6bb5-4a7c-82b9-271264734a17\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\"etag\":\"W/\\\"ef14eceb-ea18-4572-93ca-bf9d8b838f1a\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:48.6770877Z","submissionTimestamp":"2017-10-13T22:23:10.0932406Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"f3daa1a7-3ef4-4603-b31e-75891c12e8e7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5770d74-5c2e-4172-adc9-624b5ae38278","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1/events/f3daa1a7-3ef4-4603-b31e-75891c12e8e7/ticks/636435301684427135","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bc265c97-676f-481a-8e68-77d373150b2f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4427135Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"646c53b6-aef8-46e6-8a1e-bbe90af34986","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fccacce3-3670-426d-9bd3-e416b25a1ee0","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/events/646c53b6-aef8-46e6-8a1e-bbe90af34986/ticks/636435301684270817","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"914527c0-e9da-4ac7-a1a1-efe5590a1715","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:48.4270817Z","submissionTimestamp":"2017-10-13T22:23:00.1308673Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"405627a7-4f61-4dac-83a1-35c54d4182b4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/405627a7-4f61-4dac-83a1-35c54d4182b4/ticks/636435301668861273","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:22:46.8861273Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","description":"","eventDataId":"b3acb07b-0117-4130-90b3-0b530df11f70","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"09083bee-b065-11e7-bcb1-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf/events/b3acb07b-0117-4130-90b3-0b530df11f70/ticks/636435301659017279","level":"Informational","resourceGroupName":"cli_test_app_gateway_waf_config000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:22:45.9017279Z","submissionTimestamp":"2017-10-13T22:23:00.1573319Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['126641']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:28:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:28:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A28%3A31Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 133537
+ bytes while replay. 133537'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['133537']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:28:30 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A28%3A41Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 136985
+ bytes while replay. 136985'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['136985']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:28:41 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:28:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A28%3A52Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 136985
+ bytes while replay. 136985'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['136985']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:28:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A29%3A02Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 140433
+ bytes while replay. 140433'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['140433']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:29:03 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A29%3A13Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 143881
+ bytes while replay. 143881'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['143881']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:29:13 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:29:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A29%3A23Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 147329
+ bytes while replay. 147329'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['147329']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:29:23 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A29%3A34Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 150775
+ bytes while replay. 150775'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['150775']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:29:34 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A29%3A45Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 154223
+ bytes while replay. 154223'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['154223']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:29:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:29:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A29%3A55Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 154223
+ bytes while replay. 154223'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['154223']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:29:55 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A30%3A06Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 157671
+ bytes while replay. 157671'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['157671']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:30:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A30%3A16Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 161119
+ bytes while replay. 161119'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['161119']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:30:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:30:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A30%3A27Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 164567
+ bytes while replay. 164567'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['164567']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:30:26 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A30%3A37Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 168014
+ bytes while replay. 168014'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['168014']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:30:38 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A30%3A48Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 171461
+ bytes while replay. 171461'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['171461']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:30:48 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:30:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A30%3A59Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 174909
+ bytes while replay. 174909'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['174909']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:30:59 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A31%3A09Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 178357
+ bytes while replay. 178357'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['178357']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:31:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A31%3A20Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 178357
+ bytes while replay. 178357'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['178357']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:31:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:31:23 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A31%3A30Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 181805
+ bytes while replay. 181805'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['181805']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:31:30 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A31%3A40Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 185253
+ bytes while replay. 185253'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['185253']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:31:40 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A31%3A50Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 188701
+ bytes while replay. 188701'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['188701']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:31:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:31:53 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A32%3A01Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 192149
+ bytes while replay. 192149'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['192149']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:32:01 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A32%3A12Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 199045
+ bytes while replay. 199045'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['199045']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:32:12 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A32%3A22Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 199045
+ bytes while replay. 199045'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['199045']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:32:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:32:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A32%3A32Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 202493
+ bytes while replay. 202493'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['202493']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:32:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A32%3A43Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 205941
+ bytes while replay. 205941'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['205941']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:32:43 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A32%3A54Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 209389
+ bytes while replay. 209389'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['209389']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:32:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001","name":"cli_test_app_gateway_waf_config000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
- content-length: ['328']
+ content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:33 GMT']
+ date: ['Fri, 13 Oct 2017 22:32:54 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,24 +3525,55 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_app_gateway_waf_config000001%27%20and%20name%20eq%20%27vnet1%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A33%3A04Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"value":[]}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 212837
+ bytes while replay. 212837'}
headers:
cache-control: [no-cache]
- content-length: ['12']
+ content-length: ['212837']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:33:04 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A33%3A15Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 219508
+ bytes while replay. 219508'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['219508']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:33 GMT']
+ date: ['Fri, 13 Oct 2017 22:33:15 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
@@ -83,156 +3582,135 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_app_gateway_waf_config000001%27%20and%20name%20eq%20%27pip1%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
- body: {string: '{"value":[]}'}
+ body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
- content-length: ['12']
+ content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:33 GMT']
+ date: ['Fri, 13 Oct 2017 22:33:25 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"parameters": {}, "template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "contentVersion": "1.0.0.0", "parameters": {}, "resources": [{"apiVersion":
- "2015-06-15", "name": "vnet1", "location": "westus", "type": "Microsoft.Network/virtualNetworks",
- "tags": {}, "properties": {"subnets": [{"name": "subnet1", "properties": {"addressPrefix":
- "10.0.0.0/24"}}], "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "dependsOn":
- []}, {"apiVersion": "2017-09-01", "name": "pip1", "location": "westus", "type":
- "Microsoft.Network/publicIPAddresses", "dependsOn": [], "properties": {"publicIPAllocationMethod":
- "Dynamic"}, "tags": {}}, {"apiVersion": "2017-09-01", "name": "ag1", "location":
- "westus", "type": "Microsoft.Network/applicationGateways", "dependsOn": ["Microsoft.Network/virtualNetworks/vnet1",
- "Microsoft.Network/publicIpAddresses/pip1"], "properties": {"frontendIPConfigurations":
- [{"name": "appGatewayFrontendIP", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"}}}],
- "backendHttpSettingsCollection": [{"name": "appGatewayBackendHttpSettings",
- "properties": {"Port": 80, "connectionDraining": {"enabled": false, "drainTimeoutInSec":
- 1}, "CookieBasedAffinity": "disabled", "Protocol": "Http"}}], "requestRoutingRules":
- [{"Name": "rule1", "properties": {"backendAddressPool": {"id": "[concat(variables(\''appGwID\''),
- \''/backendAddressPools/appGatewayBackendPool\'')]"}, "RuleType": "Basic", "httpListener":
- {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "sku": {"name":
- "WAF_Medium", "capacity": 2, "tier": "WAF"}, "gatewayIPConfigurations": [{"name":
- "appGatewayFrontendIP", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}],
- "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port":
- 80}}], "httpListeners": [{"name": "appGatewayHttpListener", "properties": {"FrontendPort":
- {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": null, "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "Protocol": "http"}}]},
- "tags": {}}], "outputs": {"applicationGateway": {"value": "[reference(\''ag1\'')]",
- "type": "object"}}}, "mode": "Incremental"}}'''
+ body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['2939']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A33%3A25Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_VJHcPwAzTHtg6gOTvhfapuMG8fAUa8G1","name":"ag_deploy_VJHcPwAzTHtg6gOTvhfapuMG8fAUa8G1","properties":{"templateHash":"3575427173505100416","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:36:35.9385222Z","duration":"PT0.5400156S","correlationId":"4e728760-5ffc-4542-8c51-9cb9e8af1ad6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"pip1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 222956
+ bytes while replay. 222956'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_VJHcPwAzTHtg6gOTvhfapuMG8fAUa8G1/operationStatuses/08586957714900791177?api-version=2017-05-10']
cache-control: [no-cache]
- content-length: ['1643']
+ content-length: ['222956']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:35 GMT']
+ date: ['Fri, 13 Oct 2017 22:33:25 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A33%3A36Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 226404
+ bytes while replay. 226404'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['226404']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:05 GMT']
+ date: ['Fri, 13 Oct 2017 22:33:36 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A33%3A46Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 229851
+ bytes while replay. 229851'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['229851']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:36 GMT']
+ date: ['Fri, 13 Oct 2017 22:33:46 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:05 GMT']
+ date: ['Fri, 13 Oct 2017 22:33:55 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -243,24 +3721,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A33%3A56Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 233299
+ bytes while replay. 233299'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['233299']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:36 GMT']
+ date: ['Fri, 13 Oct 2017 22:33:57 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
@@ -269,74 +3749,80 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A34%3A07Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 236747
+ bytes while replay. 236747'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['236747']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:06 GMT']
+ date: ['Fri, 13 Oct 2017 22:34:07 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A34%3A18Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 240195
+ bytes while replay. 240195'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['240195']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:37 GMT']
+ date: ['Fri, 13 Oct 2017 22:34:19 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:07 GMT']
+ date: ['Fri, 13 Oct 2017 22:34:25 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -347,100 +3833,109 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A34%3A28Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 243642
+ bytes while replay. 243642'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['243642']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:37 GMT']
+ date: ['Fri, 13 Oct 2017 22:34:28 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A34%3A39Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 247090
+ bytes while replay. 247090'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['247090']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:07 GMT']
+ date: ['Fri, 13 Oct 2017 22:34:38 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A34%3A49Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 247090
+ bytes while replay. 247090'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['247090']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:37 GMT']
+ date: ['Fri, 13 Oct 2017 22:34:49 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:07 GMT']
+ date: ['Fri, 13 Oct 2017 22:34:56 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -451,100 +3946,109 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A35%3A00Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 250538
+ bytes while replay. 250538'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['250538']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:38 GMT']
+ date: ['Fri, 13 Oct 2017 22:35:00 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A35%3A10Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 253986
+ bytes while replay. 253986'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['253986']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:08 GMT']
+ date: ['Fri, 13 Oct 2017 22:35:10 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A35%3A21Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 260881
+ bytes while replay. 260881'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['260881']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:39 GMT']
+ date: ['Fri, 13 Oct 2017 22:35:21 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:09 GMT']
+ date: ['Fri, 13 Oct 2017 22:35:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -555,100 +4059,109 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A35%3A32Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 264329
+ bytes while replay. 264329'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['264329']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:39 GMT']
+ date: ['Fri, 13 Oct 2017 22:35:32 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A35%3A42Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 267777
+ bytes while replay. 267777'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['267777']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:09 GMT']
+ date: ['Fri, 13 Oct 2017 22:35:42 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A35%3A53Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 271225
+ bytes while replay. 271225'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['271225']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:39 GMT']
+ date: ['Fri, 13 Oct 2017 22:35:52 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:10 GMT']
+ date: ['Fri, 13 Oct 2017 22:35:56 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -659,100 +4172,109 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A36%3A03Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 274672
+ bytes while replay. 274672'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['274672']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:40 GMT']
+ date: ['Fri, 13 Oct 2017 22:36:03 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A36%3A14Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 274672
+ bytes while replay. 274672'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['274672']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:11 GMT']
+ date: ['Fri, 13 Oct 2017 22:36:14 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A36%3A24Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 278120
+ bytes while replay. 278120'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['278120']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:41 GMT']
+ date: ['Fri, 13 Oct 2017 22:36:24 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:11 GMT']
+ date: ['Fri, 13 Oct 2017 22:36:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -763,100 +4285,109 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A36%3A35Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 281568
+ bytes while replay. 281568'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['281568']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:42 GMT']
+ date: ['Fri, 13 Oct 2017 22:36:35 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A36%3A45Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 285016
+ bytes while replay. 285016'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['285016']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:12 GMT']
+ date: ['Fri, 13 Oct 2017 22:36:45 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A36%3A56Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 288464
+ bytes while replay. 288464'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['288464']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:42 GMT']
+ date: ['Fri, 13 Oct 2017 22:36:57 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:13 GMT']
+ date: ['Fri, 13 Oct 2017 22:36:57 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -867,22 +4398,80 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A37%3A07Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 291912
+ bytes while replay. 291912'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['291912']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:37:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A37%3A17Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 295360
+ bytes while replay. 295360'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['295360']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:37:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:44 GMT']
+ date: ['Fri, 13 Oct 2017 22:37:27 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -893,22 +4482,80 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A37%3A38Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 298808
+ bytes while replay. 298808'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['298808']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:37:37 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A37%3A49Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 302256
+ bytes while replay. 302256'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['302256']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:37:49 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:14 GMT']
+ date: ['Fri, 13 Oct 2017 22:37:58 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -919,22 +4566,109 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A37%3A59Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 305704
+ bytes while replay. 305704'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['305704']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:37:58 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A38%3A10Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 309152
+ bytes while replay. 309152'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['309152']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:38:10 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A38%3A20Z%20and%20correlationId%20eq%20%277171280c-a314-4d8c-b91d-db4877e3ab6d%27
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 315955
+ bytes while replay. 315955'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['315955']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:38:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957714900791177?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936735189076433?api-version=2017-05-10
response:
body: {string: '{"status":"Succeeded"}'}
headers:
cache-control: [no-cache]
content-length: ['22']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:44 GMT']
+ date: ['Fri, 13 Oct 2017 22:38:28 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -945,22 +4679,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_VJHcPwAzTHtg6gOTvhfapuMG8fAUa8G1","name":"ag_deploy_VJHcPwAzTHtg6gOTvhfapuMG8fAUa8G1","properties":{"templateHash":"3575427173505100416","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T15:51:42.0635651Z","duration":"PT15M6.6650585S","correlationId":"4e728760-5ffc-4542-8c51-9cb9e8af1ad6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"pip1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"4fd4e14b-f445-4e32-a0d9-9c9c6ba8779f","sku":{"name":"WAF_Medium","tier":"WAF","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"2beaa55b-e16d-4be9-b651-88438f93579d\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}],"sslCertificates":[],"authenticationCertificates":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"2beaa55b-e16d-4be9-b651-88438f93579d\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort","etag":"W/\"2beaa55b-e16d-4be9-b651-88438f93579d\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}]}}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool","etag":"W/\"2beaa55b-e16d-4be9-b651-88438f93579d\"","properties":{"provisioningState":"Succeeded","backendAddresses":[],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1"}]}}],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"2beaa55b-e16d-4be9-b651-88438f93579d\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","connectionDraining":{"enabled":false,"drainTimeoutInSec":1},"pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1"}]}}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener","etag":"W/\"2beaa55b-e16d-4be9-b651-88438f93579d\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1"}]}}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1","etag":"W/\"2beaa55b-e16d-4be9-b651-88438f93579d\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}}}],"probes":[],"redirectConfigurations":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Resources/deployments/ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","name":"ag_deploy_O8ozIbwKbLowWhsg4ntJuyZYxBzMKlFf","properties":{"templateHash":"7046321306258557913","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-13T22:38:03.8494225Z","duration":"PT15M17.2794408S","correlationId":"7171280c-a314-4d8c-b91d-db4877e3ab6d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"pip1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"0d2c030d-2809-4037-8701-5c811539fdc4","sku":{"name":"WAF_Medium","tier":"WAF","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}}],"sslCertificates":[],"authenticationCertificates":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort","etag":"W/\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}]}}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool","etag":"W/\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\"","properties":{"provisioningState":"Succeeded","backendAddresses":[],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1"}]}}],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1"}]}}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener","etag":"W/\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1"}]}}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1","etag":"W/\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}}}],"probes":[],"redirectConfigurations":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'}
headers:
cache-control: [no-cache]
- content-length: ['8807']
+ content-length: ['8747']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:45 GMT']
+ date: ['Fri, 13 Oct 2017 22:38:30 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -971,33 +4705,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway waf-config set]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"2beaa55b-e16d-4be9-b651-88438f93579d\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"4fd4e14b-f445-4e32-a0d9-9c9c6ba8779f\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"0d2c030d-2809-4037-8701-5c811539fdc4\"\
,\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\":\
\ \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"2beaa55b-e16d-4be9-b651-88438f93579d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"2beaa55b-e16d-4be9-b651-88438f93579d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
@@ -1006,32 +4740,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"2beaa55b-e16d-4be9-b651-88438f93579d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"2beaa55b-e16d-4be9-b651-88438f93579d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"2beaa55b-e16d-4be9-b651-88438f93579d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"2beaa55b-e16d-4be9-b651-88438f93579d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -1042,7 +4774,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"2beaa55b-e16d-4be9-b651-88438f93579d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -1054,10 +4786,10 @@ interactions:
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8467']
+ content-length: ['8351']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:45 GMT']
- etag: [W/"2beaa55b-e16d-4be9-b651-88438f93579d"]
+ date: ['Fri, 13 Oct 2017 22:38:31 GMT']
+ etag: [W/"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1070,12 +4802,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway waf-config set]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets?api-version=2017-09-01
@@ -2232,7 +5964,7 @@ interactions:
cache-control: [no-cache]
content-length: ['78086']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:46 GMT']
+ date: ['Fri, 13 Oct 2017 22:38:34 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2241,75 +5973,71 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"frontendIPConfigurations": [{"name": "appGatewayFrontendIP",
- "etag": "W/\\"2beaa55b-e16d-4be9-b651-88438f93579d\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP",
- "properties": {"privateIPAllocationMethod": "Dynamic", "publicIPAddress": {"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},
- "provisioningState": "Succeeded"}}], "backendHttpSettingsCollection": [{"properties":
- {"port": 80, "pickHostNameFromBackendAddress": false, "protocol": "Http", "cookieBasedAffinity":
- "Disabled", "connectionDraining": {"drainTimeoutInSec": 1, "enabled": false},
- "requestTimeout": 30, "provisioningState": "Succeeded"}, "etag": "W/\\"2beaa55b-e16d-4be9-b651-88438f93579d\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "name": "appGatewayBackendHttpSettings"}], "probes": [], "backendAddressPools":
- [{"name": "appGatewayBackendPool", "etag": "W/\\"2beaa55b-e16d-4be9-b651-88438f93579d\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool",
- "properties": {"backendAddresses": [], "provisioningState": "Succeeded"}}],
- "frontendPorts": [{"name": "appGatewayFrontendPort", "etag": "W/\\"2beaa55b-e16d-4be9-b651-88438f93579d\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort",
- "properties": {"port": 80, "provisioningState": "Succeeded"}}], "provisioningState":
- "Succeeded", "resourceGuid": "4fd4e14b-f445-4e32-a0d9-9c9c6ba8779f", "redirectConfigurations":
- [], "requestRoutingRules": [{"properties": {"ruleType": "Basic", "backendAddressPool":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "provisioningState": "Succeeded", "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},
- "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}},
- "etag": "W/\\"2beaa55b-e16d-4be9-b651-88438f93579d\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
- "name": "rule1"}], "sslCertificates": [], "urlPathMaps": [], "gatewayIPConfigurations":
- [{"name": "appGatewayFrontendIP", "etag": "W/\\"2beaa55b-e16d-4be9-b651-88438f93579d\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded"}}], "httpListeners": [{"properties": {"frontendPort":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"},
- "requireServerNameIndication": false, "protocol": "Http", "provisioningState":
- "Succeeded", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"}},
- "etag": "W/\\"2beaa55b-e16d-4be9-b651-88438f93579d\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
- "name": "appGatewayHttpListener"}], "sku": {"name": "WAF_Medium", "capacity":
- 2, "tier": "WAF"}, "authenticationCertificates": [], "webApplicationFirewallConfiguration":
+ body: 'b''{"location": "westus", "etag": "W/\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\"",
+ "tags": {}, "properties": {"resourceGuid": "0d2c030d-2809-4037-8701-5c811539fdc4",
+ "backendAddressPools": [{"etag": "W/\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\"",
+ "name": "appGatewayBackendPool", "properties": {"backendAddresses": [], "provisioningState":
+ "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"}],
+ "gatewayIPConfigurations": [{"etag": "W/\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\"",
+ "name": "appGatewayFrontendIP", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP"}],
+ "redirectConfigurations": [], "provisioningState": "Succeeded", "frontendPorts":
+ [{"etag": "W/\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\"", "name": "appGatewayFrontendPort",
+ "properties": {"port": 80, "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}],
+ "sku": {"capacity": 2, "name": "WAF_Medium", "tier": "WAF"}, "probes": [], "webApplicationFirewallConfiguration":
{"enabled": true, "disabledRuleGroups": [{"ruleGroupName": "crs_30_http_policy"},
{"ruleGroupName": "crs_49_inbound_blocking", "rules": [981175, 981176]}], "ruleSetVersion":
- "2.2.9", "ruleSetType": "OWASP", "firewallMode": "Prevention"}}, "etag": "W/\\"2beaa55b-e16d-4be9-b651-88438f93579d\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1",
- "tags": {}, "location": "westus"}'''
+ "2.2.9", "ruleSetType": "OWASP", "firewallMode": "Prevention"}, "sslCertificates":
+ [], "backendHttpSettingsCollection": [{"etag": "W/\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\"",
+ "name": "appGatewayBackendHttpSettings", "properties": {"cookieBasedAffinity":
+ "Disabled", "protocol": "Http", "port": 80, "pickHostNameFromBackendAddress":
+ false, "provisioningState": "Succeeded", "requestTimeout": 30}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}],
+ "httpListeners": [{"etag": "W/\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\"", "name":
+ "appGatewayHttpListener", "properties": {"requireServerNameIndication": false,
+ "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"},
+ "protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
+ "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}],
+ "authenticationCertificates": [], "requestRoutingRules": [{"etag": "W/\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\"",
+ "name": "rule1", "properties": {"httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},
+ "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
+ "ruleType": "Basic", "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
+ "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1"}],
+ "frontendIPConfigurations": [{"etag": "W/\\"1e3f99ee-d8f7-4670-8fae-ba2aa86501d2\\"",
+ "name": "appGatewayFrontendIP", "properties": {"privateIPAllocationMethod":
+ "Dynamic", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1"},
+ "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"}],
+ "urlPathMaps": []}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway waf-config set]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['5885']
+ Content-Length: ['5819']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"4fd4e14b-f445-4e32-a0d9-9c9c6ba8779f\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"0d2c030d-2809-4037-8701-5c811539fdc4\"\
,\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\":\
\ \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
@@ -2318,32 +6046,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -2354,7 +6080,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -2372,51 +6098,51 @@ interactions:
\n 981176\r\n ]\r\n }\r\n ]\r\n }\r\n \
\ }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/deda0684-b207-45bb-8a5c-33a9377796a2?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f79377b-b3e1-4a8e-8128-9ecfc20470c8?api-version=2017-09-01']
cache-control: [no-cache]
- content-length: ['8904']
+ content-length: ['8788']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:47 GMT']
+ date: ['Fri, 13 Oct 2017 22:38:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: [Accept-Encoding]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1193']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway waf-config show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"4fd4e14b-f445-4e32-a0d9-9c9c6ba8779f\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"0d2c030d-2809-4037-8701-5c811539fdc4\"\
,\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\":\
\ \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
@@ -2425,32 +6151,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -2461,7 +6185,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"6db50909-e29c-4346-8cc6-a77363a3dc40\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_config000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -2480,10 +6204,10 @@ interactions:
\ }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8904']
+ content-length: ['8788']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:48 GMT']
- etag: [W/"6db50909-e29c-4346-8cc6-a77363a3dc40"]
+ date: ['Fri, 13 Oct 2017 22:38:35 GMT']
+ etag: [W/"c4e09d6b-7e29-4c24-a71b-dd49a4f7166f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2496,13 +6220,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_app_gateway_waf_config000001?api-version=2017-05-10
@@ -2511,11 +6235,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:51:48 GMT']
+ date: ['Fri, 13 Oct 2017 22:38:35 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQVBQOjVGR0FURVdBWTo1RldBRjo1RkNPTkZJR01JV1JHMnwyQzdDMDQ4MjdERDBBRkQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQVBQOjVGR0FURVdBWTo1RldBRjo1RkNPTkZJR1c2Wlc0RXxERkIwRUNEOEVGOURCOTU4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1194']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_defaults.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_defaults.yaml
index e29926f05d4..234fd233345 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_defaults.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_defaults.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001?api-version=2017-05-10
@@ -20,7 +20,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:14 GMT']
+ date: ['Mon, 09 Oct 2017 22:31:45 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -31,12 +31,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:14 GMT']
+ date: ['Mon, 09 Oct 2017 22:31:45 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,12 +57,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_basic000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
@@ -72,7 +72,7 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:15 GMT']
+ date: ['Mon, 09 Oct 2017 22:31:45 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -80,70 +80,69 @@ interactions:
status: {code: 200, message: OK}
- request:
body: 'b''{"properties": {"template": {"variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag1\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "outputs": {"applicationGateway": {"type": "object", "value": "[reference(\''ag1\'')]"}},
- "contentVersion": "1.0.0.0", "resources": [{"dependsOn": [], "properties": {"addressSpace":
- {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": "default", "properties":
- {"addressPrefix": "10.0.0.0/24"}}]}, "type": "Microsoft.Network/virtualNetworks",
- "name": "ag1Vnet", "location": "westus", "tags": {}, "apiVersion": "2015-06-15"},
- {"dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"], "properties": {"frontendIPConfigurations":
- [{"name": "appGatewayFrontendIP", "properties": {"privateIPAddress": "", "subnet":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
- "privateIPAllocationMethod": "Dynamic"}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "Protocol": "http", "SslCertificate": null, "FrontendIpConfiguration": {"Id":
- "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "sku": {"name":
- "Standard_Medium", "capacity": 2, "tier": "Standard"}, "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "CookieBasedAffinity": "disabled", "Port": 80, "connectionDraining": {"enabled":
- false, "drainTimeoutInSec": 1}}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
- "requestRoutingRules": [{"Name": "rule1", "properties": {"RuleType": "Basic",
- "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "backendAddressPool": {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"}}}],
+ \''ag1\'')]"}, "contentVersion": "1.0.0.0", "outputs": {"applicationGateway":
+ {"type": "object", "value": "[reference(\''ag1\'')]"}}, "resources": [{"tags":
+ {}, "dependsOn": [], "location": "westus", "name": "ag1Vnet", "type": "Microsoft.Network/virtualNetworks",
+ "properties": {"subnets": [{"name": "default", "properties": {"addressPrefix":
+ "10.0.0.0/24"}}], "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "apiVersion":
+ "2015-06-15"}, {"tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/ag1Vnet"],
+ "location": "westus", "name": "ag1", "type": "Microsoft.Network/applicationGateways",
+ "properties": {"sku": {"name": "Standard_Medium", "capacity": 2, "tier": "Standard"},
+ "backendAddressPools": [{"name": "appGatewayBackendPool"}], "httpListeners":
+ [{"name": "appGatewayHttpListener", "properties": {"FrontendIpConfiguration":
+ {"Id": "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"},
+ "SslCertificate": null, "Protocol": "http", "FrontendPort": {"Id": "[concat(variables(\''appGwID\''),
+ \''/frontendPorts/appGatewayFrontendPort\'')]"}}}], "backendHttpSettingsCollection":
+ [{"name": "appGatewayBackendHttpSettings", "properties": {"CookieBasedAffinity":
+ "disabled", "Port": 80, "Protocol": "Http"}}], "requestRoutingRules": [{"properties":
+ {"httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
+ "RuleType": "Basic", "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''),
+ \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"}, "backendAddressPool":
+ {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"}},
+ "Name": "rule1"}], "frontendIPConfigurations": [{"name": "appGatewayFrontendIP",
+ "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "privateIPAddress": "", "privateIPAllocationMethod": "Dynamic"}}], "gatewayIPConfigurations":
+ [{"name": "appGatewayFrontendIP", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}}}],
"frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port":
- 80}}]}, "tags": {}, "type": "Microsoft.Network/applicationGateways", "location":
- "westus", "apiVersion": "2017-09-01", "name": "ag1"}], "parameters": {}}, "mode":
- "Incremental", "parameters": {}}}'''
+ 80}}]}, "apiVersion": "2017-09-01"}], "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "parameters": {}}, "parameters": {}, "mode": "Incremental"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['2784']
+ Content-Length: ['2718']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/ag_deploy_N4IDkoHxduulSMGgslsBGW2fHX8MSEIP","name":"ag_deploy_N4IDkoHxduulSMGgslsBGW2fHX8MSEIP","properties":{"templateHash":"1039264894826947598","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:36:17.1862184Z","duration":"PT0.4622116S","correlationId":"9719b339-3a45-4167-b893-2dc94cc4da89","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/ag_deploy_35I7kTf6i50MBDvHckXpJYRfahbSDZjz","name":"ag_deploy_35I7kTf6i50MBDvHckXpJYRfahbSDZjz","properties":{"templateHash":"1591090826997322995","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-09T22:31:47.7776396Z","duration":"PT0.6641037S","correlationId":"41352f3c-649f-43dc-b225-14728379c66a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag1Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag1"}]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/ag_deploy_N4IDkoHxduulSMGgslsBGW2fHX8MSEIP/operationStatuses/08586957715087536184?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001/providers/Microsoft.Resources/deployments/ag_deploy_35I7kTf6i50MBDvHckXpJYRfahbSDZjz/operationStatuses/08586940185783640856?api-version=2017-05-10']
cache-control: [no-cache]
content-length: ['1309']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:16 GMT']
+ date: ['Mon, 09 Oct 2017 22:31:47 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
@@ -154,7 +153,7 @@ interactions:
cache-control: [no-cache]
content-length: ['220']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:17 GMT']
+ date: ['Mon, 09 Oct 2017 22:31:48 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -165,33 +164,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"56d96296-f820-4da1-9aed-99e6f0804f69\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"8f557462-cee2-4ffa-9a9d-a397fc0ab317\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -200,32 +199,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -236,7 +233,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -248,10 +245,10 @@ interactions:
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8479']
+ content-length: ['8363']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:47 GMT']
- etag: [W/"3bc68e61-93f7-42a4-aeff-5c68cd627f92"]
+ date: ['Mon, 09 Oct 2017 22:32:18 GMT']
+ etag: [W/"7482096a-5b7b-4a98-bf80-cff43aad7b5a"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -264,33 +261,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"56d96296-f820-4da1-9aed-99e6f0804f69\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"8f557462-cee2-4ffa-9a9d-a397fc0ab317\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -299,32 +296,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -335,7 +330,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -347,10 +342,10 @@ interactions:
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8479']
+ content-length: ['8363']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:48 GMT']
- etag: [W/"3bc68e61-93f7-42a4-aeff-5c68cd627f92"]
+ date: ['Mon, 09 Oct 2017 22:32:19 GMT']
+ etag: [W/"7482096a-5b7b-4a98-bf80-cff43aad7b5a"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -359,73 +354,72 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1",
- "location": "westus", "properties": {"redirectConfigurations": [], "provisioningState":
- "Updating", "backendAddressPools": [{"name": "appGatewayBackendPool", "properties":
- {"provisioningState": "Updating", "backendAddresses": []}, "etag": "W/\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"}],
- "urlPathMaps": [], "sslCertificates": [], "backendHttpSettingsCollection": [{"name":
- "appGatewayBackendHttpSettings", "properties": {"pickHostNameFromBackendAddress":
- false, "provisioningState": "Updating", "cookieBasedAffinity": "Disabled", "port":
- 80, "protocol": "Http", "requestTimeout": 30, "connectionDraining": {"enabled":
- false, "drainTimeoutInSec": 1}}, "etag": "W/\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}],
- "gatewayIPConfigurations": [{"etag": "W/\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\"",
- "name": "appGatewayFrontendIP", "properties": {"provisioningState": "Updating",
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"}},
+ body: 'b''{"tags": {"foo": "doo"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1",
+ "properties": {"sku": {"name": "Standard_Small", "capacity": 3, "tier": "Standard"},
+ "backendHttpSettingsCollection": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
+ "properties": {"cookieBasedAffinity": "Disabled", "requestTimeout": 30, "port":
+ 80, "protocol": "Http", "provisioningState": "Updating", "pickHostNameFromBackendAddress":
+ false}, "etag": "W/\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\"", "name": "appGatewayBackendHttpSettings"}],
+ "sslCertificates": [], "provisioningState": "Updating", "frontendIPConfigurations":
+ [{"name": "appGatewayFrontendIP", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "provisioningState": "Updating", "privateIPAllocationMethod": "Dynamic"}, "etag":
+ "W/\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"}],
+ "urlPathMaps": [], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
+ "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
+ "provisioningState": "Updating"}, "etag": "W/\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\"",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP"}],
- "requestRoutingRules": [{"name": "rule1", "properties": {"backendHttpSettings":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "provisioningState": "Updating", "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},
- "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"},
- "ruleType": "Basic"}, "etag": "W/\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1"}],
- "frontendPorts": [{"etag": "W/\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\"", "name":
- "appGatewayFrontendPort", "properties": {"provisioningState": "Updating", "port":
- 80}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}],
- "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default"},
- "privateIPAllocationMethod": "Dynamic"}, "etag": "W/\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"}],
- "httpListeners": [{"name": "appGatewayHttpListener", "properties": {"provisioningState":
- "Updating", "protocol": "Http", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"},
- "requireServerNameIndication": false, "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}},
- "etag": "W/\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"}],
- "authenticationCertificates": [], "resourceGuid": "56d96296-f820-4da1-9aed-99e6f0804f69",
- "probes": [], "sku": {"name": "Standard_Small", "capacity": 3, "tier": "Standard"}},
- "etag": "W/\\"3bc68e61-93f7-42a4-aeff-5c68cd627f92\\"", "tags": {"foo": "doo"}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway update]
- Connection: [keep-alive]
- Content-Length: ['5631']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"port":
+ 80, "provisioningState": "Updating"}, "etag": "W/\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\"",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"}],
+ "probes": [], "backendAddressPools": [{"name": "appGatewayBackendPool", "properties":
+ {"backendAddresses": [], "provisioningState": "Updating"}, "etag": "W/\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\"",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"}],
+ "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener",
+ "properties": {"requireServerNameIndication": false, "frontendPort": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort"},
+ "protocol": "Http", "provisioningState": "Updating", "frontendIPConfiguration":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"}},
+ "etag": "W/\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\"", "name": "appGatewayHttpListener"}],
+ "authenticationCertificates": [], "redirectConfigurations": [], "requestRoutingRules":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1",
+ "properties": {"ruleType": "Basic", "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener"},
+ "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
+ "provisioningState": "Updating", "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool"}},
+ "etag": "W/\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\"", "name": "rule1"}], "resourceGuid":
+ "8f557462-cee2-4ffa-9a9d-a397fc0ab317"}, "etag": "W/\\"7482096a-5b7b-4a98-bf80-cff43aad7b5a\\"",
+ "location": "westus"}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['5565']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"de1c6275-87d8-42ab-8925-f367123d2c8f\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
: {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
+ 8f557462-cee2-4ffa-9a9d-a397fc0ab317\",\r\n \"sku\": {\r\n \"name\"\
: \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
: 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"de1c6275-87d8-42ab-8925-f367123d2c8f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"de1c6275-87d8-42ab-8925-f367123d2c8f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
@@ -434,32 +428,30 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"de1c6275-87d8-42ab-8925-f367123d2c8f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"de1c6275-87d8-42ab-8925-f367123d2c8f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"de1c6275-87d8-42ab-8925-f367123d2c8f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"de1c6275-87d8-42ab-8925-f367123d2c8f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -470,7 +462,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"de1c6275-87d8-42ab-8925-f367123d2c8f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
@@ -481,112 +473,66 @@ interactions:
\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f30e4394-3952-4805-9b4a-c2683233d615?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['8384']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:32:19 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:48 GMT']
+ date: ['Mon, 09 Oct 2017 22:32: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-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:49 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:32:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -599,94 +545,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:19 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:32:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -699,94 +573,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:49 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:33:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -799,94 +601,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:19 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:33:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -899,94 +629,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:50 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:33:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -999,94 +657,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:33:32 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:20 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:33:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1099,94 +711,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:50 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:33:52 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1199,94 +739,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:21 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:34:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1299,94 +767,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:51 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:34:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1399,94 +795,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:34:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:21 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:34:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1499,94 +849,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:51 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:34:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1599,94 +877,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:21 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:34:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1699,94 +905,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:51 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:35:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1799,94 +933,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:21 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:35:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1899,94 +961,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:52 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:35:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1999,94 +989,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:22 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:35:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2099,94 +1017,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:52 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:35:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2199,94 +1045,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:23 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:35:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2299,94 +1073,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:53 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:36:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2399,94 +1101,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:23 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:36:19 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2499,94 +1129,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:54 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:36:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2599,94 +1157,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:24 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:36:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2699,94 +1185,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:54 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:36:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2799,94 +1213,1266 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:37:01 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:37: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:37:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:37:32 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:37: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:37:53 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:38: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:38:14 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:38:25 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:38: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:38: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:38:56 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:39: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:39:16 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:39:26 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:39: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:39: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:39: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:40: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:40: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:40:29 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:40:40 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:40:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:41:01 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:41:12 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:41:23 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:41:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:41: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:41:53 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:42:04 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:42:14 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:42:25 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:42:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:42: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:42: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:43: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:43:16 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:43:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:43:37 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:43: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:43: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:44:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:44: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:44:29 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:44:40 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:24 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:44:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2899,94 +2485,274 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:45:01 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:45:12 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:45:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:45:32 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:45: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:45:53 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:46: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:46:14 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:46:23 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:55 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:46:34 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2999,94 +2765,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:25 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:46:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3099,94 +2793,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/347538e5-fa11-4105-afe1-e5b224861ea0?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:55 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:46:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3199,69 +2821,67 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
+ : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
+ \ \"8f557462-cee2-4ffa-9a9d-a397fc0ab317\",\r\n \"sku\": {\r\n \"\
+ name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
+ : 3\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n },\r\n \"httpListeners\": [\r\n {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
@@ -3271,8 +2891,8 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n },\r\n \"backendAddressPool\": {\r\n \"\
@@ -3283,85 +2903,81 @@ interactions:
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['8435']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:26 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:46:55 GMT']
+ etag: [W/"bb448392-631c-4c07-bc80-7e6131373770"]
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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
+ : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
+ \ \"8f557462-cee2-4ffa-9a9d-a397fc0ab317\",\r\n \"sku\": {\r\n \"\
+ name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
+ : 3\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n },\r\n \"httpListeners\": [\r\n {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
@@ -3371,8 +2987,8 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n },\r\n \"backendAddressPool\": {\r\n \"\
@@ -3383,10 +2999,117 @@ interactions:
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['8435']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:46:56 GMT']
+ etag: [W/"bb448392-631c-4c07-bc80-7e6131373770"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"ag1\",\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\
+ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"8f557462-cee2-4ffa-9a9d-a397fc0ab317\",\r\
+ \n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \
+ \ \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n\
+ \ \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\"\
+ : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"subnet\": {\r\n \"id\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"sslCertificates\": [],\r\n \"authenticationCertificates\": [],\r\
+ \n \"frontendIPConfigurations\": [\r\n {\r\n \"\
+ name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n\
+ \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \
+ \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ \r\n },\r\n \"httpListeners\": [\r\n \
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\
+ \n ],\r\n \"frontendPorts\": [\r\n {\r\n \
+ \ \"name\": \"appGatewayFrontendPort\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\
+ \n ],\r\n \"backendAddressPools\": [\r\n {\r\n \
+ \ \"name\": \"appGatewayBackendPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"backendAddresses\": [],\r\n \
+ \ \"requestRoutingRules\": [\r\n {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\
+ \n ],\r\n \"backendHttpSettingsCollection\": [\r\n \
+ \ {\r\n \"name\": \"appGatewayBackendHttpSettings\",\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\"\
+ : \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \
+ \ \"pickHostNameFromBackendAddress\": false,\r\n \"\
+ requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n \
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\
+ \n ],\r\n \"httpListeners\": [\r\n {\r\n \
+ \ \"name\": \"appGatewayHttpListener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
+ \r\n },\r\n \"frontendPort\": {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
+ \r\n },\r\n \"protocol\": \"Http\",\r\n \
+ \ \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\
+ \n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \
+ \ \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
+ \r\n },\r\n \"backendAddressPool\": {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ \r\n },\r\n \"backendHttpSettings\": {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"probes\": [],\r\n \"redirectConfigurations\": []\r\n }\r\
+ \n }\r\n ]\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['9072']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:56 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:46:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3399,69 +3122,67 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"name\"\
- : \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\"\
+ : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
+ \ \"8f557462-cee2-4ffa-9a9d-a397fc0ab317\",\r\n \"sku\": {\r\n \"\
+ name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
+ : 3\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
\r\n },\r\n \"httpListeners\": [\r\n {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
+ \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"pickHostNameFromBackendAddress\"\
+ : false,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
@@ -3471,8 +3192,8 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"fe296c9c-55d1-439d-8506-c05888834d9f\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"bb448392-631c-4c07-bc80-7e6131373770\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
\r\n },\r\n \"backendAddressPool\": {\r\n \"\
@@ -3483,10 +3204,155 @@ interactions:
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8500']
+ content-length: ['8435']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:46:57 GMT']
+ etag: [W/"bb448392-631c-4c07-bc80-7e6131373770"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendhealth?api-version=2017-09-01
+ response:
+ body: {string: 'null'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:46:58 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e9c64e35-9e39-44fa-a717-ec461aa3e17d?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 202, message: Accepted}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e9c64e35-9e39-44fa-a717-ec461aa3e17d?api-version=2017-09-01
+ response:
+ body: {string: 'null'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:47:08 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e9c64e35-9e39-44fa-a717-ec461aa3e17d?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 202, message: Accepted}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e9c64e35-9e39-44fa-a717-ec461aa3e17d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
+ \r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n\
+ \ \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
+ \r\n },\r\n \"servers\": []\r\n }\r\n ]\r\n\
+ \ }\r\n ]\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['770']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:47:25 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e9c64e35-9e39-44fa-a717-ec461aa3e17d?api-version=2017-09-01']
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/stop?api-version=2017-09-01
+ response:
+ body: {string: ''}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Mon, 09 Oct 2017 22:47:27 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 202, message: Accepted}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:26 GMT']
- etag: [W/"fe296c9c-55d1-439d-8506-c05888834d9f"]
+ date: ['Mon, 09 Oct 2017 22:47:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3499,94 +3365,106 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"\
- name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:47:48 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:47: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:48: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8551']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:57 GMT']
- etag: [W/"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85"]
+ date: ['Mon, 09 Oct 2017 22:48:19 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3599,103 +3477,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"ag1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\",\r\
- \n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\
- \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"56d96296-f820-4da1-9aed-99e6f0804f69\",\r\
- \n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \
- \ \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n\
- \ \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"subnet\": {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"sslCertificates\": [],\r\n \"authenticationCertificates\": [],\r\
- \n \"frontendIPConfigurations\": [\r\n {\r\n \"\
- name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n\
- \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \
- \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\
- \n ],\r\n \"frontendPorts\": [\r\n {\r\n \
- \ \"name\": \"appGatewayFrontendPort\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\
- \n ],\r\n \"backendAddressPools\": [\r\n {\r\n \
- \ \"name\": \"appGatewayBackendPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"backendAddresses\": [],\r\n \
- \ \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\
- \n ],\r\n \"backendHttpSettingsCollection\": [\r\n \
- \ {\r\n \"name\": \"appGatewayBackendHttpSettings\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\"\
- : \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \
- \ \"connectionDraining\": {\r\n \"enabled\": false,\r\
- \n \"drainTimeoutInSec\": 1\r\n },\r\n \
- \ \"pickHostNameFromBackendAddress\": false,\r\n \"requestTimeout\"\
- : 30,\r\n \"requestRoutingRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\
- \n ],\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"name\": \"appGatewayHttpListener\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \
- \ \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\
- \n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"name\": \"rule1\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \
- \ \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"probes\": [],\r\n \"redirectConfigurations\": []\r\n }\r\
- \n }\r\n ]\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['9204']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:57 GMT']
+ date: ['Mon, 09 Oct 2017 22:48:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3708,94 +3505,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff763c5e-0381-4e11-baa6-883bb11b35f2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"ag1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
- \ \"westus\",\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"56d96296-f820-4da1-9aed-99e6f0804f69\",\r\n \"sku\": {\r\n \"\
- name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\"\
- : 3\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
- : [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
- : [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default\"\
- \r\n },\r\n \"httpListeners\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
- appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
- \ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
- : {\r\n \"enabled\": false,\r\n \"drainTimeoutInSec\"\
- : 1\r\n },\r\n \"pickHostNameFromBackendAddress\": false,\r\
- \n \"requestTimeout\": 30,\r\n \"requestRoutingRules\":\
- \ [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP\"\
- \r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/frontendPorts/appGatewayFrontendPort\"\
- \r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\"\
- : false,\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
- \ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
- \ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/httpListeners/appGatewayHttpListener\"\
- \r\n },\r\n \"backendAddressPool\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettings\": {\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
- \n \"redirectConfigurations\": []\r\n }\r\n}"}
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['8551']
+ content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:58 GMT']
- etag: [W/"9cd5ff20-07d3-4bca-a2c7-8e83d10cbd85"]
+ date: ['Mon, 09 Oct 2017 22:48:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3808,85 +3533,80 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway show-backend-health]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendhealth?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/start?api-version=2017-09-01
response:
- body: {string: 'null'}
+ body: {string: ''}
headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01']
cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:57 GMT']
+ content-length: ['0']
+ date: ['Mon, 09 Oct 2017 22:48:45 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9cc01e08-4bc7-4e1d-8d24-6900b0f8c1f0?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway show-backend-health]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9cc01e08-4bc7-4e1d-8d24-6900b0f8c1f0?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
- body: {string: 'null'}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['4']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:08 GMT']
+ date: ['Mon, 09 Oct 2017 22:48:55 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9cc01e08-4bc7-4e1d-8d24-6900b0f8c1f0?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway show-backend-health]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9cc01e08-4bc7-4e1d-8d24-6900b0f8c1f0?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
- body: {string: "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendAddressPools/appGatewayBackendPool\"\
- \r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n\
- \ \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- \r\n },\r\n \"servers\": []\r\n }\r\n ]\r\n\
- \ }\r\n ]\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['770']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:18 GMT']
+ date: ['Mon, 09 Oct 2017 22:49:06 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9cc01e08-4bc7-4e1d-8d24-6900b0f8c1f0?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3898,51 +3618,50 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/stop?api-version=2017-09-01
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
- body: {string: ''}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01']
cache-control: [no-cache]
- content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:52:19 GMT']
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:49:16 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 202, message: Accepted}
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:29 GMT']
+ date: ['Mon, 09 Oct 2017 22:49:26 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3955,22 +3674,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:39 GMT']
+ date: ['Mon, 09 Oct 2017 22:49:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3983,22 +3702,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:50 GMT']
+ date: ['Mon, 09 Oct 2017 22:49:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4011,22 +3730,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:00 GMT']
+ date: ['Mon, 09 Oct 2017 22:49:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4039,22 +3758,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:10 GMT']
+ date: ['Mon, 09 Oct 2017 22:50:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4067,22 +3786,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:21 GMT']
+ date: ['Mon, 09 Oct 2017 22:50:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4095,22 +3814,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:31 GMT']
+ date: ['Mon, 09 Oct 2017 22:50:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4123,22 +3842,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway stop]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2767377-b4dc-4995-bc75-272020ae0e3f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['29']
+ content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:41 GMT']
+ date: ['Mon, 09 Oct 2017 22:50:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4151,51 +3870,50 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1/start?api-version=2017-09-01
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
- body: {string: ''}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01']
cache-control: [no-cache]
- content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:53:42 GMT']
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 22:50:55 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 202, message: Accepted}
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:53 GMT']
+ date: ['Mon, 09 Oct 2017 22:51:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4208,22 +3926,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:54:03 GMT']
+ date: ['Mon, 09 Oct 2017 22:51:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4236,22 +3954,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:54:13 GMT']
+ date: ['Mon, 09 Oct 2017 22:51:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4264,22 +3982,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:54:23 GMT']
+ date: ['Mon, 09 Oct 2017 22:51:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4292,22 +4010,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:54:34 GMT']
+ date: ['Mon, 09 Oct 2017 22:51:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4320,22 +4038,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:54:44 GMT']
+ date: ['Mon, 09 Oct 2017 22:51:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4348,22 +4066,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:54:55 GMT']
+ date: ['Mon, 09 Oct 2017 22:52:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4376,22 +4094,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:04 GMT']
+ date: ['Mon, 09 Oct 2017 22:52:19 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4404,22 +4122,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:15 GMT']
+ date: ['Mon, 09 Oct 2017 22:52:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4432,22 +4150,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:25 GMT']
+ date: ['Mon, 09 Oct 2017 22:52:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4460,22 +4178,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:35 GMT']
+ date: ['Mon, 09 Oct 2017 22:52:49 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4488,22 +4206,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:46 GMT']
+ date: ['Mon, 09 Oct 2017 22:53:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4516,22 +4234,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:56 GMT']
+ date: ['Mon, 09 Oct 2017 22:53:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4544,22 +4262,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:07 GMT']
+ date: ['Mon, 09 Oct 2017 22:53:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4572,22 +4290,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:17 GMT']
+ date: ['Mon, 09 Oct 2017 22:53:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4600,22 +4318,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:27 GMT']
+ date: ['Mon, 09 Oct 2017 22:53:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4628,78 +4346,74 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:37 GMT']
+ date: ['Mon, 09 Oct 2017 22:53: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:48 GMT']
+ date: ['Mon, 09 Oct 2017 22:54:02 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:58 GMT']
+ date: ['Mon, 09 Oct 2017 22:54:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4712,50 +4426,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:57:08 GMT']
+ date: ['Mon, 09 Oct 2017 22:54:23 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:57:19 GMT']
+ date: ['Mon, 09 Oct 2017 22:54:34 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4768,22 +4480,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:57:28 GMT']
+ date: ['Mon, 09 Oct 2017 22:54:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4796,22 +4508,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:57:39 GMT']
+ date: ['Mon, 09 Oct 2017 22:54:55 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4824,22 +4536,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:57:49 GMT']
+ date: ['Mon, 09 Oct 2017 22:55:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4852,50 +4564,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:58:00 GMT']
+ date: ['Mon, 09 Oct 2017 22:55:16 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:58:10 GMT']
+ date: ['Mon, 09 Oct 2017 22:55:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4908,22 +4618,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:58:20 GMT']
+ date: ['Mon, 09 Oct 2017 22:55:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4936,22 +4646,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:58:31 GMT']
+ date: ['Mon, 09 Oct 2017 22:55:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4964,22 +4674,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:58:41 GMT']
+ date: ['Mon, 09 Oct 2017 22:56:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4992,22 +4702,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:58:51 GMT']
+ date: ['Mon, 09 Oct 2017 22:56:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5020,22 +4730,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:02 GMT']
+ date: ['Mon, 09 Oct 2017 22:56:23 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5048,22 +4758,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:12 GMT']
+ date: ['Mon, 09 Oct 2017 22:56:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5076,50 +4786,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:23 GMT']
+ date: ['Mon, 09 Oct 2017 22:56:44 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:32 GMT']
+ date: ['Mon, 09 Oct 2017 22:56:54 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5132,22 +4840,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:43 GMT']
+ date: ['Mon, 09 Oct 2017 22:57:05 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5160,22 +4868,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:53 GMT']
+ date: ['Mon, 09 Oct 2017 22:57:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5188,22 +4896,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:03 GMT']
+ date: ['Mon, 09 Oct 2017 22:57:26 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5216,22 +4924,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:14 GMT']
+ date: ['Mon, 09 Oct 2017 22:57:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5244,50 +4952,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:24 GMT']
+ date: ['Mon, 09 Oct 2017 22:57: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:35 GMT']
+ date: ['Mon, 09 Oct 2017 22:57:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5300,22 +5006,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:45 GMT']
+ date: ['Mon, 09 Oct 2017 22:58:08 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5328,22 +5034,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:55 GMT']
+ date: ['Mon, 09 Oct 2017 22:58:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5356,50 +5062,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:05 GMT']
+ date: ['Mon, 09 Oct 2017 22:58: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:16 GMT']
+ date: ['Mon, 09 Oct 2017 22:58:40 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5412,22 +5116,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:26 GMT']
+ date: ['Mon, 09 Oct 2017 22:58:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5440,22 +5144,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:37 GMT']
+ date: ['Mon, 09 Oct 2017 22:59:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5468,22 +5172,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:46 GMT']
+ date: ['Mon, 09 Oct 2017 22:59:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5496,22 +5200,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:57 GMT']
+ date: ['Mon, 09 Oct 2017 22:59:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5524,22 +5228,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:07 GMT']
+ date: ['Mon, 09 Oct 2017 22:59:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5552,50 +5256,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:18 GMT']
+ date: ['Mon, 09 Oct 2017 22:59: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:28 GMT']
+ date: ['Mon, 09 Oct 2017 22:59:52 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5608,22 +5310,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:38 GMT']
+ date: ['Mon, 09 Oct 2017 23:00:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5636,22 +5338,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:49 GMT']
+ date: ['Mon, 09 Oct 2017 23:00:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5664,22 +5366,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:59 GMT']
+ date: ['Mon, 09 Oct 2017 23:00:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5692,22 +5394,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:03:10 GMT']
+ date: ['Mon, 09 Oct 2017 23:00:34 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5720,22 +5422,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:03:19 GMT']
+ date: ['Mon, 09 Oct 2017 23:00:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5748,22 +5450,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:03:30 GMT']
+ date: ['Mon, 09 Oct 2017 23:00:55 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5776,22 +5478,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:03:40 GMT']
+ date: ['Mon, 09 Oct 2017 23:01:05 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5804,22 +5506,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:03:50 GMT']
+ date: ['Mon, 09 Oct 2017 23:01:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5832,22 +5534,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:04:01 GMT']
+ date: ['Mon, 09 Oct 2017 23:01:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5860,22 +5562,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:04:11 GMT']
+ date: ['Mon, 09 Oct 2017 23:01:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5888,22 +5590,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:04:21 GMT']
+ date: ['Mon, 09 Oct 2017 23:01:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5916,22 +5618,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:04:31 GMT']
+ date: ['Mon, 09 Oct 2017 23:01:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5944,22 +5646,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:04:42 GMT']
+ date: ['Mon, 09 Oct 2017 23:02:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5972,50 +5674,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:04:52 GMT']
+ date: ['Mon, 09 Oct 2017 23:02: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:05:02 GMT']
+ date: ['Mon, 09 Oct 2017 23:02:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6028,22 +5728,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 09 Oct 2017 23:02:39 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:05:12 GMT']
+ date: ['Mon, 09 Oct 2017 23:02:49 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6056,22 +5782,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:05:22 GMT']
+ date: ['Mon, 09 Oct 2017 23:02:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6084,22 +5810,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:05:33 GMT']
+ date: ['Mon, 09 Oct 2017 23:03:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6112,22 +5838,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:05:43 GMT']
+ date: ['Mon, 09 Oct 2017 23:03:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6140,22 +5866,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:05:54 GMT']
+ date: ['Mon, 09 Oct 2017 23:03:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6168,22 +5894,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:06:03 GMT']
+ date: ['Mon, 09 Oct 2017 23:03:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6196,22 +5922,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:06:14 GMT']
+ date: ['Mon, 09 Oct 2017 23:03:52 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6224,22 +5950,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:06:24 GMT']
+ date: ['Mon, 09 Oct 2017 23:04:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6252,22 +5978,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:06:34 GMT']
+ date: ['Mon, 09 Oct 2017 23:04:12 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6280,22 +6006,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:06:44 GMT']
+ date: ['Mon, 09 Oct 2017 23:04:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6308,22 +6034,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:06:55 GMT']
+ date: ['Mon, 09 Oct 2017 23:04:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6336,22 +6062,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:07:05 GMT']
+ date: ['Mon, 09 Oct 2017 23:04:43 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6364,22 +6090,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:07:16 GMT']
+ date: ['Mon, 09 Oct 2017 23:04:54 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6392,22 +6118,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway start]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6dacf900-3c66-45d3-b424-e72ec17d0555?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ed586e24-abf4-42aa-8a07-a66bd7dfe205?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:07:26 GMT']
+ date: ['Mon, 09 Oct 2017 23:05:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6420,51 +6146,51 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways/ag1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 16:07:28 GMT']
+ date: ['Mon, 09 Oct 2017 23:05:05 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1183']
+ x-ms-ratelimit-remaining-subscription-writes: ['1147']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:07:38 GMT']
+ date: ['Mon, 09 Oct 2017 23:05:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6477,22 +6203,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:07:48 GMT']
+ date: ['Mon, 09 Oct 2017 23:05:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6505,22 +6231,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:07:59 GMT']
+ date: ['Mon, 09 Oct 2017 23:05:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6533,50 +6259,48 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:08:09 GMT']
+ date: ['Mon, 09 Oct 2017 23:05: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:08:19 GMT']
+ date: ['Mon, 09 Oct 2017 23:05:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6589,78 +6313,74 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:08:30 GMT']
+ date: ['Mon, 09 Oct 2017 23:06: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:08:40 GMT']
+ date: ['Mon, 09 Oct 2017 23:06:17 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:08:50 GMT']
+ date: ['Mon, 09 Oct 2017 23:06:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6673,22 +6393,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:09:00 GMT']
+ date: ['Mon, 09 Oct 2017 23:06:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6701,40 +6421,38 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ab2f629-7afd-42a9-b4de-eb56e5a9e72c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1eaae9f-934a-4a2f-843d-7e03f365cc4d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:09:11 GMT']
+ date: ['Mon, 09 Oct 2017 23:06: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basic000001/providers/Microsoft.Network/applicationGateways?api-version=2017-09-01
@@ -6744,7 +6462,7 @@ interactions:
cache-control: [no-cache]
content-length: ['19']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:09:12 GMT']
+ date: ['Mon, 09 Oct 2017 23:06:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -6757,13 +6475,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_basic000001?api-version=2017-05-10
@@ -6772,11 +6490,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 16:09:12 GMT']
+ date: ['Mon, 09 Oct 2017 23:06:51 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZCQVNJQzZXVEZZSjNGVkoyVzJQUE9SWkdUTUhaUHwzNkM1Nzk5NEUzRDE4RUI5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZCQVNJQzVJVUhNTFRRNDdBN1BIUTVNT0NEWkpETHxEOEVEQ0VFMjkxQ0VBNUFFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_existing_subnet.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_existing_subnet.yaml
index 644d90343fc..b60a5097867 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_existing_subnet.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_existing_subnet.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:00 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:43 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001?api-version=2017-05-10
@@ -46,77 +46,77 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:00 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:43 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"subnets": [{"name":
- "subnet1", "properties": {"addressPrefix": "10.0.0.0/24"}}], "addressSpace":
- {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}'
+ body: '{"properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions":
+ {}, "subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"}, "name": "subnet1"}]},
+ "tags": {}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['205']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
- ,\r\n \"etag\": \"W/\\\"72fd270a-5a0c-4220-8c64-ccfb898ca561\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"01b593f2-839d-4c0c-92e5-28c4c5f468bb\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"3feaae31-1986-4d52-b134-6af88dc76547\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"a9e3c234-ef09-41eb-be1c-4b00256c7f32\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"72fd270a-5a0c-4220-8c64-ccfb898ca561\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"01b593f2-839d-4c0c-92e5-28c4c5f468bb\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/394390dc-63c0-4ff1-ad81-9f503a8e645f?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/55230246-4c95-4db5-8676-bfcf4f297587?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1230']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:02 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/394390dc-63c0-4ff1-ad81-9f503a8e645f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/55230246-4c95-4db5-8676-bfcf4f297587?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:04 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -129,26 +129,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
- ,\r\n \"etag\": \"W/\\\"d7475637-827f-4003-b3c4-e69b22d7f8d7\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"41e715ed-70fa-4bc7-a433-95b4141acc2b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"3feaae31-1986-4d52-b134-6af88dc76547\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"a9e3c234-ef09-41eb-be1c-4b00256c7f32\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"d7475637-827f-4003-b3c4-e69b22d7f8d7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"41e715ed-70fa-4bc7-a433-95b4141acc2b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -157,8 +157,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1232']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:04 GMT']
- etag: [W/"d7475637-827f-4003-b3c4-e69b22d7f8d7"]
+ date: ['Mon, 16 Oct 2017 21:29:49 GMT']
+ etag: [W/"41e715ed-70fa-4bc7-a433-95b4141acc2b"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -171,12 +171,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001?api-version=2017-05-10
@@ -186,7 +186,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:04 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:49 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -197,22 +197,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_existing_subnet000001%27%20and%20name%20eq%20%27vnet2%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_ag_existing_subnet000001%27%20and%20name%20eq%20%27vnet2%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
response:
body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2","name":"vnet2","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
headers:
cache-control: [no-cache]
content-length: ['301']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:05 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:50 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -223,12 +223,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001?api-version=2017-05-10
@@ -238,7 +238,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:05 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:51 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -249,101 +249,127 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_existing_subnet000001%27%20and%20name%20eq%20%27vnet2%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_ag_existing_subnet000001%27%20and%20name%20eq%20%27vnet2%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
response:
body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2","name":"vnet2","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
headers:
cache-control: [no-cache]
content-length: ['301']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:05 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:52 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"parameters": {}, "template": {"parameters": {}, "$schema":
- "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0", "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag2\'')]"}, "outputs": {"applicationGateway": {"value": "[reference(\''ag2\'')]",
- "type": "object"}}, "resources": [{"name": "ag2", "dependsOn": [], "location":
- "westus", "type": "Microsoft.Network/applicationGateways", "apiVersion": "2017-09-01",
- "tags": {}, "properties": {"requestRoutingRules": [{"Name": "rule1", "properties":
- {"backendHttpSettings": {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"parameters": {},
+ "resources": [{"type": "Microsoft.Network/applicationGateways", "properties":
+ {"httpListeners": [{"properties": {"Protocol": "http", "SslCertificate": null,
+ "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
+ "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}},
+ "name": "appGatewayHttpListener"}], "frontendIPConfigurations": [{"properties":
+ {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1"},
+ "privateIPAddress": "", "privateIPAllocationMethod": "Dynamic"}, "name": "appGatewayFrontendIP"}],
+ "backendAddressPools": [{"properties": {"BackendAddresses": [{"ipAddress": "172.0.0.1"},
+ {"fqdn": "www.mydomain.com"}]}, "name": "appGatewayBackendPool"}], "frontendPorts":
+ [{"properties": {"Port": 80}, "name": "appGatewayFrontendPort"}], "sku": {"capacity":
+ 2, "name": "Standard_Medium", "tier": "Standard"}, "backendHttpSettingsCollection":
+ [{"properties": {"CookieBasedAffinity": "disabled", "Protocol": "Http", "Port":
+ 80, "connectionDraining": {"enabled": false, "drainTimeoutInSec": 1}}, "name":
+ "appGatewayBackendHttpSettings"}], "gatewayIPConfigurations": [{"properties":
+ {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1"}},
+ "name": "appGatewayFrontendIP"}], "requestRoutingRules": [{"Name": "rule1",
+ "properties": {"backendHttpSettings": {"id": "[concat(variables(\''appGwID\''),
+ \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"}, "backendAddressPool":
+ {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
"httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "RuleType": "Basic", "backendAddressPool": {"id": "[concat(variables(\''appGwID\''),
- \''/backendAddressPools/appGatewayBackendPool\'')]"}}}], "backendHttpSettingsCollection":
- [{"name": "appGatewayBackendHttpSettings", "properties": {"Port": 80, "Protocol":
- "Http", "connectionDraining": {"enabled": false, "drainTimeoutInSec": 1}, "CookieBasedAffinity":
- "disabled"}}], "httpListeners": [{"name": "appGatewayHttpListener", "properties":
- {"SslCertificate": null, "Protocol": "http", "FrontendIpConfiguration": {"Id":
- "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"},
- "FrontendPort": {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"}}}],
- "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP", "properties": {"subnet":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1"}}}],
- "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port":
- 80}}], "sku": {"name": "Standard_Medium", "capacity": 2, "tier": "Standard"},
- "backendAddressPools": [{"name": "appGatewayBackendPool", "properties": {"BackendAddresses":
- [{"ipAddress": "172.0.0.1"}, {"fqdn": "www.mydomain.com"}]}}], "frontendIPConfigurations":
- [{"name": "appGatewayFrontendIP", "properties": {"privateIPAddress": "", "privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1"}}}]}}]},
- "mode": "Incremental"}}'''
+ "RuleType": "Basic"}}]}, "name": "ag2", "apiVersion": "2017-09-01", "dependsOn":
+ [], "tags": {}, "location": "westus"}], "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"applicationGateway": {"type": "object", "value": "[reference(\''ag2\'')]"}},
+ "contentVersion": "1.0.0.0", "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
+ \''ag2\'')]"}}, "parameters": {}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['2536']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/ag_deploy_c6aOXufm5vbEND0omnYHTBLm6kUuk8Ho","name":"ag_deploy_c6aOXufm5vbEND0omnYHTBLm6kUuk8Ho","properties":{"templateHash":"6396079269077820781","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:36:07.4338361Z","duration":"PT0.4451571S","correlationId":"7f3443c8-bc5c-41fe-83c0-c3684d86f3ea","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/ag_deploy_xNFNMaghDejpthVUE8SQ7KMZ8yHepD8Z","name":"ag_deploy_xNFNMaghDejpthVUE8SQ7KMZ8yHepD8Z","properties":{"templateHash":"16862521543824771751","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T21:29:54.181314Z","duration":"PT0.2094847S","correlationId":"64100b44-573a-4715-9b2d-0002d4c19301","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/ag_deploy_c6aOXufm5vbEND0omnYHTBLm6kUuk8Ho/operationStatuses/08586957715184889401?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/ag_deploy_xNFNMaghDejpthVUE8SQ7KMZ8yHepD8Z/operationStatuses/08586934174915057874?api-version=2017-05-10']
cache-control: [no-cache]
content-length: ['678']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:07 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:54 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1179']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 21:30:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:37 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:54 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -354,22 +380,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:07 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:24 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -380,22 +406,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:38 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:54 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -406,22 +432,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:08 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:25 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -432,22 +458,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:38 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:55 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -458,22 +484,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:08 GMT']
+ date: ['Mon, 16 Oct 2017 21:33:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -484,22 +510,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:38 GMT']
+ date: ['Mon, 16 Oct 2017 21:33:56 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -510,22 +536,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:09 GMT']
+ date: ['Mon, 16 Oct 2017 21:34:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -536,22 +562,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:39 GMT']
+ date: ['Mon, 16 Oct 2017 21:34:57 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -562,22 +588,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:09 GMT']
+ date: ['Mon, 16 Oct 2017 21:35:27 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -588,22 +614,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:39 GMT']
+ date: ['Mon, 16 Oct 2017 21:35:57 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -614,22 +640,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:09 GMT']
+ date: ['Mon, 16 Oct 2017 21:36:28 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -640,22 +666,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:40 GMT']
+ date: ['Mon, 16 Oct 2017 21:37:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -666,22 +692,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:10 GMT']
+ date: ['Mon, 16 Oct 2017 21:37:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -692,22 +718,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:40 GMT']
+ date: ['Mon, 16 Oct 2017 21:38:03 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -718,22 +744,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:11 GMT']
+ date: ['Mon, 16 Oct 2017 21:38:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -744,22 +770,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:41 GMT']
+ date: ['Mon, 16 Oct 2017 21:39:04 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -770,22 +796,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:12 GMT']
+ date: ['Mon, 16 Oct 2017 21:39:35 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -796,22 +822,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:42 GMT']
+ date: ['Mon, 16 Oct 2017 21:40:04 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -822,22 +848,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:11 GMT']
+ date: ['Mon, 16 Oct 2017 21:40:35 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -848,22 +874,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:42 GMT']
+ date: ['Mon, 16 Oct 2017 21:41:05 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -874,22 +900,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:13 GMT']
+ date: ['Mon, 16 Oct 2017 21:41:36 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -900,22 +926,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:42:06 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -926,22 +952,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:13 GMT']
+ date: ['Mon, 16 Oct 2017 21:42:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -952,22 +978,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:43:07 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -978,22 +1004,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:14 GMT']
+ date: ['Mon, 16 Oct 2017 21:43:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1004,22 +1030,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:44 GMT']
+ date: ['Mon, 16 Oct 2017 21:44:08 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1030,22 +1056,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:14 GMT']
+ date: ['Mon, 16 Oct 2017 21:44:39 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1056,22 +1082,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:44 GMT']
+ date: ['Mon, 16 Oct 2017 21:45:10 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1082,22 +1108,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:14 GMT']
+ date: ['Mon, 16 Oct 2017 21:45:40 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1108,22 +1134,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715184889401?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934174915057874?api-version=2017-05-10
response:
body: {string: '{"status":"Succeeded"}'}
headers:
cache-control: [no-cache]
content-length: ['22']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:45 GMT']
+ date: ['Mon, 16 Oct 2017 21:46:10 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1134,22 +1160,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/ag_deploy_c6aOXufm5vbEND0omnYHTBLm6kUuk8Ho","name":"ag_deploy_c6aOXufm5vbEND0omnYHTBLm6kUuk8Ho","properties":{"templateHash":"6396079269077820781","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T15:51:19.4537748Z","duration":"PT15M12.4650958S","correlationId":"7f3443c8-bc5c-41fe-83c0-c3684d86f3ea","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"fcbe3369-6fc9-4bca-9031-189c2ec12426","sku":{"name":"Standard_Medium","tier":"Standard","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"96f6fb53-41c9-44d2-8cb0-f7d6969fd82d\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1"}}}],"sslCertificates":[],"authenticationCertificates":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"96f6fb53-41c9-44d2-8cb0-f7d6969fd82d\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort","etag":"W/\"96f6fb53-41c9-44d2-8cb0-f7d6969fd82d\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener"}]}}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool","etag":"W/\"96f6fb53-41c9-44d2-8cb0-f7d6969fd82d\"","properties":{"provisioningState":"Succeeded","backendAddresses":[{"ipAddress":"172.0.0.1"},{"fqdn":"www.mydomain.com"}],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1"}]}}],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"96f6fb53-41c9-44d2-8cb0-f7d6969fd82d\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","connectionDraining":{"enabled":false,"drainTimeoutInSec":1},"pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1"}]}}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener","etag":"W/\"96f6fb53-41c9-44d2-8cb0-f7d6969fd82d\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1"}]}}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1","etag":"W/\"96f6fb53-41c9-44d2-8cb0-f7d6969fd82d\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}}}],"probes":[],"redirectConfigurations":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Resources/deployments/ag_deploy_xNFNMaghDejpthVUE8SQ7KMZ8yHepD8Z","name":"ag_deploy_xNFNMaghDejpthVUE8SQ7KMZ8yHepD8Z","properties":{"templateHash":"16862521543824771751","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T21:45:54.2829937Z","duration":"PT16M0.3111644S","correlationId":"64100b44-573a-4715-9b2d-0002d4c19301","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"607db7cc-adc6-4018-987d-c5d3a4a8c3ad","sku":{"name":"Standard_Medium","tier":"Standard","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"d9036b51-40b0-4b8d-9867-ec7ec3b657cc\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1"}}}],"sslCertificates":[],"authenticationCertificates":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"d9036b51-40b0-4b8d-9867-ec7ec3b657cc\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort","etag":"W/\"d9036b51-40b0-4b8d-9867-ec7ec3b657cc\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener"}]}}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool","etag":"W/\"d9036b51-40b0-4b8d-9867-ec7ec3b657cc\"","properties":{"provisioningState":"Succeeded","backendAddresses":[{"ipAddress":"172.0.0.1"},{"fqdn":"www.mydomain.com"}],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1"}]}}],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"d9036b51-40b0-4b8d-9867-ec7ec3b657cc\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","connectionDraining":{"enabled":false,"drainTimeoutInSec":1},"pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1"}]}}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener","etag":"W/\"d9036b51-40b0-4b8d-9867-ec7ec3b657cc\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1"}]}}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/requestRoutingRules/rule1","etag":"W/\"d9036b51-40b0-4b8d-9867-ec7ec3b657cc\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}}}],"probes":[],"redirectConfigurations":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnet000001/providers/Microsoft.Network/applicationGateways/ag2"}]}}'}
headers:
cache-control: [no-cache]
content-length: ['7537']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:45 GMT']
+ date: ['Mon, 16 Oct 2017 21:46:11 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1160,13 +1186,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_existing_subnet000001?api-version=2017-05-10
@@ -1175,11 +1201,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:51:46 GMT']
+ date: ['Mon, 16 Oct 2017 21:46:12 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZFWElTVElORzo1RlNVQk5FVEpPWlZVTzZKQVlXMnwwQjhGNDQ5NkI3MkE1RUFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZFWElTVElORzo1RlNVQk5FVE03WUtPVERNS0NOTXxFMjYxMzg3RjFEMjgyRjM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_private_ip.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_private_ip.yaml
index c1dea470a48..935164f8408 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_private_ip.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_private_ip.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_private_ip000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:34 GMT']
+ date: ['Mon, 16 Oct 2017 20:13:56 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_private_ip000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:35 GMT']
+ date: ['Mon, 16 Oct 2017 20:13:56 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,12 +57,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_ag_private_ip000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
@@ -72,7 +72,7 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:35 GMT']
+ date: ['Mon, 16 Oct 2017 20:13:57 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -80,74 +80,74 @@ interactions:
status: {code: 200, message: OK}
- request:
body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
- {"outputs": {"applicationGateway": {"type": "object", "value": "[reference(\''ag3\'')]"}},
+ {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''ag3\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "resources": [{"type": "Microsoft.Network/virtualNetworks", "tags": {}, "dependsOn":
- [], "location": "westus", "name": "ag3Vnet", "apiVersion": "2015-06-15", "properties":
- {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name":
- "subnet1", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": "Microsoft.Network/applicationGateways",
- "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/ag3Vnet"], "location":
- "westus", "name": "ag3", "apiVersion": "2017-09-01", "properties": {"requestRoutingRules":
- [{"Name": "rule1", "properties": {"httpListener": {"id": "[concat(variables(\''appGwID\''),
- \''/httpListeners/appGatewayHttpListener\'')]"}, "backendAddressPool": {"id":
- "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
- "RuleType": "Basic", "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''),
- \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"}}}], "sku":
- {"capacity": 2, "name": "Standard_Medium", "tier": "Standard"}, "sslCertificates":
- [{"name": "ag3SslCert", "properties": {"password": "password", "data": "MIIJuwIBAzCCCXcGCSqGSIb3DQEHAaCCCWgEgglkMIIJYDCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhXEBfBWkIAigICB9AEggTY4EM/sz3ldecsIvpg3F/ymL4YqRboZbvA4LwwdTC1fuOwcxs4sJ/b3OPDwiWqEE9GinOh7+Kr1dVpH1lff+d8B/ZIM8qTC/ywoHwGJch8zNZIpLQZ997cyI64MyhpFx7Fyf5AcDdw0wTS2cvl1P531TR3epCVH/3EPHbn43nj7BClm9isGD3rxURfw/NIdAwremab16tsnl8OTKSBv1goCnuvVpPGDwSNb1B5VmF7zVQ80oIOp0EGiTMSeMAz1LDTwZIBzC1hU+xd8N+n2FI2GIb6w05aTob1qa6jui0aIzCe851mHS75zGTvVyzDRqDrRsmI34wvmk+H1VY1kuhHUAOLVU5c1KTNTCWhmVx2utl7yuh2vI8ss/HBYGAqJ89o7LzOqNEH1moempkuUqPKC/NhTTUkfM5Z+KjOvBQwGmUXWbMJrlpJIMf1NmOJLFVdIqrEQ3ndhvjiORjcv5IDQj5ZQ47KHm3Fwmvx9gXzucpsaO+PAIDivg9jNEQswgzdu7pqqnABZ1v/1mbR1cGp6uVRPT7PRka7R7vwLS7dejqL5WN0A5p/x+JvZeXrjvupKZo90EF5TLzLVKxynu4kwCCBdF7C18x4u2DiH4vRCjnrfdX7FFmSiOoqkGbvbsKPOFNz76eGM4glwrp0k48iJO85usn4DaYVdGRi/ANFP1gkJBh1M79F1oDAp1jGczd119xoyXoDLqgkjID6E7Gu/W0rUvCyC8Hh0rL/jUirQ9nus7tqcecpvptNuMT3grNQMyQEchibSCNxCBRZ5xAesvNvJahxO2PmckztvP9sokij6KroVkjR2EpVcddOI0T6hgWGsaaaF6ea2NDfiPMnjk/yEs5CEGfHhXHYYYGOwpDBReJLzJAaMviy/znYOsnxbWhVHra7ftQW/qqgwQzOocNoJab9lxR2Jp98J0m4VLH26xkbyjJZ/cPn7kjmSUFgYB7rNILUoBvzeEGk2ZiihMhjxhWs6VPwF8RBiybmP9rnzLmnJGsQlvGf8zmaDpitllyZODLUvm0BcU009AX6EGLy6IfXJ7XV/N78w9QuqaAWc7XxHiwDjCWRjgolj4v62LoP7blXdKTvFxrEdWMEuViAnDHaEQlZFGgPzF6MRm/59Wl194ZNcjq/jAD/uhuTX88IZtqRgdtbbUT1sHMOHTz/FkcWBnC2LFP/aTJOBvIYM0iyoEWHpprUol0mNCRyfWmA7ILg+kYC1AUVXwk9VGoTeXNCQcRQwqehhmCeD+h5Iu/U9qpuJw8zy+6EovHYrBMYEK9JUXBn1K7rFikDDXK3O1SDkzvqfvrc0pOceU5H2OXygdsUIzyYSEBE09MaWw8q2/JbZ9b3h9FcDZ0efWoKMXlk24EZAOfh+xLyg6dtk7iCBmQSggCJUbHut8Rz6McGzkJ0Bzh+iF6dg1Ob+wwEWRwN9rQfU0wKUaoEm3E7kT3UvR6tOp87jUDVlO7suaoZhe6mkNtrhHPFMd5viPeYGpbobogxjI3xawC0PMhTsVjydVZha5LA2T6OvkfYQN69XQDGVyfmh3m6JBNDKW8BiKHvhZfvRKYAAnDerGYkOqoSyICwLpUUAjKZYMFpuSYjE5/XWO2ETCcYSjonWvckpP1CcdVAaG+5kGVhu2G24Q6nwPPWYjGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGQAMABkADcAMAA3ADgANQAtAGEAOAAxADIALQA0AGIAYgAyAC0AYgA1AGEANAAtAGUAYgA5ADIAYQA4ADQAMABiAGEAZAAxMF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggNPBgkqhkiG9w0BBwGgggNABIIDPDCCAzgwggM0BgsqhkiG9w0BDAoBA6CCAwwwggMIBgoqhkiG9w0BCRYBoIIC+ASCAvQwggLwMIIB3KADAgECAhD1d2qdRhm1lEOMNQvVO7VDMAkGBSsOAwIdBQAwEzERMA8GA1UEAxMIVGVzdENlcnQwHhcNMTYwNjI5MTc0MTIwWhcNMzkxMjMxMjM1OTU5WjATMREwDwYDVQQDEwhUZXN0Q2VydDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALF6nktMamqvOBxXkuAIzYdxItr9m9MV4M2i+Qxm2Ri4tOmzmtTnu6P1sHfFz0p2IYepsJFts2QxeRfGrwKE7qwk/IXYaE8RjFhwxmCia7pqUjDisjujYoTvP1yNp1XWnjofzR10Lcob8Fx1p6FsWnaVQzWS4OA+RuipiUUGWxjLc5aS1Uottq5LDY1NEQBpR/AN8u3OC4dPFnJBv1RUoLo3DFIa4CgzPxIQA1yr6BFlpb3knUewkNJmnafRFdhfFWSOCi+0DVb2ScuMJb1n9zKvyQMxRukj+IvwNbUVJM8lSnbVoZVtK1AYlAs400rgSFGV4luP03sCRjrPyzQGAOUCAwEAAaNIMEYwRAYDVR0BBD0wO4AQRkxt5Eke37a7P2NW7iszwKEVMBMxETAPBgNVBAMTCFRlc3RDZXJ0ghD1d2qdRhm1lEOMNQvVO7VDMAkGBSsOAwIdBQADggEBABmf90zy2ajVzH6qc6LzD3dlV3h1r4gR0U3yvghdHzdySZCqRtiJMlGAzj8XtziimbvzUKrqmKMsdpwxhPrn70dXH8hJw3i0ZjY25iY6AsJAJ4D0tnnm8Bddn5tyA2IaC0ndGoYWzsFWGFcioeNs8FQ2T2za5mNN8mKQeAZetJVmYn6YYFzj9Btzl7xfnr+SEttQnfNlep1OpRfCKnLiVdCxWaoLtZxlNxy161kEQENcosdF+7L2HgSa+GC+37B8fDg8XMc54skEPeB/1udtmr/i/jRcoPd6yb0K/4wxpz6eMaB55sIApCmZIouBmUnXaLv3nevZeeVw3clRzRYDcFwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFIU1dNT51rcRzemh6df/sdBkw/zHBBQaMyWKXs+KqGKxMPShgpXMX03s8gICB9A="}}],
- "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port":
- 443}}], "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
- {"privateIPAllocationMethod": "Static", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"},
- "privateIPAddress": "10.0.0.15"}}], "httpListeners": [{"name": "appGatewayHttpListener",
- "properties": {"Protocol": "https", "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''),
- \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}, "FrontendPort": {"Id":
- "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
- "SslCertificate": {"id": "[concat(variables(\''appGwID\''), \''/sslCertificates/ag3SslCert\'')]"}}}],
- "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP", "properties": {"subnet":
+ \''ag3\'')]"}, "contentVersion": "1.0.0.0", "parameters": {}, "resources": [{"tags":
+ {}, "apiVersion": "2015-06-15", "dependsOn": [], "location": "westus", "name":
+ "ag3Vnet", "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]},
+ "subnets": [{"name": "subnet1", "properties": {"addressPrefix": "10.0.0.0/24"}}]},
+ "type": "Microsoft.Network/virtualNetworks"}, {"tags": {}, "apiVersion": "2017-09-01",
+ "dependsOn": ["Microsoft.Network/virtualNetworks/ag3Vnet"], "location": "westus",
+ "name": "ag3", "properties": {"requestRoutingRules": [{"Name": "rule1", "properties":
+ {"RuleType": "Basic", "backendAddressPool": {"id": "[concat(variables(\''appGwID\''),
+ \''/backendAddressPools/appGatewayBackendPool\'')]"}, "backendHttpSettings":
+ {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"},
+ "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"}}}],
+ "sku": {"capacity": 2, "name": "Standard_Medium", "tier": "Standard"}, "httpListeners":
+ [{"name": "appGatewayHttpListener", "properties": {"Protocol": "https", "FrontendPort":
+ {"Id": "[concat(variables(\''appGwID\''), \''/frontendPorts/appGatewayFrontendPort\'')]"},
+ "SslCertificate": {"id": "[concat(variables(\''appGwID\''), \''/sslCertificates/ag3SslCert\'')]"},
+ "FrontendIpConfiguration": {"Id": "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}}}],
+ "frontendIPConfigurations": [{"name": "appGatewayFrontendIP", "properties":
+ {"privateIPAddress": "10.0.0.15", "privateIPAllocationMethod": "Static", "subnet":
{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
- "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
+ "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port":
+ 443}}], "backendAddressPools": [{"name": "appGatewayBackendPool"}], "backendHttpSettingsCollection":
[{"name": "appGatewayBackendHttpSettings", "properties": {"Protocol": "Http",
- "CookieBasedAffinity": "disabled", "connectionDraining": {"enabled": false,
- "drainTimeoutInSec": 1}, "Port": 80}}]}}], "parameters": {}, "contentVersion":
- "1.0.0.0"}}}'''
+ "connectionDraining": {"enabled": false, "drainTimeoutInSec": 1}, "Port": 80,
+ "CookieBasedAffinity": "disabled"}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP",
+ "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
+ "sslCertificates": [{"name": "ag3SslCert", "properties": {"data": "MIIJuwIBAzCCCXcGCSqGSIb3DQEHAaCCCWgEgglkMIIJYDCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhXEBfBWkIAigICB9AEggTY4EM/sz3ldecsIvpg3F/ymL4YqRboZbvA4LwwdTC1fuOwcxs4sJ/b3OPDwiWqEE9GinOh7+Kr1dVpH1lff+d8B/ZIM8qTC/ywoHwGJch8zNZIpLQZ997cyI64MyhpFx7Fyf5AcDdw0wTS2cvl1P531TR3epCVH/3EPHbn43nj7BClm9isGD3rxURfw/NIdAwremab16tsnl8OTKSBv1goCnuvVpPGDwSNb1B5VmF7zVQ80oIOp0EGiTMSeMAz1LDTwZIBzC1hU+xd8N+n2FI2GIb6w05aTob1qa6jui0aIzCe851mHS75zGTvVyzDRqDrRsmI34wvmk+H1VY1kuhHUAOLVU5c1KTNTCWhmVx2utl7yuh2vI8ss/HBYGAqJ89o7LzOqNEH1moempkuUqPKC/NhTTUkfM5Z+KjOvBQwGmUXWbMJrlpJIMf1NmOJLFVdIqrEQ3ndhvjiORjcv5IDQj5ZQ47KHm3Fwmvx9gXzucpsaO+PAIDivg9jNEQswgzdu7pqqnABZ1v/1mbR1cGp6uVRPT7PRka7R7vwLS7dejqL5WN0A5p/x+JvZeXrjvupKZo90EF5TLzLVKxynu4kwCCBdF7C18x4u2DiH4vRCjnrfdX7FFmSiOoqkGbvbsKPOFNz76eGM4glwrp0k48iJO85usn4DaYVdGRi/ANFP1gkJBh1M79F1oDAp1jGczd119xoyXoDLqgkjID6E7Gu/W0rUvCyC8Hh0rL/jUirQ9nus7tqcecpvptNuMT3grNQMyQEchibSCNxCBRZ5xAesvNvJahxO2PmckztvP9sokij6KroVkjR2EpVcddOI0T6hgWGsaaaF6ea2NDfiPMnjk/yEs5CEGfHhXHYYYGOwpDBReJLzJAaMviy/znYOsnxbWhVHra7ftQW/qqgwQzOocNoJab9lxR2Jp98J0m4VLH26xkbyjJZ/cPn7kjmSUFgYB7rNILUoBvzeEGk2ZiihMhjxhWs6VPwF8RBiybmP9rnzLmnJGsQlvGf8zmaDpitllyZODLUvm0BcU009AX6EGLy6IfXJ7XV/N78w9QuqaAWc7XxHiwDjCWRjgolj4v62LoP7blXdKTvFxrEdWMEuViAnDHaEQlZFGgPzF6MRm/59Wl194ZNcjq/jAD/uhuTX88IZtqRgdtbbUT1sHMOHTz/FkcWBnC2LFP/aTJOBvIYM0iyoEWHpprUol0mNCRyfWmA7ILg+kYC1AUVXwk9VGoTeXNCQcRQwqehhmCeD+h5Iu/U9qpuJw8zy+6EovHYrBMYEK9JUXBn1K7rFikDDXK3O1SDkzvqfvrc0pOceU5H2OXygdsUIzyYSEBE09MaWw8q2/JbZ9b3h9FcDZ0efWoKMXlk24EZAOfh+xLyg6dtk7iCBmQSggCJUbHut8Rz6McGzkJ0Bzh+iF6dg1Ob+wwEWRwN9rQfU0wKUaoEm3E7kT3UvR6tOp87jUDVlO7suaoZhe6mkNtrhHPFMd5viPeYGpbobogxjI3xawC0PMhTsVjydVZha5LA2T6OvkfYQN69XQDGVyfmh3m6JBNDKW8BiKHvhZfvRKYAAnDerGYkOqoSyICwLpUUAjKZYMFpuSYjE5/XWO2ETCcYSjonWvckpP1CcdVAaG+5kGVhu2G24Q6nwPPWYjGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGQAMABkADcAMAA3ADgANQAtAGEAOAAxADIALQA0AGIAYgAyAC0AYgA1AGEANAAtAGUAYgA5ADIAYQA4ADQAMABiAGEAZAAxMF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggNPBgkqhkiG9w0BBwGgggNABIIDPDCCAzgwggM0BgsqhkiG9w0BDAoBA6CCAwwwggMIBgoqhkiG9w0BCRYBoIIC+ASCAvQwggLwMIIB3KADAgECAhD1d2qdRhm1lEOMNQvVO7VDMAkGBSsOAwIdBQAwEzERMA8GA1UEAxMIVGVzdENlcnQwHhcNMTYwNjI5MTc0MTIwWhcNMzkxMjMxMjM1OTU5WjATMREwDwYDVQQDEwhUZXN0Q2VydDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALF6nktMamqvOBxXkuAIzYdxItr9m9MV4M2i+Qxm2Ri4tOmzmtTnu6P1sHfFz0p2IYepsJFts2QxeRfGrwKE7qwk/IXYaE8RjFhwxmCia7pqUjDisjujYoTvP1yNp1XWnjofzR10Lcob8Fx1p6FsWnaVQzWS4OA+RuipiUUGWxjLc5aS1Uottq5LDY1NEQBpR/AN8u3OC4dPFnJBv1RUoLo3DFIa4CgzPxIQA1yr6BFlpb3knUewkNJmnafRFdhfFWSOCi+0DVb2ScuMJb1n9zKvyQMxRukj+IvwNbUVJM8lSnbVoZVtK1AYlAs400rgSFGV4luP03sCRjrPyzQGAOUCAwEAAaNIMEYwRAYDVR0BBD0wO4AQRkxt5Eke37a7P2NW7iszwKEVMBMxETAPBgNVBAMTCFRlc3RDZXJ0ghD1d2qdRhm1lEOMNQvVO7VDMAkGBSsOAwIdBQADggEBABmf90zy2ajVzH6qc6LzD3dlV3h1r4gR0U3yvghdHzdySZCqRtiJMlGAzj8XtziimbvzUKrqmKMsdpwxhPrn70dXH8hJw3i0ZjY25iY6AsJAJ4D0tnnm8Bddn5tyA2IaC0ndGoYWzsFWGFcioeNs8FQ2T2za5mNN8mKQeAZetJVmYn6YYFzj9Btzl7xfnr+SEttQnfNlep1OpRfCKnLiVdCxWaoLtZxlNxy161kEQENcosdF+7L2HgSa+GC+37B8fDg8XMc54skEPeB/1udtmr/i/jRcoPd6yb0K/4wxpz6eMaB55sIApCmZIouBmUnXaLv3nevZeeVw3clRzRYDcFwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFIU1dNT51rcRzemh6df/sdBkw/zHBBQaMyWKXs+KqGKxMPShgpXMX03s8gICB9A=",
+ "password": "password"}}]}, "type": "Microsoft.Network/applicationGateways"}],
+ "outputs": {"applicationGateway": {"value": "[reference(\''ag3\'')]", "type":
+ "object"}}}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['6286']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_private_ip000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_HuEwTKb6YQVaVEovOPpwYIlDiM0SUw6g","name":"ag_deploy_HuEwTKb6YQVaVEovOPpwYIlDiM0SUw6g","properties":{"templateHash":"4505108101886068873","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:35:37.8715492Z","duration":"PT0.6087444S","correlationId":"49acd7d7-32f0-48c5-9cbb-df0bf8dd8114","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag3Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag3"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pfDVbDY2agfdID1ezlK2OE9b3oixc8wa","name":"ag_deploy_pfDVbDY2agfdID1ezlK2OE9b3oixc8wa","properties":{"templateHash":"5379900300405328346","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T20:14:00.7899428Z","duration":"PT1.2300091S","correlationId":"21af08cb-0556-4ae4-93e7-ce1da7bbae2e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"ag3Vnet"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3","resourceType":"Microsoft.Network/applicationGateways","resourceName":"ag3"}]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_private_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_HuEwTKb6YQVaVEovOPpwYIlDiM0SUw6g/operationStatuses/08586957715482148115?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_private_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pfDVbDY2agfdID1ezlK2OE9b3oixc8wa/operationStatuses/08586934220459263541?api-version=2017-05-10']
cache-control: [no-cache]
content-length: ['1309']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:37 GMT']
+ date: ['Mon, 16 Oct 2017 20:14:01 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
@@ -158,7 +158,7 @@ interactions:
cache-control: [no-cache]
content-length: ['220']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:37 GMT']
+ date: ['Mon, 16 Oct 2017 20:14:01 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -169,32 +169,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\
\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -202,7 +202,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -211,21 +211,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -236,7 +236,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -249,7 +249,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -263,8 +263,8 @@ interactions:
cache-control: [no-cache]
content-length: ['9611']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:08 GMT']
- etag: [W/"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7"]
+ date: ['Mon, 16 Oct 2017 20:14:31 GMT']
+ etag: [W/"3ed276e5-1137-4938-87ab-a5984952f41e"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -277,32 +277,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\
\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -310,7 +310,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -319,21 +319,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -344,7 +344,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -357,7 +357,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -371,8 +371,8 @@ interactions:
cache-control: [no-cache]
content-length: ['9611']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:08 GMT']
- etag: [W/"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7"]
+ date: ['Mon, 16 Oct 2017 20:14:32 GMT']
+ etag: [W/"3ed276e5-1137-4938-87ab-a5984952f41e"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -385,32 +385,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\
\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -418,7 +418,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -427,21 +427,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -452,7 +452,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -465,7 +465,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3ed276e5-1137-4938-87ab-a5984952f41e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -479,8 +479,8 @@ interactions:
cache-control: [no-cache]
content-length: ['9611']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:08 GMT']
- etag: [W/"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7"]
+ date: ['Mon, 16 Oct 2017 20:14:32 GMT']
+ etag: [W/"3ed276e5-1137-4938-87ab-a5984952f41e"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -489,76 +489,74 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3",
- "tags": {}, "properties": {"requestRoutingRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1",
- "name": "rule1", "properties": {"httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener"},
- "provisioningState": "Updating", "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool"},
- "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "ruleType": "Basic"}, "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\""}],
- "provisioningState": "Updating", "sku": {"name": "Standard_Medium", "capacity":
- 2, "tier": "Standard"}, "sslCertificates": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert",
- "name": "ag3SslCert", "properties": {"password": "password", "publicCertData":
- "", "provisioningState": "Updating", "data": "MIIKiQIBAzCCCk8GCSqGSIb3DQEHAaCCCkAEggo8MIIKODCCBO8GCSqGSIb3DQEHBqCCBOAwggTcAgEAMIIE1QYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIpWxHMQn3nwMCAggAgIIEqOPQ4cNTz/41hY7gS1uVf46gL7kB9BNecRpprnR2uOMoWlB8I8K3GiXAzNJyX8ry9P+HHBQoGrP1klaRsUFjiVGoGLOXWaZP2N201J1ARVfo3nm6dVm3H4gkIrsuKL9O7vKr1GSZsyFpcb7j738O4cw4W5o70pozFFLw8/2ecD2Zdq+9StN8Bf/mnPSC97Qtp0K70gT6STh9UuFEObjg+3TDjiCveqsHTLTxjdUdMMFgunl5siJ0UOnIUh9P2v9fbQwXGh5s1uE18dq4P625m8msh3nQ8RRXoC9PnL1/m2TDpWwanox5P3EaA1aQMORleS6a3BoSjyegBW6ZrA581Fa62I+WXseZ/o/CCWqw5u2fMWMsfTyUzuyEAG3hyaJan+Lq8LOfDf7ZKw2dC1IWRaQF8DNRlrf658ELeIwzydXTLsI3Rv2zhNPmQa4yTpy/FpQZtHomlSvQTZy0s7hA9JwsxQInRAtv+3Auwp5m7hofrXJyOWCrGThcN17rYDVh+vCJFxGUeWOBZ4bF7Blv95PKSNuaXYdb5XsYY+DZ7WnU0Tkdk0r1W0ZThjrUOnGG0rCClSGOKruyvmymhTQXnL8hzXjvvdbjm/nmUnZOOrr5k4gunD817MmqGmvVxxdAcdtipx6vUeJMgj40b/MU9z75ygHFZEYAtvMwh/Qtl3Qv01HyOHGDH7sT53KggcU+0IcAMCFkZOx6ZY62WjEtZeoGeaA7xbSTbLL32X9vPBC8s6l2KAJCRy7FLXT8VSpX/C+YM2w97YpCSJ0qtRqcj/U3OuazdupN/62CvnesYRk7d7W764nyTiHiPI6SrkdqBV65XiJfOalE1A0OFJlaUD+a0VBFRZa+9WffFXuUmrd0LIXSLlEJWNJtQGKk/5iNjjA5bcxZ69DTuvX3EihbzUQOLz5dAMG/FuKvjAcxJd2u0ioGFKCJeRIS9NtSXzVytaVv7f6FVEjLArER0lskvI6FnpZmOtUXaoBAlvlsHaN0sY+787dcdLs4HRm3HxLoxbLl1ygZtSEi2AL+o9PA/cGh3KdpoJz/QSoF7c40ABSZ+QbJ+PefS7ncTy0dHjch8gQbXARKn20ROdspbEGW7CGyxl6ipOTwkhi/HhBeFhKk4ofwu/Tmh6Q75QoxJDHp7BMCI4Z5+hvZZ6DmeybxonyNvpwdxR1DIScA0X4mkZSyJECRpOGIZZxKUhd3Uxv7UREgOs/xiCgdUoRUpoOunqROpgSb/WmjOtFVYyVh03emEnfZoaEyCNB1Dk5NzstdtWZhbvmZQBZv7xkcFw65SoEAsPgPfR7LIqN5sJcUY1KSUgvZXalb2qkEST8NB5IImxPr/GBxygo6FE/f21wfPpwNDUIvYBtBQmDlJpLVz8n6CExl5EEIi612is1vusvCEXf3m83SLJmJn77b2lqyaZjhs0UW00B8kVEfpSOndW/P1/D7HvrSCWsnPsqJF66BUHxdI9V89Coo7suMiOlL0PMUI3D3I5l5UKO3JkOFxJQwBy/GPTkcYKF6MlQdnhH62p3AnIynBbQw3nebBP5wT3WGCbDIRFMBtm9ramYg4KTP7qjQwPoKbRcwggVBBgkqhkiG9w0BBwGgggUyBIIFLjCCBSowggUmBgsqhkiG9w0BDAoBAqCCBO4wggTqMBwGCiqGSIb3DQEMAQMwDgQIcHIlDzfEz0wCAggABIIEyMsmW+kFfagAyQQ2z9kBF/LyvpePCVMWq4eDT09zQ6M978RBuDXMOIUz6ylfzx+JgLuwEfYTifac35NyexKxJjCWj8H0U+xwG6NoSL9bfgmv3O2EkUx/G7OLaShr8/S7Aq7rtbLVDxXMv8qO11g6td0JDSx1CN5Ibtyo2YZqpadlOSlL+qHa1BzxFfpX+Ef9pE2Gs25D4icMqskaA0M78Qst7usPqMM4YVIA94HZvBxvu07LbZJF9gFB0x6nIQDZEJSmCObFdyiTuVhDTbea2JKgERauuodkniSGU+U6++iQ70mV7cQcBy5tP5m/CiXmFmp+UnOHKN5TK7t1e6nGq+KPLkqBaH33XUX+xdy2PsTv12+4oetKLEBVumQDTvLFOUth/CzRfWseAk/CSX7H1XC9KlW9XfULNKFQ5G7Bguk9RrS/Sf94OOO8fZRLICMN/Q8MnIz+x5QIT2wXfspFs0x0DWPSpFUUXAlVpt4XLhOmsvcfRm3GMRetvGzSb3IgdtSyGekzs+nmDYAGQJKrYCKTpsRRlKt3e/My8nsKfVh4Pa9vPQgHU/KaxDeSKIsTRe0Hy2t9WMF8US+LbjMjCRqazWUkVwQzbYq4FXjs7QYeiHx9Mo7jVacnjqyFMaWTx8czQo7QYSfbL5+YxJJR/iuHBrLIdR1L5MHa8S3VE3I5U5wrAEoCcqtc8HRmOwX2vhEDMRzz/jmrmyQ4l4EliCTG6fQV8aOfljj3zgvPahaTf9lfx1AjhD+x2ZjgjamLtYdNAUIYgMo3wo+qjh6QUA8gxcGoUv6d3Q8INBAJgiNLGSscs/omdU4EZ+l+3QUgQzfBmKltxuW472+tEbRkucR7Myci/UacdLhs38xGcnpaKh68J/SQ3q9jqKi8coGSQFOTNoHVcVVk/XmvpP+Hd6YMOfwmWdiSzhCEM70zWd7jXNK/PDfpXgncQf7GRTgxxGE9CejERaoScy+hypGWhtNARwZCpJk/joEWRd5gQDOqZS7uTgXRxgUkhgngiYAkGqTwW/x2iItXeU/A03vazLK8wch2/cz04Gh8RPQIWDK0n3APNY/OuoqzxYfIEaORwZh8PpGJsxGWI5sqTMKVuI3EndQj32SbWMry2vCixuDz6mYUkzyCmCUtkxWvGaS1iotIl7fHGL/kvOJSPI3te/Kc3SAGRHYaYSkYvi3D15/6Z/yw12vJWy3Q6XwlYvgYiTJuBUtOXanvvckXwzBAEA9gqiYovF5Ebs3CLbeFkBaD8dj9g2PpWr39qVRwUCqMRz7RF/g1+r638NfoVnLG7/QKppsfaC5b404jIUHfKqH6m55T6ivwhV102c0wwulmsdT9O2/BlhB1eUpJD5t5J3x475zeP4ReC5EH/2/wy3nc+cx+CdsPtyufpNj3nCTq0REB455OthLRLWRMj7iUwQnsodQvzqEvfOKsZPfV0DXbdvH9QDrte2jIyMCV2SKcw2idwaETghfMl34ifAXWkqsD0gFNLhtdwsFwaHMHGaI87AewmzxHptqcQiiLQkPnlRDHy7k8SPxasD4K05tC8nEQHzDnREPdkEncYqztF39l0nEtaxxphDWmFWGfcZZgfM8rEz+mIBOMGjmZL098i8so7ZxRmeNlizElMCMGCSqGSIb3DQEJFTEWBBRu6e5XeVt2l1MEKSdEQ+zgY8oXzTAxMCEwCQYFKw4DAhoFAAQUESCBobdy+D6h9P96kWPsxzgJ78wECHPJpxxkog9ZAgIIAA=="},
- "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\""}], "frontendPorts": [{"id":
+ body: 'b''{"tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3",
+ "location": "westus", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"",
+ "properties": {"probes": [], "sku": {"capacity": 2, "name": "Standard_Medium",
+ "tier": "Standard"}, "provisioningState": "Updating", "frontendPorts": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort",
- "name": "appGatewayFrontendPort", "properties": {"provisioningState": "Updating",
- "port": 443}, "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\""}], "redirectConfigurations":
- [], "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP",
- "name": "appGatewayFrontendIP", "properties": {"provisioningState": "Updating",
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}},
- "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\""}], "probes": [], "frontendIPConfigurations":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP",
- "name": "appGatewayFrontendIP", "properties": {"privateIPAllocationMethod":
- "Static", "provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"},
- "privateIPAddress": "10.0.0.15"}, "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\""}],
+ "name": "appGatewayFrontendPort", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"",
+ "properties": {"port": 443, "provisioningState": "Updating"}}], "requestRoutingRules":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1",
+ "name": "rule1", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"", "properties":
+ {"backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool"},
+ "ruleType": "Basic", "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
+ "provisioningState": "Updating", "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener"}}}],
+ "redirectConfigurations": [], "resourceGuid": "ca6ff436-1ec3-4c94-a255-fab993b8b33b",
+ "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"",
+ "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
+ "urlPathMaps": [], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener",
+ "name": "appGatewayHttpListener", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"},
+ "provisioningState": "Updating", "protocol": "Https", "sslCertificate": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert"},
+ "requireServerNameIndication": false, "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort"}}}],
+ "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"",
+ "properties": {"privateIPAddress": "10.0.0.15", "privateIPAllocationMethod":
+ "Static", "provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
"backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool",
- "name": "appGatewayBackendPool", "properties": {"backendAddresses": [], "provisioningState":
- "Updating"}, "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\""}], "resourceGuid":
- "f2bd5290-eefb-44f2-a85e-a315e12dd390", "backendHttpSettingsCollection": [{"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "name": "appGatewayBackendHttpSettings", "properties": {"pickHostNameFromBackendAddress":
- false, "provisioningState": "Updating", "requestTimeout": 30, "protocol": "Http",
- "cookieBasedAffinity": "Disabled", "port": 80, "connectionDraining": {"enabled":
- false, "drainTimeoutInSec": 1}}, "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\""}],
- "authenticationCertificates": [], "urlPathMaps": [], "httpListeners": [{"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener",
- "name": "appGatewayHttpListener", "properties": {"frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"},
- "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort"},
- "protocol": "Https", "provisioningState": "Updating", "requireServerNameIndication":
- false, "sslCertificate": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert"}},
- "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\""}]}, "etag": "W/\\"31b74135-4e3d-45ae-94b8-6f4dcdd0a1b7\\"",
- "location": "westus"}'''
+ "name": "appGatewayBackendPool", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"",
+ "properties": {"provisioningState": "Updating", "backendAddresses": []}}], "authenticationCertificates":
+ [], "backendHttpSettingsCollection": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
+ "name": "appGatewayBackendHttpSettings", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"",
+ "properties": {"connectionDraining": {"enabled": false, "drainTimeoutInSec":
+ 1}, "port": 80, "provisioningState": "Updating", "protocol": "Http", "cookieBasedAffinity":
+ "Disabled", "requestTimeout": 30, "pickHostNameFromBackendAddress": false}}],
+ "sslCertificates": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert",
+ "name": "ag3SslCert", "etag": "W/\\"3ed276e5-1137-4938-87ab-a5984952f41e\\"",
+ "properties": {"data": "MIIKiQIBAzCCCk8GCSqGSIb3DQEHAaCCCkAEggo8MIIKODCCBO8GCSqGSIb3DQEHBqCCBOAwggTcAgEAMIIE1QYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIpWxHMQn3nwMCAggAgIIEqOPQ4cNTz/41hY7gS1uVf46gL7kB9BNecRpprnR2uOMoWlB8I8K3GiXAzNJyX8ry9P+HHBQoGrP1klaRsUFjiVGoGLOXWaZP2N201J1ARVfo3nm6dVm3H4gkIrsuKL9O7vKr1GSZsyFpcb7j738O4cw4W5o70pozFFLw8/2ecD2Zdq+9StN8Bf/mnPSC97Qtp0K70gT6STh9UuFEObjg+3TDjiCveqsHTLTxjdUdMMFgunl5siJ0UOnIUh9P2v9fbQwXGh5s1uE18dq4P625m8msh3nQ8RRXoC9PnL1/m2TDpWwanox5P3EaA1aQMORleS6a3BoSjyegBW6ZrA581Fa62I+WXseZ/o/CCWqw5u2fMWMsfTyUzuyEAG3hyaJan+Lq8LOfDf7ZKw2dC1IWRaQF8DNRlrf658ELeIwzydXTLsI3Rv2zhNPmQa4yTpy/FpQZtHomlSvQTZy0s7hA9JwsxQInRAtv+3Auwp5m7hofrXJyOWCrGThcN17rYDVh+vCJFxGUeWOBZ4bF7Blv95PKSNuaXYdb5XsYY+DZ7WnU0Tkdk0r1W0ZThjrUOnGG0rCClSGOKruyvmymhTQXnL8hzXjvvdbjm/nmUnZOOrr5k4gunD817MmqGmvVxxdAcdtipx6vUeJMgj40b/MU9z75ygHFZEYAtvMwh/Qtl3Qv01HyOHGDH7sT53KggcU+0IcAMCFkZOx6ZY62WjEtZeoGeaA7xbSTbLL32X9vPBC8s6l2KAJCRy7FLXT8VSpX/C+YM2w97YpCSJ0qtRqcj/U3OuazdupN/62CvnesYRk7d7W764nyTiHiPI6SrkdqBV65XiJfOalE1A0OFJlaUD+a0VBFRZa+9WffFXuUmrd0LIXSLlEJWNJtQGKk/5iNjjA5bcxZ69DTuvX3EihbzUQOLz5dAMG/FuKvjAcxJd2u0ioGFKCJeRIS9NtSXzVytaVv7f6FVEjLArER0lskvI6FnpZmOtUXaoBAlvlsHaN0sY+787dcdLs4HRm3HxLoxbLl1ygZtSEi2AL+o9PA/cGh3KdpoJz/QSoF7c40ABSZ+QbJ+PefS7ncTy0dHjch8gQbXARKn20ROdspbEGW7CGyxl6ipOTwkhi/HhBeFhKk4ofwu/Tmh6Q75QoxJDHp7BMCI4Z5+hvZZ6DmeybxonyNvpwdxR1DIScA0X4mkZSyJECRpOGIZZxKUhd3Uxv7UREgOs/xiCgdUoRUpoOunqROpgSb/WmjOtFVYyVh03emEnfZoaEyCNB1Dk5NzstdtWZhbvmZQBZv7xkcFw65SoEAsPgPfR7LIqN5sJcUY1KSUgvZXalb2qkEST8NB5IImxPr/GBxygo6FE/f21wfPpwNDUIvYBtBQmDlJpLVz8n6CExl5EEIi612is1vusvCEXf3m83SLJmJn77b2lqyaZjhs0UW00B8kVEfpSOndW/P1/D7HvrSCWsnPsqJF66BUHxdI9V89Coo7suMiOlL0PMUI3D3I5l5UKO3JkOFxJQwBy/GPTkcYKF6MlQdnhH62p3AnIynBbQw3nebBP5wT3WGCbDIRFMBtm9ramYg4KTP7qjQwPoKbRcwggVBBgkqhkiG9w0BBwGgggUyBIIFLjCCBSowggUmBgsqhkiG9w0BDAoBAqCCBO4wggTqMBwGCiqGSIb3DQEMAQMwDgQIcHIlDzfEz0wCAggABIIEyMsmW+kFfagAyQQ2z9kBF/LyvpePCVMWq4eDT09zQ6M978RBuDXMOIUz6ylfzx+JgLuwEfYTifac35NyexKxJjCWj8H0U+xwG6NoSL9bfgmv3O2EkUx/G7OLaShr8/S7Aq7rtbLVDxXMv8qO11g6td0JDSx1CN5Ibtyo2YZqpadlOSlL+qHa1BzxFfpX+Ef9pE2Gs25D4icMqskaA0M78Qst7usPqMM4YVIA94HZvBxvu07LbZJF9gFB0x6nIQDZEJSmCObFdyiTuVhDTbea2JKgERauuodkniSGU+U6++iQ70mV7cQcBy5tP5m/CiXmFmp+UnOHKN5TK7t1e6nGq+KPLkqBaH33XUX+xdy2PsTv12+4oetKLEBVumQDTvLFOUth/CzRfWseAk/CSX7H1XC9KlW9XfULNKFQ5G7Bguk9RrS/Sf94OOO8fZRLICMN/Q8MnIz+x5QIT2wXfspFs0x0DWPSpFUUXAlVpt4XLhOmsvcfRm3GMRetvGzSb3IgdtSyGekzs+nmDYAGQJKrYCKTpsRRlKt3e/My8nsKfVh4Pa9vPQgHU/KaxDeSKIsTRe0Hy2t9WMF8US+LbjMjCRqazWUkVwQzbYq4FXjs7QYeiHx9Mo7jVacnjqyFMaWTx8czQo7QYSfbL5+YxJJR/iuHBrLIdR1L5MHa8S3VE3I5U5wrAEoCcqtc8HRmOwX2vhEDMRzz/jmrmyQ4l4EliCTG6fQV8aOfljj3zgvPahaTf9lfx1AjhD+x2ZjgjamLtYdNAUIYgMo3wo+qjh6QUA8gxcGoUv6d3Q8INBAJgiNLGSscs/omdU4EZ+l+3QUgQzfBmKltxuW472+tEbRkucR7Myci/UacdLhs38xGcnpaKh68J/SQ3q9jqKi8coGSQFOTNoHVcVVk/XmvpP+Hd6YMOfwmWdiSzhCEM70zWd7jXNK/PDfpXgncQf7GRTgxxGE9CejERaoScy+hypGWhtNARwZCpJk/joEWRd5gQDOqZS7uTgXRxgUkhgngiYAkGqTwW/x2iItXeU/A03vazLK8wch2/cz04Gh8RPQIWDK0n3APNY/OuoqzxYfIEaORwZh8PpGJsxGWI5sqTMKVuI3EndQj32SbWMry2vCixuDz6mYUkzyCmCUtkxWvGaS1iotIl7fHGL/kvOJSPI3te/Kc3SAGRHYaYSkYvi3D15/6Z/yw12vJWy3Q6XwlYvgYiTJuBUtOXanvvckXwzBAEA9gqiYovF5Ebs3CLbeFkBaD8dj9g2PpWr39qVRwUCqMRz7RF/g1+r638NfoVnLG7/QKppsfaC5b404jIUHfKqH6m55T6ivwhV102c0wwulmsdT9O2/BlhB1eUpJD5t5J3x475zeP4ReC5EH/2/wy3nc+cx+CdsPtyufpNj3nCTq0REB455OthLRLWRMj7iUwQnsodQvzqEvfOKsZPfV0DXbdvH9QDrte2jIyMCV2SKcw2idwaETghfMl34ifAXWkqsD0gFNLhtdwsFwaHMHGaI87AewmzxHptqcQiiLQkPnlRDHy7k8SPxasD4K05tC8nEQHzDnREPdkEncYqztF39l0nEtaxxphDWmFWGfcZZgfM8rEz+mIBOMGjmZL098i8so7ZxRmeNlizElMCMGCSqGSIb3DQEJFTEWBBRu6e5XeVt2l1MEKSdEQ+zgY8oXzTAxMCEwCQYFKw4DAhoFAAQUESCBobdy+D6h9P96kWPsxzgJ78wECHPJpxxkog9ZAgIIAA==",
+ "password": "password", "publicCertData": "", "provisioningState": "Updating"}}]}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['9923']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\
\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -566,7 +564,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -575,21 +573,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -600,7 +598,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -613,7 +611,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"74551971-3a2a-4565-bf50-24ea3e439f28\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"750cbbfb-e816-4d1d-8482-b9d60adcd48a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -624,11 +622,11 @@ interactions:
\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [],\r\
\n \"redirectConfigurations\": []\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['9611']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:09 GMT']
+ date: ['Mon, 16 Oct 2017 20:14:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -642,106 +640,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:40 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:50 GMT']
+ date: ['Mon, 16 Oct 2017 20:14:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -754,22 +668,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:00 GMT']
+ date: ['Mon, 16 Oct 2017 20:14:54 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -782,22 +696,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:11 GMT']
+ date: ['Mon, 16 Oct 2017 20:15:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -810,22 +724,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:21 GMT']
+ date: ['Mon, 16 Oct 2017 20:15:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -838,22 +752,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:30 GMT']
+ date: ['Mon, 16 Oct 2017 20:15:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -866,22 +780,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:41 GMT']
+ date: ['Mon, 16 Oct 2017 20:15:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -894,22 +808,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:51 GMT']
+ date: ['Mon, 16 Oct 2017 20:15:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -922,22 +836,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:01 GMT']
+ date: ['Mon, 16 Oct 2017 20:15:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -950,22 +864,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:12 GMT']
+ date: ['Mon, 16 Oct 2017 20:16:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -978,22 +892,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:22 GMT']
+ date: ['Mon, 16 Oct 2017 20:16:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1006,22 +920,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:32 GMT']
+ date: ['Mon, 16 Oct 2017 20:16:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1034,22 +948,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:43 GMT']
+ date: ['Mon, 16 Oct 2017 20:16:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1062,22 +976,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:53 GMT']
+ date: ['Mon, 16 Oct 2017 20:16:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1090,22 +1004,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:03 GMT']
+ date: ['Mon, 16 Oct 2017 20:16:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1118,22 +1032,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:13 GMT']
+ date: ['Mon, 16 Oct 2017 20:17:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1146,22 +1060,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:23 GMT']
+ date: ['Mon, 16 Oct 2017 20:17:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1174,22 +1088,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:34 GMT']
+ date: ['Mon, 16 Oct 2017 20:17:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1202,22 +1116,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:44 GMT']
+ date: ['Mon, 16 Oct 2017 20:17:40 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1230,22 +1144,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:54 GMT']
+ date: ['Mon, 16 Oct 2017 20:17:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1258,22 +1172,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:04 GMT']
+ date: ['Mon, 16 Oct 2017 20:18:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1286,22 +1200,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:15 GMT']
+ date: ['Mon, 16 Oct 2017 20:18:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1314,22 +1228,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:25 GMT']
+ date: ['Mon, 16 Oct 2017 20:18:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1342,22 +1256,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:35 GMT']
+ date: ['Mon, 16 Oct 2017 20:18:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1370,22 +1284,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:46 GMT']
+ date: ['Mon, 16 Oct 2017 20:18:43 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1398,22 +1312,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:56 GMT']
+ date: ['Mon, 16 Oct 2017 20:18:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1426,22 +1340,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:06 GMT']
+ date: ['Mon, 16 Oct 2017 20:19:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1454,22 +1368,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:16 GMT']
+ date: ['Mon, 16 Oct 2017 20:19:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1482,22 +1396,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:27 GMT']
+ date: ['Mon, 16 Oct 2017 20:19:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1510,22 +1424,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:37 GMT']
+ date: ['Mon, 16 Oct 2017 20:19:34 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1538,22 +1452,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:47 GMT']
+ date: ['Mon, 16 Oct 2017 20:19:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1566,22 +1480,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:58 GMT']
+ date: ['Mon, 16 Oct 2017 20:19:55 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1594,22 +1508,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:08 GMT']
+ date: ['Mon, 16 Oct 2017 20:20:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1622,22 +1536,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:18 GMT']
+ date: ['Mon, 16 Oct 2017 20:20:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1650,22 +1564,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:28 GMT']
+ date: ['Mon, 16 Oct 2017 20:20:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1678,22 +1592,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:39 GMT']
+ date: ['Mon, 16 Oct 2017 20:20:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1706,22 +1620,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:49 GMT']
+ date: ['Mon, 16 Oct 2017 20:20:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1734,22 +1648,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:59 GMT']
+ date: ['Mon, 16 Oct 2017 20:20:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1762,22 +1676,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:09 GMT']
+ date: ['Mon, 16 Oct 2017 20:21:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1790,22 +1704,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:20 GMT']
+ date: ['Mon, 16 Oct 2017 20:21:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1818,22 +1732,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:30 GMT']
+ date: ['Mon, 16 Oct 2017 20:21:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1846,22 +1760,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:41 GMT']
+ date: ['Mon, 16 Oct 2017 20:21:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1874,22 +1788,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:51 GMT']
+ date: ['Mon, 16 Oct 2017 20:21:49 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1902,22 +1816,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:01 GMT']
+ date: ['Mon, 16 Oct 2017 20:21:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1930,22 +1844,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:12 GMT']
+ date: ['Mon, 16 Oct 2017 20:22:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1958,22 +1872,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:22 GMT']
+ date: ['Mon, 16 Oct 2017 20:22:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1986,22 +1900,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:32 GMT']
+ date: ['Mon, 16 Oct 2017 20:22:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2014,22 +1928,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:42 GMT']
+ date: ['Mon, 16 Oct 2017 20:22:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2042,22 +1956,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:53 GMT']
+ date: ['Mon, 16 Oct 2017 20:22:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2070,22 +1984,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:03 GMT']
+ date: ['Mon, 16 Oct 2017 20:23:02 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2098,22 +2012,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:13 GMT']
+ date: ['Mon, 16 Oct 2017 20:23:12 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2126,22 +2040,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:24 GMT']
+ date: ['Mon, 16 Oct 2017 20:23:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2154,22 +2068,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:33 GMT']
+ date: ['Mon, 16 Oct 2017 20:23:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2182,22 +2096,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:44 GMT']
+ date: ['Mon, 16 Oct 2017 20:23:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2210,22 +2124,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:55 GMT']
+ date: ['Mon, 16 Oct 2017 20:23:55 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2238,22 +2152,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:05 GMT']
+ date: ['Mon, 16 Oct 2017 20:24:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2266,22 +2180,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:15 GMT']
+ date: ['Mon, 16 Oct 2017 20:24:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2294,22 +2208,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:25 GMT']
+ date: ['Mon, 16 Oct 2017 20:24:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2322,22 +2236,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:36 GMT']
+ date: ['Mon, 16 Oct 2017 20:24:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2350,22 +2264,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:46 GMT']
+ date: ['Mon, 16 Oct 2017 20:24:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2378,22 +2292,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:57 GMT']
+ date: ['Mon, 16 Oct 2017 20:24:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2406,22 +2320,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:06 GMT']
+ date: ['Mon, 16 Oct 2017 20:25:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2434,22 +2348,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:18 GMT']
+ date: ['Mon, 16 Oct 2017 20:25:19 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2462,22 +2376,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:27 GMT']
+ date: ['Mon, 16 Oct 2017 20:25:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2490,22 +2404,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:37 GMT']
+ date: ['Mon, 16 Oct 2017 20:25:40 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2518,22 +2432,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:48 GMT']
+ date: ['Mon, 16 Oct 2017 20:25:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2546,22 +2460,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:58 GMT']
+ date: ['Mon, 16 Oct 2017 20:26:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2574,22 +2488,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:09 GMT']
+ date: ['Mon, 16 Oct 2017 20:26:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2602,22 +2516,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:19 GMT']
+ date: ['Mon, 16 Oct 2017 20:26:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2630,22 +2544,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:29 GMT']
+ date: ['Mon, 16 Oct 2017 20:26:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2658,22 +2572,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:39 GMT']
+ date: ['Mon, 16 Oct 2017 20:26:43 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2686,22 +2600,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:50 GMT']
+ date: ['Mon, 16 Oct 2017 20:26:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2714,22 +2628,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:00 GMT']
+ date: ['Mon, 16 Oct 2017 20:27:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2742,22 +2656,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:11 GMT']
+ date: ['Mon, 16 Oct 2017 20:27:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2770,22 +2684,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:20 GMT']
+ date: ['Mon, 16 Oct 2017 20:27:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2798,22 +2712,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:31 GMT']
+ date: ['Mon, 16 Oct 2017 20:27:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2826,22 +2740,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:41 GMT']
+ date: ['Mon, 16 Oct 2017 20:27:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2854,22 +2768,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:52 GMT']
+ date: ['Mon, 16 Oct 2017 20:27:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2882,22 +2796,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:02 GMT']
+ date: ['Mon, 16 Oct 2017 20:28:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2910,22 +2824,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:12 GMT']
+ date: ['Mon, 16 Oct 2017 20:28:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2938,22 +2852,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:23 GMT']
+ date: ['Mon, 16 Oct 2017 20:28:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2966,22 +2880,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:33 GMT']
+ date: ['Mon, 16 Oct 2017 20:28:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2994,22 +2908,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:43 GMT']
+ date: ['Mon, 16 Oct 2017 20:28:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3022,22 +2936,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:53 GMT']
+ date: ['Mon, 16 Oct 2017 20:29:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3050,22 +2964,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:04 GMT']
+ date: ['Mon, 16 Oct 2017 20:29:12 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3078,22 +2992,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:14 GMT']
+ date: ['Mon, 16 Oct 2017 20:29:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3106,22 +3020,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:24 GMT']
+ date: ['Mon, 16 Oct 2017 20:29:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3134,22 +3048,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:34 GMT']
+ date: ['Mon, 16 Oct 2017 20:29:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3162,22 +3076,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:45 GMT']
+ date: ['Mon, 16 Oct 2017 20:29:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3190,22 +3104,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:55 GMT']
+ date: ['Mon, 16 Oct 2017 20:30:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3218,22 +3132,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:05 GMT']
+ date: ['Mon, 16 Oct 2017 20:30:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3246,22 +3160,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:16 GMT']
+ date: ['Mon, 16 Oct 2017 20:30:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3274,22 +3188,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:26 GMT']
+ date: ['Mon, 16 Oct 2017 20:30:34 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3302,22 +3216,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:36 GMT']
+ date: ['Mon, 16 Oct 2017 20:30:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3330,22 +3244,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:47 GMT']
+ date: ['Mon, 16 Oct 2017 20:30:54 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3358,22 +3272,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:57 GMT']
+ date: ['Mon, 16 Oct 2017 20:31:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3386,22 +3300,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:07 GMT']
+ date: ['Mon, 16 Oct 2017 20:31:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3414,22 +3328,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:18 GMT']
+ date: ['Mon, 16 Oct 2017 20:31:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3442,22 +3356,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:28 GMT']
+ date: ['Mon, 16 Oct 2017 20:31:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3470,22 +3384,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2fb69bd-8bff-4158-8b83-71fe7356f457?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cacd156-4b51-412b-9919-6b6287e77931?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:38 GMT']
+ date: ['Mon, 16 Oct 2017 20:31:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3498,32 +3412,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-cert update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -3532,7 +3446,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -3541,21 +3455,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -3566,7 +3480,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -3579,7 +3493,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -3593,8 +3507,8 @@ interactions:
cache-control: [no-cache]
content-length: ['11148']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:38 GMT']
- etag: [W/"d229601b-11cd-4ed4-adf8-60cccd708deb"]
+ date: ['Mon, 16 Oct 2017 20:31:47 GMT']
+ etag: [W/"49e3f872-0237-44fd-bd25-739272ddb036"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3607,32 +3521,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -3641,7 +3555,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -3650,21 +3564,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -3675,7 +3589,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -3688,7 +3602,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -3702,8 +3616,8 @@ interactions:
cache-control: [no-cache]
content-length: ['11148']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:38 GMT']
- etag: [W/"d229601b-11cd-4ed4-adf8-60cccd708deb"]
+ date: ['Mon, 16 Oct 2017 20:31:48 GMT']
+ etag: [W/"49e3f872-0237-44fd-bd25-739272ddb036"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3716,32 +3630,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy set]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -3750,7 +3664,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -3759,21 +3673,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -3784,7 +3698,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -3797,7 +3711,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"49e3f872-0237-44fd-bd25-739272ddb036\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -3811,8 +3725,8 @@ interactions:
cache-control: [no-cache]
content-length: ['11148']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:38 GMT']
- etag: [W/"d229601b-11cd-4ed4-adf8-60cccd708deb"]
+ date: ['Mon, 16 Oct 2017 20:31:48 GMT']
+ etag: [W/"49e3f872-0237-44fd-bd25-739272ddb036"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3821,75 +3735,75 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3",
- "tags": {}, "properties": {"requestRoutingRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1",
- "name": "rule1", "properties": {"httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener"},
- "provisioningState": "Succeeded", "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool"},
- "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "ruleType": "Basic"}, "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\""}],
- "provisioningState": "Succeeded", "sku": {"name": "Standard_Medium", "capacity":
- 2, "tier": "Standard"}, "sslCertificates": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert",
- "name": "ag3SslCert", "properties": {"publicCertData": "MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==",
- "provisioningState": "Succeeded"}, "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\""}],
- "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort",
- "name": "appGatewayFrontendPort", "properties": {"provisioningState": "Succeeded",
- "port": 443}, "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\""}], "redirectConfigurations":
- [], "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP",
- "name": "appGatewayFrontendIP", "properties": {"provisioningState": "Succeeded",
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}},
- "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\""}], "probes": [], "frontendIPConfigurations":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP",
- "name": "appGatewayFrontendIP", "properties": {"privateIPAllocationMethod":
- "Static", "provisioningState": "Succeeded", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"},
- "privateIPAddress": "10.0.0.15"}, "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\""}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool",
- "name": "appGatewayBackendPool", "properties": {"backendAddresses": [], "provisioningState":
- "Succeeded"}, "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\""}], "sslPolicy":
- {"disabledSslProtocols": ["TLSv1_0", "TLSv1_1"]}, "resourceGuid": "f2bd5290-eefb-44f2-a85e-a315e12dd390",
- "backendHttpSettingsCollection": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "name": "appGatewayBackendHttpSettings", "properties": {"pickHostNameFromBackendAddress":
- false, "provisioningState": "Succeeded", "requestTimeout": 30, "protocol": "Http",
- "cookieBasedAffinity": "Disabled", "port": 80, "connectionDraining": {"enabled":
- false, "drainTimeoutInSec": 1}}, "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\""}],
- "authenticationCertificates": [], "urlPathMaps": [], "httpListeners": [{"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener",
- "name": "appGatewayHttpListener", "properties": {"frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"},
- "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort"},
- "protocol": "Https", "provisioningState": "Succeeded", "requireServerNameIndication":
- false, "sslCertificate": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert"}},
- "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\""}]}, "etag": "W/\\"d229601b-11cd-4ed4-adf8-60cccd708deb\\"",
- "location": "westus"}'''
+ body: 'b''{"tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3",
+ "location": "westus", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"",
+ "properties": {"probes": [], "sku": {"capacity": 2, "name": "Standard_Medium",
+ "tier": "Standard"}, "provisioningState": "Succeeded", "frontendPorts": [{"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort",
+ "name": "appGatewayFrontendPort", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"",
+ "properties": {"port": 443, "provisioningState": "Succeeded"}}], "requestRoutingRules":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1",
+ "name": "rule1", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"", "properties":
+ {"backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool"},
+ "ruleType": "Basic", "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
+ "provisioningState": "Succeeded", "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener"}}}],
+ "redirectConfigurations": [], "resourceGuid": "ca6ff436-1ec3-4c94-a255-fab993b8b33b",
+ "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"",
+ "properties": {"provisioningState": "Succeeded", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
+ "urlPathMaps": [], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener",
+ "name": "appGatewayHttpListener", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"},
+ "provisioningState": "Succeeded", "protocol": "Https", "sslCertificate": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert"},
+ "requireServerNameIndication": false, "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort"}}}],
+ "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"",
+ "properties": {"privateIPAddress": "10.0.0.15", "privateIPAllocationMethod":
+ "Static", "provisioningState": "Succeeded", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
+ "sslPolicy": {"disabledSslProtocols": ["TLSv1_0", "TLSv1_1"]}, "backendAddressPools":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool",
+ "name": "appGatewayBackendPool", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"",
+ "properties": {"provisioningState": "Succeeded", "backendAddresses": []}}],
+ "authenticationCertificates": [], "backendHttpSettingsCollection": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
+ "name": "appGatewayBackendHttpSettings", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"",
+ "properties": {"connectionDraining": {"enabled": false, "drainTimeoutInSec":
+ 1}, "port": 80, "provisioningState": "Succeeded", "protocol": "Http", "cookieBasedAffinity":
+ "Disabled", "requestTimeout": 30, "pickHostNameFromBackendAddress": false}}],
+ "sslCertificates": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert",
+ "name": "ag3SslCert", "etag": "W/\\"49e3f872-0237-44fd-bd25-739272ddb036\\"",
+ "properties": {"publicCertData": "MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==",
+ "provisioningState": "Succeeded"}}]}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy set]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['7883']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -3898,7 +3812,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -3907,21 +3821,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -3932,7 +3846,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -3945,7 +3859,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -3958,11 +3872,11 @@ interactions:
disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\
\n ]\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2939a79-fe7e-4651-9b99-850b3858da0a?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/118bfecb-7c65-45e7-95ba-307b592a017f?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['11248']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:39 GMT']
+ date: ['Mon, 16 Oct 2017 20:31:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3976,32 +3890,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -4010,7 +3924,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -4019,21 +3933,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -4044,7 +3958,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -4057,7 +3971,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -4073,8 +3987,8 @@ interactions:
cache-control: [no-cache]
content-length: ['11248']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:39 GMT']
- etag: [W/"be723705-2521-4a97-acba-5991a1c95831"]
+ date: ['Mon, 16 Oct 2017 20:31:50 GMT']
+ etag: [W/"b429d92e-444a-4df9-bd0d-c606dbfcbd69"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4087,32 +4001,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy set]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -4121,7 +4035,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -4130,21 +4044,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -4155,7 +4069,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -4168,7 +4082,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"be723705-2521-4a97-acba-5991a1c95831\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -4184,8 +4098,8 @@ interactions:
cache-control: [no-cache]
content-length: ['11248']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:39 GMT']
- etag: [W/"be723705-2521-4a97-acba-5991a1c95831"]
+ date: ['Mon, 16 Oct 2017 20:31:51 GMT']
+ etag: [W/"b429d92e-444a-4df9-bd0d-c606dbfcbd69"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4194,76 +4108,75 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3",
- "tags": {}, "properties": {"requestRoutingRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1",
- "name": "rule1", "properties": {"httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener"},
- "provisioningState": "Updating", "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool"},
- "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "ruleType": "Basic"}, "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\""}],
- "provisioningState": "Updating", "sku": {"name": "Standard_Medium", "capacity":
- 2, "tier": "Standard"}, "sslCertificates": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert",
- "name": "ag3SslCert", "properties": {"publicCertData": "MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==",
- "provisioningState": "Updating"}, "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\""}],
- "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort",
- "name": "appGatewayFrontendPort", "properties": {"provisioningState": "Updating",
- "port": 443}, "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\""}], "redirectConfigurations":
- [], "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP",
- "name": "appGatewayFrontendIP", "properties": {"provisioningState": "Updating",
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}},
- "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\""}], "probes": [], "frontendIPConfigurations":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP",
- "name": "appGatewayFrontendIP", "properties": {"privateIPAllocationMethod":
- "Static", "provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"},
- "privateIPAddress": "10.0.0.15"}, "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\""}],
- "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool",
- "name": "appGatewayBackendPool", "properties": {"backendAddresses": [], "provisioningState":
- "Updating"}, "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\""}], "sslPolicy":
- {"cipherSuites": ["TLS_RSA_WITH_AES_128_CBC_SHA256"], "minProtocolVersion":
- "TLSv1_0", "policyType": "Custom"}, "resourceGuid": "f2bd5290-eefb-44f2-a85e-a315e12dd390",
- "backendHttpSettingsCollection": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "name": "appGatewayBackendHttpSettings", "properties": {"pickHostNameFromBackendAddress":
- false, "provisioningState": "Updating", "requestTimeout": 30, "protocol": "Http",
- "cookieBasedAffinity": "Disabled", "port": 80, "connectionDraining": {"enabled":
- false, "drainTimeoutInSec": 1}}, "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\""}],
- "authenticationCertificates": [], "urlPathMaps": [], "httpListeners": [{"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener",
- "name": "appGatewayHttpListener", "properties": {"frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"},
- "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort"},
- "protocol": "Https", "provisioningState": "Updating", "requireServerNameIndication":
- false, "sslCertificate": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert"}},
- "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\""}]}, "etag": "W/\\"be723705-2521-4a97-acba-5991a1c95831\\"",
- "location": "westus"}'''
+ body: 'b''{"tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3",
+ "location": "westus", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"",
+ "properties": {"probes": [], "sku": {"capacity": 2, "name": "Standard_Medium",
+ "tier": "Standard"}, "provisioningState": "Updating", "frontendPorts": [{"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort",
+ "name": "appGatewayFrontendPort", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"",
+ "properties": {"port": 443, "provisioningState": "Updating"}}], "requestRoutingRules":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1",
+ "name": "rule1", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"", "properties":
+ {"backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool"},
+ "ruleType": "Basic", "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
+ "provisioningState": "Updating", "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener"}}}],
+ "redirectConfigurations": [], "resourceGuid": "ca6ff436-1ec3-4c94-a255-fab993b8b33b",
+ "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"",
+ "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
+ "urlPathMaps": [], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener",
+ "name": "appGatewayHttpListener", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"},
+ "provisioningState": "Updating", "protocol": "Https", "sslCertificate": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert"},
+ "requireServerNameIndication": false, "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort"}}}],
+ "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"",
+ "properties": {"privateIPAddress": "10.0.0.15", "privateIPAllocationMethod":
+ "Static", "provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
+ "sslPolicy": {"cipherSuites": ["TLS_RSA_WITH_AES_128_CBC_SHA256"], "policyType":
+ "Custom", "minProtocolVersion": "TLSv1_0"}, "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool",
+ "name": "appGatewayBackendPool", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"",
+ "properties": {"provisioningState": "Updating", "backendAddresses": []}}], "authenticationCertificates":
+ [], "backendHttpSettingsCollection": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
+ "name": "appGatewayBackendHttpSettings", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"",
+ "properties": {"connectionDraining": {"enabled": false, "drainTimeoutInSec":
+ 1}, "port": 80, "provisioningState": "Updating", "protocol": "Http", "cookieBasedAffinity":
+ "Disabled", "requestTimeout": 30, "pickHostNameFromBackendAddress": false}}],
+ "sslCertificates": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert",
+ "name": "ag3SslCert", "etag": "W/\\"b429d92e-444a-4df9-bd0d-c606dbfcbd69\\"",
+ "properties": {"publicCertData": "MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==",
+ "provisioningState": "Updating"}}]}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy set]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['7936']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -4272,7 +4185,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -4281,21 +4194,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -4306,7 +4219,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -4319,7 +4232,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -4333,50 +4246,50 @@ interactions:
\ \"cipherSuites\": [\r\n \"TLS_RSA_WITH_AES_128_CBC_SHA256\"\r\
\n ]\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/55288808-7139-420f-a838-fcc352919af2?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b1cf38b6-685d-4e6c-bf82-8051bae13fd3?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['11315']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:40 GMT']
+ date: ['Mon, 16 Oct 2017 20:31: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-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -4385,7 +4298,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -4394,21 +4307,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -4419,7 +4332,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -4432,7 +4345,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -4449,8 +4362,8 @@ interactions:
cache-control: [no-cache]
content-length: ['11315']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:40 GMT']
- etag: [W/"1d372814-fa10-4626-8a6e-68d665842072"]
+ date: ['Mon, 16 Oct 2017 20:31:52 GMT']
+ etag: [W/"87d86aa9-8ae2-4946-811a-8e76317a9ded"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4463,32 +4376,32 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy set]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -4497,7 +4410,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -4506,21 +4419,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -4531,7 +4444,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -4544,7 +4457,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"1d372814-fa10-4626-8a6e-68d665842072\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -4561,8 +4474,8 @@ interactions:
cache-control: [no-cache]
content-length: ['11315']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:40 GMT']
- etag: [W/"1d372814-fa10-4626-8a6e-68d665842072"]
+ date: ['Mon, 16 Oct 2017 20:31:53 GMT']
+ etag: [W/"87d86aa9-8ae2-4946-811a-8e76317a9ded"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4571,76 +4484,75 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3",
- "tags": {}, "properties": {"requestRoutingRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1",
- "name": "rule1", "properties": {"httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener"},
- "provisioningState": "Updating", "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool"},
- "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
- "ruleType": "Basic"}, "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\""}],
- "provisioningState": "Updating", "sku": {"name": "Standard_Medium", "capacity":
- 2, "tier": "Standard"}, "sslCertificates": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert",
- "name": "ag3SslCert", "properties": {"publicCertData": "MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==",
- "provisioningState": "Updating"}, "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\""}],
- "frontendPorts": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort",
- "name": "appGatewayFrontendPort", "properties": {"provisioningState": "Updating",
- "port": 443}, "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\""}], "redirectConfigurations":
- [], "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP",
- "name": "appGatewayFrontendIP", "properties": {"provisioningState": "Updating",
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}},
- "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\""}], "probes": [], "frontendIPConfigurations":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP",
- "name": "appGatewayFrontendIP", "properties": {"privateIPAllocationMethod":
- "Static", "provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"},
- "privateIPAddress": "10.0.0.15"}, "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\""}],
+ body: 'b''{"tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3",
+ "location": "westus", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"",
+ "properties": {"probes": [], "sku": {"capacity": 2, "name": "Standard_Medium",
+ "tier": "Standard"}, "provisioningState": "Updating", "frontendPorts": [{"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort",
+ "name": "appGatewayFrontendPort", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"",
+ "properties": {"port": 443, "provisioningState": "Updating"}}], "requestRoutingRules":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1",
+ "name": "rule1", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"", "properties":
+ {"backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool"},
+ "ruleType": "Basic", "backendHttpSettings": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings"},
+ "provisioningState": "Updating", "httpListener": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener"}}}],
+ "redirectConfigurations": [], "resourceGuid": "ca6ff436-1ec3-4c94-a255-fab993b8b33b",
+ "gatewayIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"",
+ "properties": {"provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
+ "urlPathMaps": [], "httpListeners": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener",
+ "name": "appGatewayHttpListener", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"},
+ "provisioningState": "Updating", "protocol": "Https", "sslCertificate": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert"},
+ "requireServerNameIndication": false, "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort"}}}],
+ "frontendIPConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP",
+ "name": "appGatewayFrontendIP", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"",
+ "properties": {"privateIPAddress": "10.0.0.15", "privateIPAllocationMethod":
+ "Static", "provisioningState": "Updating", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1"}}}],
+ "sslPolicy": {"policyName": "AppGwSslPolicy20150501", "policyType": "Predefined"},
"backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool",
- "name": "appGatewayBackendPool", "properties": {"backendAddresses": [], "provisioningState":
- "Updating"}, "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\""}], "sslPolicy":
- {"policyName": "AppGwSslPolicy20150501", "policyType": "Predefined"}, "resourceGuid":
- "f2bd5290-eefb-44f2-a85e-a315e12dd390", "backendHttpSettingsCollection": [{"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
- "name": "appGatewayBackendHttpSettings", "properties": {"pickHostNameFromBackendAddress":
- false, "provisioningState": "Updating", "requestTimeout": 30, "protocol": "Http",
- "cookieBasedAffinity": "Disabled", "port": 80, "connectionDraining": {"enabled":
- false, "drainTimeoutInSec": 1}}, "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\""}],
- "authenticationCertificates": [], "urlPathMaps": [], "httpListeners": [{"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener",
- "name": "appGatewayHttpListener", "properties": {"frontendIPConfiguration":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"},
- "frontendPort": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort"},
- "protocol": "Https", "provisioningState": "Updating", "requireServerNameIndication":
- false, "sslCertificate": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert"}},
- "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\""}]}, "etag": "W/\\"1d372814-fa10-4626-8a6e-68d665842072\\"",
- "location": "westus"}'''
+ "name": "appGatewayBackendPool", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"",
+ "properties": {"provisioningState": "Updating", "backendAddresses": []}}], "authenticationCertificates":
+ [], "backendHttpSettingsCollection": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings",
+ "name": "appGatewayBackendHttpSettings", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"",
+ "properties": {"connectionDraining": {"enabled": false, "drainTimeoutInSec":
+ 1}, "port": 80, "provisioningState": "Updating", "protocol": "Http", "cookieBasedAffinity":
+ "Disabled", "requestTimeout": 30, "pickHostNameFromBackendAddress": false}}],
+ "sslCertificates": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert",
+ "name": "ag3SslCert", "etag": "W/\\"87d86aa9-8ae2-4946-811a-8e76317a9ded\\"",
+ "properties": {"publicCertData": "MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==",
+ "provisioningState": "Updating"}}]}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy set]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['7894']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -4649,7 +4561,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -4658,21 +4570,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -4683,7 +4595,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -4696,7 +4608,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -4709,50 +4621,50 @@ interactions:
policyType\": \"Predefined\",\r\n \"policyName\": \"AppGwSslPolicy20150501\"\
\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c456f1c2-c920-413b-8236-cba150d1b50a?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/499a8a9e-fd3e-4364-9396-83c961c16486?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['11248']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:41 GMT']
+ date: ['Mon, 16 Oct 2017 20:31:54 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-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway ssl-policy show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ag3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\":\
\ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f2bd5290-eefb-44f2-a85e-a315e12dd390\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ca6ff436-1ec3-4c94-a255-fab993b8b33b\"\
,\r\n \"sku\": {\r\n \"name\": \"Standard_Medium\",\r\n \"tier\"\
: \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\"\
: \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \
\ \"name\": \"appGatewayFrontendIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\"\
: [\r\n {\r\n \"name\": \"ag3SslCert\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/sslCertificates/ag3SslCert\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"publicCertData\": \"MIIEdAYJKoZIhvcNAQcCoIIEZTCCBGECAQExADALBgkqhkiG9w0BBwGgggRJMIIERTCCAy2gAwIBAgIJAMkWKAMjve9hMA0GCSqGSIb3DQEBCwUAMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTAeFw0xNjEwMjcxNzA3MTFaFw0xNzEwMjcxNzA3MTFaMHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKA6lGpANeDumo1Hmt2xb3+mGQboF0eG9HGZYE3Z9s1FaqyuhWIo7VT8Ewi+wWpbJMmhnOdiJLuzCCAj0alKizX4V/55TLqzJcSte+T5QAu3tCm4u0VmJoazoRXXCEA/bKkn0CdYfY28uaxpilS+CX8yVBSrzrtd45mIMAuQm6Q3ZAZf3gj7t1SBY96R7PGEkuSjRgdG4EtKmSHhrSymlCmyVSAXN+WUzC/BHA7XcqzBCd+VEUQ3nYgv7qMj49lZaTvmTTSqZWvoGC0Pus0t7ZgUi6TXI5m3Z1irlIKWflY4kXLIPTZCsY8el8LEPJamCu+uiReEBRlTyyOV5KpyMMkCAwEAAaOB2TCB1jAdBgNVHQ4EFgQUycSGeAF/LvJDEiB/HnKKvsIzfPYwgaYGA1UdIwSBnjCBm4AUycSGeAF/LvJDEiB/HnKKvsIzfPaheKR2MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJXQTENMAsGA1UEBxMEVGVzdDENMAsGA1UEChMEVGVzdDENMAsGA1UECxMEVGVzdDENMAsGA1UEAxMEVGVzdDEcMBoGCSqGSIb3DQEJARYNdGVzdEB0ZXN0LmNvbYIJAMkWKAMjve9hMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAF9DbBlr4GxCpavUN/Ms+2dh8dQjbF7LEUe5E6kSxcj2J6mdq1WdeZzgN38LsLrkzzPMm+osOhfrr1Wo1ZGzfV42D6fAnZ1RaNOiSnv9vfhEopz6ogPYP8fzqlzvxNojdBdHjJJjbagL57ZpMxtP9WaQEEx1oHLloFBA7ldtGTeNm6AbMWHJLCOepeu8G0s+olXNDyzDNup9MOTLcPqbP3HN9x4coLgqK+IQvBGXlKe0OiUCm4ae7XDjKzueWI/fuOuFdNnpUZZuu63Y1EHpOk0NXswCD3tmznNg2vqclBYlm/X7KD8ajRD0sBGvz6xeA4J0BYg46AjBX1mTTW0XQ3gxAA==\"\
,\r\n \"httpListeners\": [\r\n {\r\n \"id\"\
@@ -4761,7 +4673,7 @@ interactions:
\ \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"appGatewayFrontendIP\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1\"\
@@ -4770,21 +4682,21 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"frontendPorts\": [\r\n {\r\n \"name\": \"appGatewayFrontendPort\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendPorts/appGatewayFrontendPort\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n \
\ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"appGatewayBackendPool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendAddressPools/appGatewayBackendPool\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"backendAddresses\": [],\r\n \"requestRoutingRules\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"\
appGatewayBackendHttpSettings\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/backendHttpSettingsCollection/appGatewayBackendHttpSettings\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \
\ \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\"\
@@ -4795,7 +4707,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"httpListeners\": [\r\n {\r\n \"name\": \"appGatewayHttpListener\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP\"\
\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"\
@@ -4808,7 +4720,7 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \
\ \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/requestRoutingRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"45c76fcd-7c42-4e15-94ba-b620dc04b475\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"8cb1e547-4dac-489a-903f-f7726e6f4b88\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ip000001/providers/Microsoft.Network/applicationGateways/ag3/httpListeners/appGatewayHttpListener\"\
@@ -4824,8 +4736,8 @@ interactions:
cache-control: [no-cache]
content-length: ['11248']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:41 GMT']
- etag: [W/"45c76fcd-7c42-4e15-94ba-b620dc04b475"]
+ date: ['Mon, 16 Oct 2017 20:31:55 GMT']
+ etag: [W/"8cb1e547-4dac-489a-903f-f7726e6f4b88"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4838,13 +4750,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_private_ip000001?api-version=2017-05-10
@@ -4853,11 +4765,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:53:43 GMT']
+ date: ['Mon, 16 Oct 2017 20:31:55 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZQUklWQVRFOjVGSVBVWk5NRVRQNkVRTFg3UU5SUXw0QzdDREE3QUI0ODlBMDkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZQUklWQVRFOjVGSVBXQ0VOM0s1Rk9SWEhCV1I0V3xENDhCMDRDQjQ0NEJFOEJFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_public_ip.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_public_ip.yaml
index 0c2cd935a15..08044a47594 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_public_ip.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_app_gateway_with_public_ip.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"tags": {"use": "az-test"}, "location": "westus"}'
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:10 GMT']
+ date: ['Fri, 13 Oct 2017 16:29:55 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:10 GMT']
+ date: ['Fri, 13 Oct 2017 16:29:56 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,12 +57,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_ag_public_ip000001%27%20and%20name%20eq%20%27vnet4%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
@@ -72,7 +72,7 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:11 GMT']
+ date: ['Fri, 13 Oct 2017 16:29:56 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -83,12 +83,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_ag_public_ip000001%27%20and%20name%20eq%20%27publicip4%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10
@@ -98,169 +98,192 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:11 GMT']
+ date: ['Fri, 13 Oct 2017 16:29:56 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"template": {"outputs": {"applicationGateway": {"value":
- "[reference(\''test4\'')]", "type": "object"}}, "resources": [{"tags": {}, "name":
- "vnet4", "apiVersion": "2015-06-15", "location": "westus", "properties": {"addressSpace":
- {"addressPrefixes": ["10.0.0.1/16"]}, "subnets": [{"properties": {"addressPrefix":
- "10.0.0.1/28"}, "name": "subnet1"}]}, "dependsOn": [], "type": "Microsoft.Network/virtualNetworks"},
- {"tags": {}, "name": "publicip4", "apiVersion": "2017-09-01", "location": "westus",
- "properties": {"publicIPAllocationMethod": "Dynamic"}, "dependsOn": [], "type":
- "Microsoft.Network/publicIPAddresses"}, {"tags": {}, "name": "test4", "apiVersion":
- "2017-09-01", "location": "westus", "properties": {"httpListeners": [{"properties":
- {"SslCertificate": null, "Protocol": "http", "FrontendPort": {"Id": "[concat(variables(\''appGwID\''),
+ body: 'b''{"properties": {"parameters": {}, "mode": "Incremental", "template":
+ {"resources": [{"type": "Microsoft.Network/virtualNetworks", "name": "vnet4",
+ "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.1/16"]},
+ "subnets": [{"properties": {"addressPrefix": "10.0.0.1/28"}, "name": "subnet1"}]},
+ "location": "westus", "apiVersion": "2015-06-15", "dependsOn": []}, {"type":
+ "Microsoft.Network/publicIPAddresses", "name": "publicip4", "tags": {}, "properties":
+ {"publicIPAllocationMethod": "Dynamic"}, "location": "westus", "apiVersion":
+ "2017-09-01", "dependsOn": []}, {"type": "Microsoft.Network/applicationGateways",
+ "name": "test4", "tags": {}, "properties": {"gatewayIPConfigurations": [{"properties":
+ {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1"}},
+ "name": "appGatewayFrontendIP"}], "backendAddressPools": [{"name": "appGatewayBackendPool"}],
+ "sku": {"capacity": 2, "name": "Standard_Medium", "tier": "Standard"}, "frontendPorts":
+ [{"properties": {"Port": 80}, "name": "appGatewayFrontendPort"}], "requestRoutingRules":
+ [{"Name": "rule1", "properties": {"RuleType": "Basic", "backendAddressPool":
+ {"id": "[concat(variables(\''appGwID\''), \''/backendAddressPools/appGatewayBackendPool\'')]"},
+ "httpListener": {"id": "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
+ "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''), \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"}}}],
+ "frontendIPConfigurations": [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}},
+ "name": "appGatewayFrontendIP"}], "httpListeners": [{"properties": {"Protocol":
+ "http", "SslCertificate": null, "FrontendPort": {"Id": "[concat(variables(\''appGwID\''),
\''/frontendPorts/appGatewayFrontendPort\'')]"}, "FrontendIpConfiguration":
{"Id": "[concat(variables(\''appGwID\''), \''/frontendIPConfigurations/appGatewayFrontendIP\'')]"}},
- "name": "appGatewayHttpListener"}], "frontendIPConfigurations": [{"properties":
- {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}},
- "name": "appGatewayFrontendIP"}], "requestRoutingRules": [{"Name": "rule1",
- "properties": {"backendAddressPool": {"id": "[concat(variables(\''appGwID\''),
- \''/backendAddressPools/appGatewayBackendPool\'')]"}, "httpListener": {"id":
- "[concat(variables(\''appGwID\''), \''/httpListeners/appGatewayHttpListener\'')]"},
- "RuleType": "Basic", "backendHttpSettings": {"id": "[concat(variables(\''appGwID\''),
- \''/backendHttpSettingsCollection/appGatewayBackendHttpSettings\'')]"}}}], "backendAddressPools":
- [{"name": "appGatewayBackendPool"}], "sku": {"capacity": 2, "name": "Standard_Medium",
- "tier": "Standard"}, "frontendPorts": [{"properties": {"Port": 80}, "name":
- "appGatewayFrontendPort"}], "backendHttpSettingsCollection": [{"properties":
- {"Protocol": "Http", "connectionDraining": {"drainTimeoutInSec": 1, "enabled":
- false}, "Port": 80, "CookieBasedAffinity": "disabled"}, "name": "appGatewayBackendHttpSettings"}],
- "gatewayIPConfigurations": [{"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1"}},
- "name": "appGatewayFrontendIP"}]}, "dependsOn": ["Microsoft.Network/virtualNetworks/vnet4",
- "Microsoft.Network/publicIpAddresses/publicip4"], "type": "Microsoft.Network/applicationGateways"}],
- "parameters": {}, "contentVersion": "1.0.0.0", "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
- \''test4\'')]"}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"},
- "parameters": {}, "mode": "Incremental"}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
- Connection: [keep-alive]
- Content-Length: ['2970']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ "name": "appGatewayHttpListener"}], "backendHttpSettingsCollection": [{"properties":
+ {"Protocol": "Http", "Port": 80, "CookieBasedAffinity": "disabled"}, "name":
+ "appGatewayBackendHttpSettings"}]}, "location": "westus", "apiVersion": "2017-09-01",
+ "dependsOn": ["Microsoft.Network/virtualNetworks/vnet4", "Microsoft.Network/publicIpAddresses/publicip4"]}],
+ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {}, "variables": {"appGwID": "[resourceId(\''Microsoft.Network/applicationGateways\'',
+ \''test4\'')]"}, "outputs": {"applicationGateway": {"type": "object", "value":
+ "[reference(\''test4\'')]"}}}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['2904']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_O6j3ppAzOhYlbCMiXqQHksj0PncFqMeN","name":"ag_deploy_O6j3ppAzOhYlbCMiXqQHksj0PncFqMeN","properties":{"templateHash":"12830139978319472785","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:35:13.227588Z","duration":"PT0.4792106S","correlationId":"ccc0c134-bbff-4968-a61b-431cbfc76efc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"publicip4"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":"Microsoft.Network/applicationGateways","resourceName":"test4"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","name":"ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","properties":{"templateHash":"8947542419965513313","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T16:29:58.5145462Z","duration":"PT0.3275262S","correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"publicip4"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":"Microsoft.Network/applicationGateways","resourceName":"test4"}]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_O6j3ppAzOhYlbCMiXqQHksj0PncFqMeN/operationStatuses/08586957715727292486?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/operationStatuses/08586936946872906047?api-version=2017-05-10']
cache-control: [no-cache]
content-length: ['1657']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:12 GMT']
+ date: ['Fri, 13 Oct 2017 16:29:58 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1188']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A30%3A06Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:42 GMT']
+ date: ['Fri, 13 Oct 2017 16:30:07 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A30%3A17Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['7209']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:13 GMT']
+ date: ['Fri, 13 Oct 2017 16:30:16 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A30%3A27Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['37067']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:43 GMT']
+ date: ['Fri, 13 Oct 2017 16:30:27 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:13 GMT']
+ date: ['Fri, 13 Oct 2017 16:30:28 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -271,100 +294,163 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A30%3A38Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['40520']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:44 GMT']
+ date: ['Fri, 13 Oct 2017 16:30:38 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A30%3A48Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['43972']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:14 GMT']
+ date: ['Fri, 13 Oct 2017 16:30:48 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A30%3A59Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['47426']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:44 GMT']
+ date: ['Fri, 13 Oct 2017 16:30:58 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:15 GMT']
+ date: ['Fri, 13 Oct 2017 16:30:59 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -375,74 +461,122 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A31%3A09Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['47426']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:45 GMT']
+ date: ['Fri, 13 Oct 2017 16:31:09 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A31%3A20Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['50880']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:15 GMT']
+ date: ['Fri, 13 Oct 2017 16:31:20 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:45 GMT']
+ date: ['Fri, 13 Oct 2017 16:31:29 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -453,100 +587,189 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A31%3A30Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['54334']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:15 GMT']
+ date: ['Fri, 13 Oct 2017 16:31:30 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A31%3A41Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['57787']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:46 GMT']
+ date: ['Fri, 13 Oct 2017 16:31:40 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A31%3A51Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['64695']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:16 GMT']
+ date: ['Fri, 13 Oct 2017 16:31:51 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:47 GMT']
+ date: ['Fri, 13 Oct 2017 16:32:00 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -557,100 +780,205 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A32%3A02Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['64695']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:16 GMT']
+ date: ['Fri, 13 Oct 2017 16:32:01 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A32%3A12Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['68149']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:47 GMT']
+ date: ['Fri, 13 Oct 2017 16:32:12 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A32%3A23Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['71603']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:18 GMT']
+ date: ['Fri, 13 Oct 2017 16:32:23 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:48 GMT']
+ date: ['Fri, 13 Oct 2017 16:32:31 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -661,100 +989,223 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A32%3A33Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['75057']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:18 GMT']
+ date: ['Fri, 13 Oct 2017 16:32:33 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A32%3A44Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['78511']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:48 GMT']
+ date: ['Fri, 13 Oct 2017 16:32:44 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A32%3A55Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['81965']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:18 GMT']
+ date: ['Fri, 13 Oct 2017 16:32:54 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:46:51 GMT']
+ date: ['Fri, 13 Oct 2017 16:33:01 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -765,100 +1216,241 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A33%3A05Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['85419']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:21 GMT']
+ date: ['Fri, 13 Oct 2017 16:33:04 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A33%3A15Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['88873']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47:51 GMT']
+ date: ['Fri, 13 Oct 2017 16:33:16 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A33%3A26Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['92327']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:21 GMT']
+ date: ['Fri, 13 Oct 2017 16:33:25 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48:52 GMT']
+ date: ['Fri, 13 Oct 2017 16:33:31 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -869,74 +1461,255 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A33%3A36Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['95779']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:22 GMT']
+ date: ['Fri, 13 Oct 2017 16:33:37 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A33%3A47Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['95779']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:52 GMT']
+ date: ['Fri, 13 Oct 2017 16:33:47 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A33%3A57Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['99233']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:33:58 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:23 GMT']
+ date: ['Fri, 13 Oct 2017 16:34:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -947,22 +1720,271 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A34%3A08Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['102687']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:34:08 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A34%3A18Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"540cd481-76b7-47c8-b9d2-381e902d2585","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/540cd481-76b7-47c8-b9d2-381e902d2585/ticks/636435092303813355","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c5a49ec3-983c-4d89-9d92-3a3911644a41","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:50.3813355Z","submissionTimestamp":"2017-10-13T16:34:09.849712Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['106140']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:34:18 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A34%3A28Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7d99faaf-9343-4e18-9f21-949e618f9d76","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7d99faaf-9343-4e18-9f21-949e618f9d76/ticks/636435092413813693","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"eb607a36-d8a6-4afa-8b16-e38ad378f922","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:01.3813693Z","submissionTimestamp":"2017-10-13T16:34:20.0413137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"540cd481-76b7-47c8-b9d2-381e902d2585","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/540cd481-76b7-47c8-b9d2-381e902d2585/ticks/636435092303813355","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c5a49ec3-983c-4d89-9d92-3a3911644a41","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:50.3813355Z","submissionTimestamp":"2017-10-13T16:34:09.849712Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['109594']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:34:28 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50:54 GMT']
+ date: ['Fri, 13 Oct 2017 16:34:32 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -973,22 +1995,289 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A34%3A39Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1d68059c-2ba7-4979-91e3-b078ffd7cfee","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/1d68059c-2ba7-4979-91e3-b078ffd7cfee/ticks/636435092526062650","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"83f5faa1-1b6d-4428-8b61-f3edea6d62b4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:12.606265Z","submissionTimestamp":"2017-10-13T16:34:31.0403714Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7d99faaf-9343-4e18-9f21-949e618f9d76","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7d99faaf-9343-4e18-9f21-949e618f9d76/ticks/636435092413813693","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"eb607a36-d8a6-4afa-8b16-e38ad378f922","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:01.3813693Z","submissionTimestamp":"2017-10-13T16:34:20.0413137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"540cd481-76b7-47c8-b9d2-381e902d2585","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/540cd481-76b7-47c8-b9d2-381e902d2585/ticks/636435092303813355","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c5a49ec3-983c-4d89-9d92-3a3911644a41","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:50.3813355Z","submissionTimestamp":"2017-10-13T16:34:09.849712Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['113047']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:34:39 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A34%3A50Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"202ac99a-10d1-420b-934f-f85a410772fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/202ac99a-10d1-420b-934f-f85a410772fe/ticks/636435092646142326","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"4535286d-54ca-4d44-ae13-f6e14a7f49da","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:24.6142326Z","submissionTimestamp":"2017-10-13T16:34:39.8930042Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1d68059c-2ba7-4979-91e3-b078ffd7cfee","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/1d68059c-2ba7-4979-91e3-b078ffd7cfee/ticks/636435092526062650","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"83f5faa1-1b6d-4428-8b61-f3edea6d62b4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:12.606265Z","submissionTimestamp":"2017-10-13T16:34:31.0403714Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7d99faaf-9343-4e18-9f21-949e618f9d76","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7d99faaf-9343-4e18-9f21-949e618f9d76/ticks/636435092413813693","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"eb607a36-d8a6-4afa-8b16-e38ad378f922","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:01.3813693Z","submissionTimestamp":"2017-10-13T16:34:20.0413137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"540cd481-76b7-47c8-b9d2-381e902d2585","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/540cd481-76b7-47c8-b9d2-381e902d2585/ticks/636435092303813355","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c5a49ec3-983c-4d89-9d92-3a3911644a41","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:50.3813355Z","submissionTimestamp":"2017-10-13T16:34:09.849712Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['116501']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:34:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A35%3A00Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"0bcc5fa1-4418-456b-a34d-d1ceffe88eca","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/0bcc5fa1-4418-456b-a34d-d1ceffe88eca/ticks/636435092757344256","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"ea6f4abc-2208-4680-bd6d-0d0c6403e6df","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:35.7344256Z","submissionTimestamp":"2017-10-13T16:34:50.0466353Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"202ac99a-10d1-420b-934f-f85a410772fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/202ac99a-10d1-420b-934f-f85a410772fe/ticks/636435092646142326","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"4535286d-54ca-4d44-ae13-f6e14a7f49da","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:24.6142326Z","submissionTimestamp":"2017-10-13T16:34:39.8930042Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1d68059c-2ba7-4979-91e3-b078ffd7cfee","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/1d68059c-2ba7-4979-91e3-b078ffd7cfee/ticks/636435092526062650","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"83f5faa1-1b6d-4428-8b61-f3edea6d62b4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:12.606265Z","submissionTimestamp":"2017-10-13T16:34:31.0403714Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7d99faaf-9343-4e18-9f21-949e618f9d76","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7d99faaf-9343-4e18-9f21-949e618f9d76/ticks/636435092413813693","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"eb607a36-d8a6-4afa-8b16-e38ad378f922","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:01.3813693Z","submissionTimestamp":"2017-10-13T16:34:20.0413137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"540cd481-76b7-47c8-b9d2-381e902d2585","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/540cd481-76b7-47c8-b9d2-381e902d2585/ticks/636435092303813355","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c5a49ec3-983c-4d89-9d92-3a3911644a41","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:50.3813355Z","submissionTimestamp":"2017-10-13T16:34:09.849712Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['119955']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:35:01 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:24 GMT']
+ date: ['Fri, 13 Oct 2017 16:35:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -999,48 +2288,307 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715727292486?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A35%3A11Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Succeeded"}'}
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2f38666b-f535-4644-8b7f-8d3bbca8e6cd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2f38666b-f535-4644-8b7f-8d3bbca8e6cd/ticks/636435092873571025","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"dbe126aa-732e-4051-bfde-f6413bf1bc66","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:47.3571025Z","submissionTimestamp":"2017-10-13T16:35:00.5309811Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"0bcc5fa1-4418-456b-a34d-d1ceffe88eca","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/0bcc5fa1-4418-456b-a34d-d1ceffe88eca/ticks/636435092757344256","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"ea6f4abc-2208-4680-bd6d-0d0c6403e6df","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:35.7344256Z","submissionTimestamp":"2017-10-13T16:34:50.0466353Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"202ac99a-10d1-420b-934f-f85a410772fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/202ac99a-10d1-420b-934f-f85a410772fe/ticks/636435092646142326","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"4535286d-54ca-4d44-ae13-f6e14a7f49da","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:24.6142326Z","submissionTimestamp":"2017-10-13T16:34:39.8930042Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1d68059c-2ba7-4979-91e3-b078ffd7cfee","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/1d68059c-2ba7-4979-91e3-b078ffd7cfee/ticks/636435092526062650","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"83f5faa1-1b6d-4428-8b61-f3edea6d62b4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:12.606265Z","submissionTimestamp":"2017-10-13T16:34:31.0403714Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7d99faaf-9343-4e18-9f21-949e618f9d76","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7d99faaf-9343-4e18-9f21-949e618f9d76/ticks/636435092413813693","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"eb607a36-d8a6-4afa-8b16-e38ad378f922","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:01.3813693Z","submissionTimestamp":"2017-10-13T16:34:20.0413137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"540cd481-76b7-47c8-b9d2-381e902d2585","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/540cd481-76b7-47c8-b9d2-381e902d2585/ticks/636435092303813355","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c5a49ec3-983c-4d89-9d92-3a3911644a41","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:50.3813355Z","submissionTimestamp":"2017-10-13T16:34:09.849712Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['22']
+ content-length: ['123409']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:54 GMT']
+ date: ['Fri, 13 Oct 2017 16:35:11 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network application-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A35%3A21Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"00462482-d2cd-4007-89bf-f76b33ef0db3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/00462482-d2cd-4007-89bf-f76b33ef0db3/ticks/636435092986147540","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d65bbec7-963f-4ce3-ac35-442f308361c9","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:58.614754Z","submissionTimestamp":"2017-10-13T16:35:20.2534222Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2f38666b-f535-4644-8b7f-8d3bbca8e6cd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2f38666b-f535-4644-8b7f-8d3bbca8e6cd/ticks/636435092873571025","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"dbe126aa-732e-4051-bfde-f6413bf1bc66","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:47.3571025Z","submissionTimestamp":"2017-10-13T16:35:00.5309811Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"0bcc5fa1-4418-456b-a34d-d1ceffe88eca","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/0bcc5fa1-4418-456b-a34d-d1ceffe88eca/ticks/636435092757344256","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"ea6f4abc-2208-4680-bd6d-0d0c6403e6df","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:35.7344256Z","submissionTimestamp":"2017-10-13T16:34:50.0466353Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"202ac99a-10d1-420b-934f-f85a410772fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/202ac99a-10d1-420b-934f-f85a410772fe/ticks/636435092646142326","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"4535286d-54ca-4d44-ae13-f6e14a7f49da","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:24.6142326Z","submissionTimestamp":"2017-10-13T16:34:39.8930042Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1d68059c-2ba7-4979-91e3-b078ffd7cfee","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/1d68059c-2ba7-4979-91e3-b078ffd7cfee/ticks/636435092526062650","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"83f5faa1-1b6d-4428-8b61-f3edea6d62b4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:12.606265Z","submissionTimestamp":"2017-10-13T16:34:31.0403714Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7d99faaf-9343-4e18-9f21-949e618f9d76","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7d99faaf-9343-4e18-9f21-949e618f9d76/ticks/636435092413813693","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"eb607a36-d8a6-4afa-8b16-e38ad378f922","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:01.3813693Z","submissionTimestamp":"2017-10-13T16:34:20.0413137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"540cd481-76b7-47c8-b9d2-381e902d2585","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/540cd481-76b7-47c8-b9d2-381e902d2585/ticks/636435092303813355","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c5a49ec3-983c-4d89-9d92-3a3911644a41","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:50.3813355Z","submissionTimestamp":"2017-10-13T16:34:09.849712Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['126862']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:35:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A35%3A32Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"6ba2e666-1159-4313-af0a-aeeeb7eba723","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/6ba2e666-1159-4313-af0a-aeeeb7eba723/ticks/636435093100745762","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"bf132683-d7d2-47a5-b991-8edefc374377","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:35:10.0745762Z","submissionTimestamp":"2017-10-13T16:35:30.1042104Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"00462482-d2cd-4007-89bf-f76b33ef0db3","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/00462482-d2cd-4007-89bf-f76b33ef0db3/ticks/636435092986147540","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"d65bbec7-963f-4ce3-ac35-442f308361c9","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:58.614754Z","submissionTimestamp":"2017-10-13T16:35:20.2534222Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2f38666b-f535-4644-8b7f-8d3bbca8e6cd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2f38666b-f535-4644-8b7f-8d3bbca8e6cd/ticks/636435092873571025","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"dbe126aa-732e-4051-bfde-f6413bf1bc66","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:47.3571025Z","submissionTimestamp":"2017-10-13T16:35:00.5309811Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"0bcc5fa1-4418-456b-a34d-d1ceffe88eca","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/0bcc5fa1-4418-456b-a34d-d1ceffe88eca/ticks/636435092757344256","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"ea6f4abc-2208-4680-bd6d-0d0c6403e6df","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:35.7344256Z","submissionTimestamp":"2017-10-13T16:34:50.0466353Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"202ac99a-10d1-420b-934f-f85a410772fe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/202ac99a-10d1-420b-934f-f85a410772fe/ticks/636435092646142326","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"4535286d-54ca-4d44-ae13-f6e14a7f49da","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:24.6142326Z","submissionTimestamp":"2017-10-13T16:34:39.8930042Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1d68059c-2ba7-4979-91e3-b078ffd7cfee","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/1d68059c-2ba7-4979-91e3-b078ffd7cfee/ticks/636435092526062650","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"83f5faa1-1b6d-4428-8b61-f3edea6d62b4","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:12.606265Z","submissionTimestamp":"2017-10-13T16:34:31.0403714Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7d99faaf-9343-4e18-9f21-949e618f9d76","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7d99faaf-9343-4e18-9f21-949e618f9d76/ticks/636435092413813693","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"eb607a36-d8a6-4afa-8b16-e38ad378f922","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:34:01.3813693Z","submissionTimestamp":"2017-10-13T16:34:20.0413137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"540cd481-76b7-47c8-b9d2-381e902d2585","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/540cd481-76b7-47c8-b9d2-381e902d2585/ticks/636435092303813355","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"c5a49ec3-983c-4d89-9d92-3a3911644a41","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:50.3813355Z","submissionTimestamp":"2017-10-13T16:34:09.849712Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b1d55386-466d-4a89-b670-f9b4e8774786","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b1d55386-466d-4a89-b670-f9b4e8774786/ticks/636435092193799614","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"04c853d0-a22d-4f4b-8a7e-3ecf3f0de17d","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:39.3799614Z","submissionTimestamp":"2017-10-13T16:33:59.7940561Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"980d707b-1dc5-4c3b-b411-d98418046325","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/980d707b-1dc5-4c3b-b411-d98418046325/ticks/636435092088219638","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"71647b73-6cbb-4753-9cc0-d32a782e5eb2","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:28.8219638Z","submissionTimestamp":"2017-10-13T16:33:50.0089059Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"ca751bbe-45b9-4c4f-97fe-c925648e42bd","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/ca751bbe-45b9-4c4f-97fe-c925648e42bd/ticks/636435091984589993","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"06978b47-76bc-4d43-bedb-845a2c5da1f3","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:18.4589993Z","submissionTimestamp":"2017-10-13T16:33:29.11845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"183280ac-286a-43fe-b251-520069c08f09","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/183280ac-286a-43fe-b251-520069c08f09/ticks/636435091874533388","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"5b044191-5523-4a0c-99b2-34d34e02e1f5","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:33:07.4533388Z","submissionTimestamp":"2017-10-13T16:33:20.1936884Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"b5135197-f53f-43b7-88e8-7f9608510769","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/b5135197-f53f-43b7-88e8-7f9608510769/ticks/636435091766647051","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"852d77bf-7ec4-46ca-a9ff-491dcc51fa74","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:56.6647051Z","submissionTimestamp":"2017-10-13T16:33:09.8555366Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"241bd09d-6375-4433-87c2-0c725252fdb6","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/241bd09d-6375-4433-87c2-0c725252fdb6/ticks/636435091663615668","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"1c392f96-4aeb-4e5f-997d-c2c39614d973","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:46.3615668Z","submissionTimestamp":"2017-10-13T16:32:59.0324254Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c8af06c3-0296-44aa-aff6-acd4f5620945","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c8af06c3-0296-44aa-aff6-acd4f5620945/ticks/636435091559176735","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f4f9f153-b7f9-40bf-81d9-fd8ddc04e282","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:35.9176735Z","submissionTimestamp":"2017-10-13T16:32:49.1294123Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"341a8ae7-c24e-4372-a1c5-ed1cd61df512","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/341a8ae7-c24e-4372-a1c5-ed1cd61df512/ticks/636435091445064648","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"fe5445e3-2fb8-4223-82dd-c2a81047a225","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:24.5064648Z","submissionTimestamp":"2017-10-13T16:32:40.3343577Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d26e6598-96a8-4204-8d4b-ca85de69e969","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d26e6598-96a8-4204-8d4b-ca85de69e969/ticks/636435091293201047","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"20a39434-e3c1-46b2-b314-440955872087","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:32:09.3201047Z","submissionTimestamp":"2017-10-13T16:32:30.8022762Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"fe14ef61-a6b2-45b4-851c-a4fb03dcd014","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/fe14ef61-a6b2-45b4-851c-a4fb03dcd014/ticks/636435091182362542","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"f8934bd6-2b33-4a77-bae6-4ebff4ca1165","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:58.2362542Z","submissionTimestamp":"2017-10-13T16:32:09.9710262Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"58322f81-1e8e-45a4-8e3e-062028b59a69","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/58322f81-1e8e-45a4-8e3e-062028b59a69/ticks/636435091070255973","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"977257b7-3fc5-413b-ae51-c797a319a952","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:47.0255973Z","submissionTimestamp":"2017-10-13T16:32:00.4344403Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"d2d59f5e-50d9-4bcc-9b97-69bf47f24e32","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/d2d59f5e-50d9-4bcc-9b97-69bf47f24e32/ticks/636435090948222468","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"81cb2ba0-ac71-431f-b3c3-70cdcac921a7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:34.8222468Z","submissionTimestamp":"2017-10-13T16:31:49.6516934Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"4817f3d6-39c4-4081-96fd-23681551c784","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/4817f3d6-39c4-4081-96fd-23681551c784/ticks/636435090837744044","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"15d84c96-3801-44e6-876e-2dac90495223","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:23.7744044Z","submissionTimestamp":"2017-10-13T16:31:40.1458926Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7b3e0f95-a62d-440f-b563-1abf05a1fc9b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7b3e0f95-a62d-440f-b563-1abf05a1fc9b/ticks/636435090719080820","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9d4100f2-7638-4067-87fa-d7fa3ee689ab","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:11.908082Z","submissionTimestamp":"2017-10-13T16:31:30.5881896Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c57d502d-65c5-4dba-8168-160616533056","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c57d502d-65c5-4dba-8168-160616533056/ticks/636435090601111106","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"de56d74b-2756-49c6-8bec-72f08dffbfc6","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:31:00.1111106Z","submissionTimestamp":"2017-10-13T16:31:20.2368351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"73756b3e-d860-4dbd-9029-4c5cbce819fb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/73756b3e-d860-4dbd-9029-4c5cbce819fb/ticks/636435090496924147","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"642c92ef-af00-4d2b-85d9-62ed2bbbf6f8","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:49.6924147Z","submissionTimestamp":"2017-10-13T16:31:09.9504221Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"7de3291c-ce85-4d94-8027-0b0a19d82668","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/7de3291c-ce85-4d94-8027-0b0a19d82668/ticks/636435090367271812","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"0e3d5f0e-679f-4dfd-a989-babb877a9f53","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:36.7271812Z","submissionTimestamp":"2017-10-13T16:30:50.5996279Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"c860d9dd-57fd-41f4-a981-1e13012e8124","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/c860d9dd-57fd-41f4-a981-1e13012e8124/ticks/636435090254994838","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"9ff1a261-34b8-4c9b-93e5-8327264feace","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:25.4994838Z","submissionTimestamp":"2017-10-13T16:30:39.47086Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"78a58a56-2a11-4aa5-814d-7d4c39957dc4","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/78a58a56-2a11-4aa5-814d-7d4c39957dc4/ticks/636435090139153050","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"af9706e4-5bcd-4942-9bf7-5db5c946a3f7","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:13.915305Z","submissionTimestamp":"2017-10-13T16:30:29.9963265Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"9629b9f9-e611-4e12-9cdd-3c63f1ba6e92","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/9629b9f9-e611-4e12-9cdd-3c63f1ba6e92/ticks/636435090049666743","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"71695eb4-0162-4303-b4f1-a1cb9fa96734","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.9666743Z","submissionTimestamp":"2017-10-13T16:30:20.0865048Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"985443b6-ad98-432e-afdf-d30300c5639b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/985443b6-ad98-432e-afdf-d30300c5639b/ticks/636435090040270494","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"7efe2ff5-271b-4cfb-afb8-b14f80f0aabe","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:04.0270494Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2abfae66-af2e-4a41-baa0-72ecf605fb05","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2abfae66-af2e-4a41-baa0-72ecf605fb05/ticks/636435090035191635","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"properties":{"statusCode":"Created","serviceRequestId":"46860e43-97b5-4125-9201-8486a1ffed22"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:30:03.5191635Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/applicationGateways/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2dfe2201-cf6b-43bd-91a7-815e3ada95af","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd71f4cf-5997-4bf8-8283-4f08303cc3ae","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/events/2dfe2201-cf6b-43bd-91a7-815e3ada95af/ticks/636435090031441523","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":{"value":"Microsoft.Network/applicationGateways","localizedValue":"Microsoft.Network/applicationGateways"},"operationId":"7e7959c2-306d-429e-90bb-60dcfa4c00ce","operationName":{"value":"Microsoft.Network/applicationGateways/write","localizedValue":"Microsoft.Network/applicationGateways/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:30:03.1441523Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"330b7423-2ab2-4462-8921-5e75368d5593","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/330b7423-2ab2-4462-8921-5e75368d5593/ticks/636435089994563761","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"0cb927e8-f310-4f3d-9401-0800c262f692","responseBody":"{\"name\":\"publicip4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4\",\"etag\":\"W/\\\"5c582e93-d7d2-4332-9b2f-e81a69fe0252\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9d9b180b-bdde-4179-a46f-b530813fcfa5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.4563761Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"f8c907ef-6f9c-48f5-b405-59078a506a53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/f8c907ef-6f9c-48f5-b405-59078a506a53/ticks/636435089992539347","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"e87c9faa-f025-4a2d-8ecd-e57452875f7f","responseBody":"{\"name\":\"vnet4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"2d7ada13-760b-4a23-9748-310e117cf8b3\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"name\":\"subnet1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1\",\"etag\":\"W/\\\"29fa5dd5-24e4-4181-843c-b80524954a22\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.1/28\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:59.2539347Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"2467d555-4657-480c-8773-1937fc8759fa","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"312adc39-ec37-4d9f-b5e9-fd424a7c694a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/events/2467d555-4657-480c-8773-1937fc8759fa/ticks/636435089990039259","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"99cddcc7-9b37-42a4-bd4f-3224d22b1e18","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.1/16\"]},\"subnets\":[{\"properties\":{\"addressPrefix\":\"10.0.0.1/28\"},\"name\":\"subnet1\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:59.0039259Z","submissionTimestamp":"2017-10-13T16:30:20.085506Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"45113648-f10b-4353-abfe-89e4326396a3","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d74084f-a641-4eca-935e-b4f2491ebb52","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4/events/45113648-f10b-4353-abfe-89e4326396a3/ticks/636435089989876636","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d188d23-f9e8-4048-988e-b81c29ea76f7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:58.9876636Z","submissionTimestamp":"2017-10-13T16:30:19.7655571Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"85878fd6-62cd-4975-b99f-c7e359773838","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/85878fd6-62cd-4975-b99f-c7e359773838/ticks/636435089985579016","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T16:29:58.5579016Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507910126","nbf":"1507910126","exp":"1507914026","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYChbectarYBt3qMbbyeZWd2I0NrPW/+h8ljin7CCIOP9CgEA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.0.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"C8V_JpTdAU2P9JeH5TIRAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","description":"","eventDataId":"1b5e418a-f49c-40c5-b2d1-039a210dc178","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bfa11f58-b033-11e7-b930-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG/events/1b5e418a-f49c-40c5-b2d1-039a210dc178/ticks/636435089975109857","level":"Informational","resourceGroupName":"cli_test_ag_public_ip000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T16:29:57.5109857Z","submissionTimestamp":"2017-10-13T16:30:10.1801938Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['130316']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:35:32 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_O6j3ppAzOhYlbCMiXqQHksj0PncFqMeN","name":"ag_deploy_O6j3ppAzOhYlbCMiXqQHksj0PncFqMeN","properties":{"templateHash":"12830139978319472785","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T15:51:30.1103707Z","duration":"PT16M17.3619933S","correlationId":"ccc0c134-bbff-4968-a61b-431cbfc76efc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"publicip4"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":"Microsoft.Network/applicationGateways","resourceName":"test4"}],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"5ae066b0-bd3d-448b-95ed-dcebd0607e86","sku":{"name":"Standard_Medium","tier":"Standard","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"29de8023-bbaa-42bc-b4d4-03c8cda6082e\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1"}}}],"sslCertificates":[],"authenticationCertificates":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"29de8023-bbaa-42bc-b4d4-03c8cda6082e\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/frontendPorts/appGatewayFrontendPort","etag":"W/\"29de8023-bbaa-42bc-b4d4-03c8cda6082e\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/httpListeners/appGatewayHttpListener"}]}}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/backendAddressPools/appGatewayBackendPool","etag":"W/\"29de8023-bbaa-42bc-b4d4-03c8cda6082e\"","properties":{"provisioningState":"Succeeded","backendAddresses":[],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/requestRoutingRules/rule1"}]}}],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"29de8023-bbaa-42bc-b4d4-03c8cda6082e\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","connectionDraining":{"enabled":false,"drainTimeoutInSec":1},"pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/requestRoutingRules/rule1"}]}}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/httpListeners/appGatewayHttpListener","etag":"W/\"29de8023-bbaa-42bc-b4d4-03c8cda6082e\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/requestRoutingRules/rule1"}]}}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/requestRoutingRules/rule1","etag":"W/\"29de8023-bbaa-42bc-b4d4-03c8cda6082e\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}}}],"probes":[],"redirectConfigurations":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"}]}}'}
+ body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
- content-length: ['8879']
+ content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:54 GMT']
+ date: ['Fri, 13 Oct 2017 16:35:32 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1051,26 +2599,2338 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001?api-version=2017-05-10
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A35%3A43Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
response:
- body: {string: ''}
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 133770
+ bytes while replay. 133770'}
headers:
cache-control: [no-cache]
- content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:51:56 GMT']
+ content-length: ['133770']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:35:42 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZQVUJMSUM6NUZJUFhOWUw0S1IzWkRMQ1VYUklMM3wwMUY1MTAwNjMxNDcyMjA0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A35%3A53Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 137224
+ bytes while replay. 137224'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['137224']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:35:53 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:36:03 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A36%3A04Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 140678
+ bytes while replay. 140678'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['140678']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:36:04 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A36%3A14Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 144132
+ bytes while replay. 144132'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['144132']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:36:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A36%3A25Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 147586
+ bytes while replay. 147586'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['147586']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:36:25 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:36:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A36%3A35Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 147586
+ bytes while replay. 147586'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['147586']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:36:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A36%3A46Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 151040
+ bytes while replay. 151040'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['151040']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:36:46 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A36%3A57Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 154493
+ bytes while replay. 154493'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['154493']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:36:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:37:04 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A37%3A07Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 157947
+ bytes while replay. 157947'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['157947']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:37:08 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A37%3A18Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 161401
+ bytes while replay. 161401'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['161401']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:37:18 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A37%3A29Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 161401
+ bytes while replay. 161401'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['161401']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:37:29 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:37:34 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A37%3A39Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 164855
+ bytes while replay. 164855'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['164855']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:37:39 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A37%3A50Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 168309
+ bytes while replay. 168309'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['168309']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:37:49 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A38%3A00Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 171763
+ bytes while replay. 171763'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['171763']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:38:00 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:38:04 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A38%3A11Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 175217
+ bytes while replay. 175217'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['175217']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:38:10 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A38%3A21Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 182124
+ bytes while replay. 182124'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['182124']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:38:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A38%3A32Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 185577
+ bytes while replay. 185577'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['185577']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:38:32 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:38:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A38%3A42Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 185577
+ bytes while replay. 185577'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['185577']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:38:42 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A38%3A53Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 189031
+ bytes while replay. 189031'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['189031']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:38:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A39%3A03Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 192485
+ bytes while replay. 192485'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['192485']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:39:03 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:39:05 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A39%3A14Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 195938
+ bytes while replay. 195938'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['195938']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:39:13 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A39%3A24Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 199392
+ bytes while replay. 199392'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['199392']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:39:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A39%3A35Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 202846
+ bytes while replay. 202846'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['202846']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:39:34 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:39:36 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A39%3A45Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 206300
+ bytes while replay. 206300'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['206300']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:39:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A39%3A56Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 206300
+ bytes while replay. 206300'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['206300']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:39:58 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:40:05 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A40%3A07Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 209754
+ bytes while replay. 209754'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['209754']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:40:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A40%3A17Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 213208
+ bytes while replay. 213208'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['213208']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:40:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A40%3A28Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 223348
+ bytes while replay. 223348'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['223348']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:40:29 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:40:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A40%3A39Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 226802
+ bytes while replay. 226802'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['226802']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:40:39 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A40%3A49Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 230256
+ bytes while replay. 230256'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['230256']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:40:49 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A41%3A00Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 233710
+ bytes while replay. 233710'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['233710']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:41:00 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:41:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A41%3A10Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 233710
+ bytes while replay. 233710'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['233710']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:41:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A41%3A21Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 237164
+ bytes while replay. 237164'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['237164']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:41:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A41%3A32Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 244071
+ bytes while replay. 244071'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['244071']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:41:32 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:41:36 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A41%3A42Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 247525
+ bytes while replay. 247525'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['247525']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:41:42 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A41%3A53Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 247525
+ bytes while replay. 247525'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['247525']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:41:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A42%3A03Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 250979
+ bytes while replay. 250979'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['250979']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:42:03 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:42:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A42%3A14Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 254433
+ bytes while replay. 254433'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['254433']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:42:14 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A42%3A24Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 254433
+ bytes while replay. 254433'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['254433']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:42:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A42%3A35Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 261340
+ bytes while replay. 261340'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['261340']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:42:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:42:37 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A42%3A46Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 264794
+ bytes while replay. 264794'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['264794']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:42:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A42%3A56Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 268247
+ bytes while replay. 268247'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['268247']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:42:57 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A43%3A07Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 271701
+ bytes while replay. 271701'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['271701']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:43:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:43:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A43%3A17Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 275155
+ bytes while replay. 275155'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['275155']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:43:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A43%3A28Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 275155
+ bytes while replay. 275155'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['275155']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:43:28 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:43:38 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A43%3A38Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 278609
+ bytes while replay. 278609'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['278609']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:43:38 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A43%3A49Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 282063
+ bytes while replay. 282063'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['282063']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:43:49 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A44%3A00Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 285517
+ bytes while replay. 285517'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['285517']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:43:59 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:44:08 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A44%3A10Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 288971
+ bytes while replay. 288971'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['288971']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:44:10 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A44%3A21Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 288971
+ bytes while replay. 288971'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['288971']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:44:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A44%3A31Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 295878
+ bytes while replay. 295878'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['295878']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:44:31 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:44:39 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A44%3A42Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 299332
+ bytes while replay. 299332'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['299332']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:44:42 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A44%3A52Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 302785
+ bytes while replay. 302785'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['302785']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:44:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A45%3A03Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 306239
+ bytes while replay. 306239'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['306239']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:45:03 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:45:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A45%3A14Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 309692
+ bytes while replay. 309692'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['309692']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:45:13 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A45%3A24Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 313146
+ bytes while replay. 313146'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['313146']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:45:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A45%3A35Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 313146
+ bytes while replay. 313146'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['313146']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:45:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:45:40 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A45%3A46Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 316600
+ bytes while replay. 316600'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['316600']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:45:46 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A45%3A56Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 320052
+ bytes while replay. 320052'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['320052']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:45:57 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-02T00%3A46%3A07Z%20and%20correlationId%20eq%20%279052d505-ec9b-4b1d-843a-1518256f5a8d%27&api-version=2015-04-01
+ response:
+ body: {string: '!!! The response body has been omitted from the recording because
+ it is larger than 128 KB. It will be replaced with blank content of 326840
+ bytes while replay. 326840'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['326840']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:46:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936946872906047?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:46:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Resources/deployments/ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","name":"ag_deploy_pkgu079uQXr35uvkDpofdnDkxlUVCPVG","properties":{"templateHash":"8947542419965513313","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-13T16:45:47.2735513Z","duration":"PT15M49.0865313S","correlationId":"9052d505-ec9b-4b1d-843a-1518256f5a8d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"applicationGateways","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"publicip4"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4","resourceType":"Microsoft.Network/applicationGateways","resourceName":"test4"}],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"addc9aa3-751d-43f9-aa9d-8a1f30bb2363","sku":{"name":"Standard_Medium","tier":"Standard","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"3bb64475-a031-4b5d-8820-1f85e8470ddd\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1"}}}],"sslCertificates":[],"authenticationCertificates":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"3bb64475-a031-4b5d-8820-1f85e8470ddd\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/frontendPorts/appGatewayFrontendPort","etag":"W/\"3bb64475-a031-4b5d-8820-1f85e8470ddd\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/httpListeners/appGatewayHttpListener"}]}}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/backendAddressPools/appGatewayBackendPool","etag":"W/\"3bb64475-a031-4b5d-8820-1f85e8470ddd\"","properties":{"provisioningState":"Succeeded","backendAddresses":[],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/requestRoutingRules/rule1"}]}}],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"3bb64475-a031-4b5d-8820-1f85e8470ddd\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/requestRoutingRules/rule1"}]}}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/httpListeners/appGatewayHttpListener","etag":"W/\"3bb64475-a031-4b5d-8820-1f85e8470ddd\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/requestRoutingRules/rule1"}]}}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/requestRoutingRules/rule1","etag":"W/\"3bb64475-a031-4b5d-8820-1f85e8470ddd\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}}}],"probes":[],"redirectConfigurations":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/applicationGateways/test4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/publicIPAddresses/publicip4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip000001/providers/Microsoft.Network/virtualNetworks/vnet4"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['8817']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:46:10 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ag_public_ip000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 16:46:11 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGQUc6NUZQVUJMSUM6NUZJUFM1SDZDNlRIWVU1SFhTTVFQT3xCNUQwMkFBODJCNjM1NDg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_dns.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_dns.yaml
index bc2f62a6eeb..97e0e7993bc 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_dns.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_dns.yaml
@@ -1,1642 +1,1667 @@
interactions:
+- request:
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001","name":"cli_test_dns000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [10de30c6-ba88-11e7-aecd-74c63bed1137]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/dnszones?api-version=2017-09-01
response:
- body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns_v4b0_\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-1193-45c3944ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.azure-dns.com.","ns2-05.azure-dns.net.","ns3-05.azure-dns.org.","ns4-05.azure-dns.info."],"numberOfRecordSets":7}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/tjp-dns\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"0000000b-0000-0000-dc08-a8b1874ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":16}}]}'}
+ body: {string: '{"value":[]}'}
headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:41 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['929']
+ cache-control: [private]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:45 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: '{"location": "global"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [112fee5c-ba88-11e7-862b-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7021-ccd3944ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.azure-dns.com.","ns2-07.azure-dns.net.","ns3-07.azure-dns.org.","ns4-07.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-adb1-b5457e4fd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['483']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:44 GMT']
- ETag: [00000002-0000-0000-7021-ccd3944ed301]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['540']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:47 GMT']
+ etag: [00000002-0000-0000-adb1-b5457e4fd301]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [12c6dd66-ba88-11e7-8052-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7021-ccd3944ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.azure-dns.com.","ns2-07.azure-dns.net.","ns3-07.azure-dns.org.","ns4-07.azure-dns.info."],"numberOfRecordSets":2}}]}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:45 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['475']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones?api-version=2017-09-01
+ response:
+ body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-adb1-b5457e4fd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":2}}]}'}
+ headers:
+ cache-control: [private]
+ content-length: ['532']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:48 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [137528ee-ba88-11e7-b66b-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7021-ccd3944ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.azure-dns.com.","ns2-07.azure-dns.net.","ns3-07.azure-dns.org.","ns4-07.azure-dns.info."],"numberOfRecordSets":2}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:45 GMT']
- ETag: [00000002-0000-0000-7021-ccd3944ed301]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['463']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-adb1-b5457e4fd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":2}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['520']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:48 GMT']
+ etag: [00000002-0000-0000-adb1-b5457e4fd301]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [13dabf9e-ba88-11e7-98ad-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"af806cf0-c433-428d-8ceb-b32d0d2dcc7d","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"a5df14aa-c05d-4179-82e3-54bc72d865b1","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['328']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:48 GMT']
- ETag: [af806cf0-c433-428d-8ceb-b32d0d2dcc7d]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['385']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:49 GMT']
+ etag: [a5df14aa-c05d-4179-82e3-54bc72d865b1]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [15488d4a-ba88-11e7-bb66-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"af806cf0-c433-428d-8ceb-b32d0d2dcc7d","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:49 GMT']
- ETag: [af806cf0-c433-428d-8ceb-b32d0d2dcc7d]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['328']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"a5df14aa-c05d-4179-82e3-54bc72d865b1","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['385']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:51 GMT']
+ etag: [a5df14aa-c05d-4179-82e3-54bc72d865b1]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "af806cf0-c433-428d-8ceb-b32d0d2dcc7d", "properties": {"ARecords":
- [{"ipv4Address": "10.0.0.10"}], "TTL": 3600}}'
+ body: '{"properties": {"ARecords": [{"ipv4Address": "10.0.0.10"}], "TTL": 3600},
+ "etag": "a5df14aa-c05d-4179-82e3-54bc72d865b1"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['121']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [15905a66-ba88-11e7-b504-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"9f917511-c08a-499b-9cf4-7d9c2fcf2163","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:49 GMT']
- ETag: [9f917511-c08a-499b-9cf4-7d9c2fcf2163]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['355']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"26fe5bd1-2367-48f2-9ba0-e778daf23612","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['412']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:51 GMT']
+ etag: [26fe5bd1-2367-48f2-9ba0-e778daf23612]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [161b6874-ba88-11e7-a98c-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrsaalt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['172']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:50 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['229']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:52 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
body: '{"properties": {"ARecords": [{"ipv4Address": "10.0.0.10"}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['73']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [164e3df6-ba88-11e7-863b-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsaalt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"0694b8ae-5dac-4cab-afec-3f0cb32f52b7","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"0bafa79c-6dc2-47c6-a932-fad7f2e64e22","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['364']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:52 GMT']
- ETag: [0694b8ae-5dac-4cab-afec-3f0cb32f52b7]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ cache-control: [private]
+ content-length: ['421']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:54 GMT']
+ etag: [0bafa79c-6dc2-47c6-a932-fad7f2e64e22]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17a73710-ba88-11e7-9cfc-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"a91f68b5-c1a3-49a7-bbdf-b15942cae34f","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['346']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:53 GMT']
- ETag: [a91f68b5-c1a3-49a7-bbdf-b15942cae34f]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"241103e1-2d64-4d68-992c-a6d9dd4c3041","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['403']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:54 GMT']
+ etag: [241103e1-2d64-4d68-992c-a6d9dd4c3041]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1848ace6-ba88-11e7-a2c3-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"a91f68b5-c1a3-49a7-bbdf-b15942cae34f","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:58:57 GMT']
- ETag: [a91f68b5-c1a3-49a7-bbdf-b15942cae34f]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['346']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"241103e1-2d64-4d68-992c-a6d9dd4c3041","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['403']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:55 GMT']
+ etag: [241103e1-2d64-4d68-992c-a6d9dd4c3041]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "a91f68b5-c1a3-49a7-bbdf-b15942cae34f", "properties": {"TTL":
- 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}'
+ body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]},
+ "etag": "241103e1-2d64-4d68-992c-a6d9dd4c3041"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['135']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1abcbc80-ba88-11e7-acbc-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"e2db55ab-7719-4d45-9fc4-e5265d5cf63d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:00 GMT']
- ETag: [e2db55ab-7719-4d45-9fc4-e5265d5cf63d]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['384']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"3b3fcd9f-7857-42c0-85ce-ee0b1d3f953d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['441']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:55 GMT']
+ etag: [3b3fcd9f-7857-42c0-85ce-ee0b1d3f953d]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1c12b03e-ba88-11e7-9eb7-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrsaaaaalt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['175']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:00 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['232']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:56 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
body: '{"properties": {"TTL": 3600, "AAAARecords": [{"ipv6Address": "2001:db8:0:1:1:1:1:1"}]}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['87']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1c600b4c-ba88-11e7-a3d0-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaaalt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"116d2b4a-63b0-4ce9-9b49-84aa0426645a","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"444957e7-3399-45ea-a56e-fcfeeae783a5","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['393']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:02 GMT']
- ETag: [116d2b4a-63b0-4ce9-9b49-84aa0426645a]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ cache-control: [private]
+ content-length: ['450']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:49:58 GMT']
+ etag: [444957e7-3399-45ea-a56e-fcfeeae783a5]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1d26d4a6-ba88-11e7-bf95-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"e6c3276b-5f23-412b-aabd-2c7e73d42dcd","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"4f0f3ea9-e419-4806-aba5-df25e446a12a","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['340']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:02 GMT']
- ETag: [e6c3276b-5f23-412b-aabd-2c7e73d42dcd]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['397']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:01 GMT']
+ etag: [4f0f3ea9-e419-4806-aba5-df25e446a12a]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1de7228c-ba88-11e7-b7cf-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"e6c3276b-5f23-412b-aabd-2c7e73d42dcd","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:03 GMT']
- ETag: [e6c3276b-5f23-412b-aabd-2c7e73d42dcd]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['340']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"4f0f3ea9-e419-4806-aba5-df25e446a12a","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['397']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:02 GMT']
+ etag: [4f0f3ea9-e419-4806-aba5-df25e446a12a]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "e6c3276b-5f23-412b-aabd-2c7e73d42dcd", "properties": {"TTL":
- 3600, "caaRecords": [{"value": "my value", "tag": "foo", "flags": 0}]}}'
+ body: '{"properties": {"TTL": 3600, "caaRecords": [{"tag": "foo", "flags": 0,
+ "value": "my value"}]}, "etag": "4f0f3ea9-e419-4806-aba5-df25e446a12a"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['142']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1e6d888c-ba88-11e7-bf77-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"2e1e2126-e64d-401b-9db5-40e8cc733b55","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"c55557d0-4367-4d03-9bd0-416b6a3fe44d","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
value"}]}}'}
headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:04 GMT']
- ETag: [2e1e2126-e64d-401b-9db5-40e8cc733b55]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['382']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ cache-control: [private]
+ content-length: ['439']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:03 GMT']
+ etag: [c55557d0-4367-4d03-9bd0-416b6a3fe44d]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1f228fe8-ba88-11e7-832b-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrscaaalt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['174']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:05 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['231']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:04 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
- body: '{"properties": {"TTL": 3600, "caaRecords": [{"value": "my value", "tag":
- "foo", "flags": 0}]}}'
+ body: '{"properties": {"TTL": 3600, "caaRecords": [{"tag": "foo", "flags": 0,
+ "value": "my value"}]}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['94']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [1f5dc61e-ba88-11e7-a403-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaaalt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"432840fd-3494-496e-91c2-6ddf1e9f21d2","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"18f66646-2ac5-4194-b9fc-d766e0144882","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
value"}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['391']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:07 GMT']
- ETag: [432840fd-3494-496e-91c2-6ddf1e9f21d2]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ cache-control: [private]
+ content-length: ['448']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:05 GMT']
+ etag: [18f66646-2ac5-4194-b9fc-d766e0144882]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [201db5ee-ba88-11e7-8f38-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"3c8ee413-4481-4bc3-ace6-587f765cbbdf","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"8b0cfcfd-15b6-4537-9749-8e6b3ac6bcc5","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['334']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:08 GMT']
- ETag: [3c8ee413-4481-4bc3-ace6-587f765cbbdf]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['391']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:06 GMT']
+ etag: [8b0cfcfd-15b6-4537-9749-8e6b3ac6bcc5]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [211fef52-ba88-11e7-ba0b-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"3c8ee413-4481-4bc3-ace6-587f765cbbdf","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:08 GMT']
- ETag: [3c8ee413-4481-4bc3-ace6-587f765cbbdf]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['334']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"8b0cfcfd-15b6-4537-9749-8e6b3ac6bcc5","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['391']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:07 GMT']
+ etag: [8b0cfcfd-15b6-4537-9749-8e6b3ac6bcc5]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "3c8ee413-4481-4bc3-ace6-587f765cbbdf", "properties": {"CNAMERecord":
- {"cname": "mycname"}, "TTL": 3600}}'
+ body: '{"properties": {"CNAMERecord": {"cname": "mycname"}, "TTL": 3600}, "etag":
+ "8b0cfcfd-15b6-4537-9749-8e6b3ac6bcc5"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['114']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [21823dc2-ba88-11e7-8749-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"d407eda0-da5e-4a38-898d-11d87d878dd1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:10 GMT']
- ETag: [d407eda0-da5e-4a38-898d-11d87d878dd1]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['368']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1d66401f-dade-4f56-bf18-a6bd69b31324","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['425']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:09 GMT']
+ etag: [1d66401f-dade-4f56-bf18-a6bd69b31324]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [221edd8a-ba88-11e7-a52b-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrscnamealt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['176']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:10 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['233']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:09 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
body: '{"properties": {"CNAMERecord": {"cname": "mycname"}, "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['66']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [226071d2-ba88-11e7-ad13-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscnamealt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f2cc857b-63fb-421c-b441-2cec82efc3f4","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5fad504f-db89-4640-ba3d-a6ca6dcf7d1c","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['377']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:12 GMT']
- ETag: [f2cc857b-63fb-421c-b441-2cec82efc3f4]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['434']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:10 GMT']
+ etag: [5fad504f-db89-4640-ba3d-a6ca6dcf7d1c]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [23422ee4-ba88-11e7-9679-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"c5cbca20-6681-4b2b-917e-9f91a35f32d2","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['334']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:14 GMT']
- ETag: [c5cbca20-6681-4b2b-917e-9f91a35f32d2]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"c85ccd78-abe2-4577-a275-11a18a825ebd","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['391']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:11 GMT']
+ etag: [c85ccd78-abe2-4577-a275-11a18a825ebd]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [24643e74-ba88-11e7-93a5-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"c5cbca20-6681-4b2b-917e-9f91a35f32d2","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:14 GMT']
- ETag: [c5cbca20-6681-4b2b-917e-9f91a35f32d2]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['334']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"c85ccd78-abe2-4577-a275-11a18a825ebd","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['391']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:12 GMT']
+ etag: [c85ccd78-abe2-4577-a275-11a18a825ebd]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "c5cbca20-6681-4b2b-917e-9f91a35f32d2", "properties": {"TTL":
- 3600, "MXRecords": [{"exchange": "12", "preference": 13}]}}'
+ body: '{"properties": {"MXRecords": [{"preference": 13, "exchange": "12"}], "TTL":
+ 3600}, "etag": "c85ccd78-abe2-4577-a275-11a18a825ebd"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['130']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [24da25f4-ba88-11e7-ba15-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"17655581-79aa-4298-b11c-b49462752eb3","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:15 GMT']
- ETag: [17655581-79aa-4298-b11c-b49462752eb3]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['367']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"47cf1c41-5d29-46c1-a564-100a972b5d94","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['424']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:13 GMT']
+ etag: [47cf1c41-5d29-46c1-a564-100a972b5d94]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [25757062-ba88-11e7-ab37-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrsmxalt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['173']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:16 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['230']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:13 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
- body: '{"properties": {"TTL": 3600, "MXRecords": [{"exchange": "12", "preference":
- 13}]}}'
+ body: '{"properties": {"MXRecords": [{"preference": 13, "exchange": "12"}], "TTL":
+ 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['82']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [25cdddfa-ba88-11e7-8159-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmxalt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"554c4ef2-db51-46ba-afe4-cb11ba01795c","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"6090f490-6188-4ab4-8e08-e5c32a37a466","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['376']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:17 GMT']
- ETag: [554c4ef2-db51-46ba-afe4-cb11ba01795c]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['433']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:14 GMT']
+ etag: [6090f490-6188-4ab4-8e08-e5c32a37a466]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [266a04b0-ba88-11e7-8449-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"db1893e6-010b-4bb8-b659-8ea5a4ad955c","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"3cdaadf0-dd35-4ad6-b1f0-16d4f8d85f0a","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['334']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:19 GMT']
- ETag: [db1893e6-010b-4bb8-b659-8ea5a4ad955c]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['391']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:15 GMT']
+ etag: [3cdaadf0-dd35-4ad6-b1f0-16d4f8d85f0a]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [27a73f7a-ba88-11e7-880d-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"db1893e6-010b-4bb8-b659-8ea5a4ad955c","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:19 GMT']
- ETag: [db1893e6-010b-4bb8-b659-8ea5a4ad955c]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['334']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"3cdaadf0-dd35-4ad6-b1f0-16d4f8d85f0a","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['391']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:16 GMT']
+ etag: [3cdaadf0-dd35-4ad6-b1f0-16d4f8d85f0a]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "db1893e6-010b-4bb8-b659-8ea5a4ad955c", "properties": {"TTL":
- 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}'
+ body: '{"properties": {"TTL": 3600, "NSRecords": [{"nsdname": "foobar.com"}]},
+ "etag": "3cdaadf0-dd35-4ad6-b1f0-16d4f8d85f0a"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['119']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [27d82ea8-ba88-11e7-88da-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8e80256d-19e1-4a24-9c58-6aa3fe803201","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:20 GMT']
- ETag: [8e80256d-19e1-4a24-9c58-6aa3fe803201]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['358']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"497e3941-6b41-4052-bd03-bb38f88bdf5b","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['415']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:16 GMT']
+ etag: [497e3941-6b41-4052-bd03-bb38f88bdf5b]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [284d3cf0-ba88-11e7-ba33-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrsnsalt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['173']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:21 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['230']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:18 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
body: '{"properties": {"TTL": 3600, "NSRecords": [{"nsdname": "foobar.com"}]}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['71']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [28f7ea5e-ba88-11e7-b720-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsnsalt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"9dc44dad-ffb6-450c-b295-f296c05023f2","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"cf0bae95-84dc-458c-b990-1b4d42ee6925","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['367']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:22 GMT']
- ETag: [9dc44dad-ffb6-450c-b295-f296c05023f2]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['424']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:18 GMT']
+ etag: [cf0bae95-84dc-458c-b990-1b4d42ee6925]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [29997c94-ba88-11e7-9132-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"8d85fe92-9004-42a0-a4ef-f63fadffec95","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"93d08ce7-be1c-4898-9011-6142f44384cf","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['340']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:23 GMT']
- ETag: [8d85fe92-9004-42a0-a4ef-f63fadffec95]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['397']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:19 GMT']
+ etag: [93d08ce7-be1c-4898-9011-6142f44384cf]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2a14f0fa-ba88-11e7-b243-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"8d85fe92-9004-42a0-a4ef-f63fadffec95","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:24 GMT']
- ETag: [8d85fe92-9004-42a0-a4ef-f63fadffec95]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['340']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"93d08ce7-be1c-4898-9011-6142f44384cf","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['397']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:20 GMT']
+ etag: [93d08ce7-be1c-4898-9011-6142f44384cf]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "8d85fe92-9004-42a0-a4ef-f63fadffec95", "properties": {"TTL":
- 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}'
+ body: '{"properties": {"PTRRecords": [{"ptrdname": "foobar.com"}], "TTL": 3600},
+ "etag": "93d08ce7-be1c-4898-9011-6142f44384cf"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['121']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2b0892f6-ba88-11e7-9cf6-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"07d99d0b-94c4-4625-8a95-ee6dbd3e63cd","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:26 GMT']
- ETag: [07d99d0b-94c4-4625-8a95-ee6dbd3e63cd]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['365']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"dba4708d-f962-4a06-b544-d9d473bf1a2f","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['422']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:20 GMT']
+ etag: [dba4708d-f962-4a06-b544-d9d473bf1a2f]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2bfb91be-ba88-11e7-99a0-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrsptralt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['174']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:26 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['231']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:21 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
- body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "foobar.com"}]}}'
+ body: '{"properties": {"PTRRecords": [{"ptrdname": "foobar.com"}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['73']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2c36996c-ba88-11e7-af81-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptralt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"f06b40f2-a89d-4988-b26b-03aff9b7a751","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"0b4cbd01-4e95-4f90-ae6b-7dcb038f0e70","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['374']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:27 GMT']
- ETag: [f06b40f2-a89d-4988-b26b-03aff9b7a751]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['431']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:22 GMT']
+ etag: [0b4cbd01-4e95-4f90-ae6b-7dcb038f0e70]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2d10a36e-ba88-11e7-bbfa-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"2f256b2e-a2a2-4b47-9b8b-9d8ca35367a7","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3de18551-6ef2-4c2c-a21a-4d4383fa2948","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['340']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:29 GMT']
- ETag: [2f256b2e-a2a2-4b47-9b8b-9d8ca35367a7]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['397']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:23 GMT']
+ etag: [3de18551-6ef2-4c2c-a21a-4d4383fa2948]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2dc3b536-ba88-11e7-81ba-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"2f256b2e-a2a2-4b47-9b8b-9d8ca35367a7","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:29 GMT']
- ETag: [2f256b2e-a2a2-4b47-9b8b-9d8ca35367a7]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['340']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"3de18551-6ef2-4c2c-a21a-4d4383fa2948","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['397']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:23 GMT']
+ etag: [3de18551-6ef2-4c2c-a21a-4d4383fa2948]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "2f256b2e-a2a2-4b47-9b8b-9d8ca35367a7", "properties": {"SRVRecords":
- [{"target": "target.com", "priority": 1, "weight": 50, "port": 1234}], "TTL":
- 3600}}'
+ body: '{"properties": {"SRVRecords": [{"target": "target.com", "weight": 50, "priority":
+ 1, "port": 1234}], "TTL": 3600}, "etag": "3de18551-6ef2-4c2c-a21a-4d4383fa2948"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['162']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2e256ca4-ba88-11e7-83c7-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"162405d3-f5f3-4558-938c-1680477c779b","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:32 GMT']
- ETag: [162405d3-f5f3-4558-938c-1680477c779b]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['400']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"e339304b-7fdf-4d73-a246-6d5478d1960d","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['457']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:24 GMT']
+ etag: [e339304b-7fdf-4d73-a246-6d5478d1960d]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2f8ef58c-ba88-11e7-8b65-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrssrvalt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['174']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:32 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['231']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:24 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
- body: '{"properties": {"SRVRecords": [{"target": "target.com", "priority": 1,
- "weight": 50, "port": 1234}], "TTL": 3600}}'
+ body: '{"properties": {"SRVRecords": [{"target": "target.com", "weight": 50, "priority":
+ 1, "port": 1234}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['114']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [2ff69c24-ba88-11e7-a87c-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrvalt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"37001a1f-f502-47c4-9bba-dd43395394bf","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"c11d8791-b8bd-43ee-b6cd-15710f89c0a5","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['409']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:34 GMT']
- ETag: [37001a1f-f502-47c4-9bba-dd43395394bf]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['466']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:25 GMT']
+ etag: [c11d8791-b8bd-43ee-b6cd-15710f89c0a5]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: '{"properties": {"TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['29']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [30c19f70-ba88-11e7-844d-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"80ab0b02-cad7-44b0-8895-dfacc302028c","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"3523cd89-6855-48ba-8cbe-cb59ffae90bf","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['340']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:35 GMT']
- ETag: [80ab0b02-cad7-44b0-8895-dfacc302028c]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['397']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:26 GMT']
+ etag: [3523cd89-6855-48ba-8cbe-cb59ffae90bf]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [314646a6-ba88-11e7-945e-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"80ab0b02-cad7-44b0-8895-dfacc302028c","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:36 GMT']
- ETag: [80ab0b02-cad7-44b0-8895-dfacc302028c]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['340']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"3523cd89-6855-48ba-8cbe-cb59ffae90bf","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['397']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:27 GMT']
+ etag: [3523cd89-6855-48ba-8cbe-cb59ffae90bf]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "80ab0b02-cad7-44b0-8895-dfacc302028c", "properties": {"TTL":
- 3600, "TXTRecords": [{"value": ["some_text"]}]}}'
+ body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]},
+ "etag": "3523cd89-6855-48ba-8cbe-cb59ffae90bf"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['119']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3189e8e4-ba88-11e7-88e2-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"44d91295-bc4d-4162-885c-62ce83044002","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:37 GMT']
- ETag: [44d91295-bc4d-4162-885c-62ce83044002]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['363']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"79104861-7b58-49f9-91a5-828d160c7035","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['420']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:28 GMT']
+ etag: [79104861-7b58-49f9-91a5-828d160c7035]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [323cf276-ba88-11e7-a3bf-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrstxtalt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['174']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:37 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['231']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:28 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["some_text"]}]}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['71']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [328f12ba-ba88-11e7-827e-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxtalt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e0e2b22c-7d56-475f-a9fb-5e81dd66a793","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ac836cae-03f7-46c9-a41b-768c2353cb6f","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['372']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:38 GMT']
- ETag: [e0e2b22c-7d56-475f-a9fb-5e81dd66a793]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['429']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:29 GMT']
+ etag: [ac836cae-03f7-46c9-a41b-768c2353cb6f]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [33656cb8-ba88-11e7-99e1-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"9f917511-c08a-499b-9cf4-7d9c2fcf2163","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:39 GMT']
- ETag: [9f917511-c08a-499b-9cf4-7d9c2fcf2163]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['355']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"26fe5bd1-2367-48f2-9ba0-e778daf23612","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['412']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:29 GMT']
+ etag: [26fe5bd1-2367-48f2-9ba0-e778daf23612]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "9f917511-c08a-499b-9cf4-7d9c2fcf2163", "properties": {"ARecords":
- [{"ipv4Address": "10.0.0.10"}, {"ipv4Address": "10.0.0.11"}], "TTL": 3600}}'
+ body: '{"properties": {"ARecords": [{"ipv4Address": "10.0.0.10"}, {"ipv4Address":
+ "10.0.0.11"}], "TTL": 3600}, "etag": "26fe5bd1-2367-48f2-9ba0-e778daf23612"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['151']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [33a59d36-ba88-11e7-99f7-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"29f431c3-fb8e-4a27-8f70-8e1c8ecb618b","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:39 GMT']
- ETag: [29f431c3-fb8e-4a27-8f70-8e1c8ecb618b]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['383']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"6e7cb5c9-6643-4b4b-a806-6825b6a40b01","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['440']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:30 GMT']
+ etag: [6e7cb5c9-6643-4b4b-a806-6825b6a40b01]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3423d59e-ba88-11e7-a671-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e908fcb9-b859-4fa6-a2fc-76e89cfd49e3","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-07.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:41 GMT']
- ETag: [e908fcb9-b859-4fa6-a2fc-76e89cfd49e3]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['483']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"46fd3a99-d99b-4ff6-a9b0-7d7daac55c40","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-03.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['540']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:31 GMT']
+ etag: [46fd3a99-d99b-4ff6-a9b0-7d7daac55c40]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3496a1c6-ba88-11e7-99d5-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"e908fcb9-b859-4fa6-a2fc-76e89cfd49e3","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-07.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:41 GMT']
- ETag: [e908fcb9-b859-4fa6-a2fc-76e89cfd49e3]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['483']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"46fd3a99-d99b-4ff6-a9b0-7d7daac55c40","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-03.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['540']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:31 GMT']
+ etag: [46fd3a99-d99b-4ff6-a9b0-7d7daac55c40]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "e908fcb9-b859-4fa6-a2fc-76e89cfd49e3", "properties": {"SOARecord":
- {"expireTime": 30, "refreshTime": 60, "email": "foo.com", "serialNumber": 123,
- "minimumTTL": 20, "host": "ns1-07.azure-dns.com.", "retryTime": 90}, "TTL":
- 3600}}'
+ body: '{"properties": {"SOARecord": {"minimumTTL": 20, "expireTime": 30, "retryTime":
+ 90, "refreshTime": 60, "email": "foo.com", "serialNumber": 123, "host": "ns1-03.azure-dns.com."},
+ "TTL": 3600}, "etag": "46fd3a99-d99b-4ff6-a9b0-7d7daac55c40"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['238']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [34dacfe6-ba88-11e7-b803-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"696ea606-e022-459b-a94d-292f458255c1","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-07.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:42 GMT']
- ETag: [696ea606-e022-459b-a94d-292f458255c1]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['450']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"99cc620f-4a6c-4d81-b4fa-0851991a9b28","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-03.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['507']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:32 GMT']
+ etag: [99cc620f-4a6c-4d81-b4fa-0851991a9b28]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3585be8a-ba88-11e7-a177-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''longtxt''
- does not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['171']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:42 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ does not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['228']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:33 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234",
@@ -1644,895 +1669,917 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['566']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [35df7000-ba88-11e7-80c1-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/longtxt?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"bf27370d-9c28-4bb2-a730-61b9b04dbb15","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"33088a44-4906-4799-b175-20cc51c8ec54","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}}'}
headers:
- Cache-Control: [private]
- Content-Length: ['857']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:44 GMT']
- ETag: [bf27370d-9c28-4bb2-a730-61b9b04dbb15]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['914']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:33 GMT']
+ etag: [33088a44-4906-4799-b175-20cc51c8ec54]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3658aa34-ba88-11e7-a80f-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-7021-ccd3944ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-07.azure-dns.com.","ns2-07.azure-dns.net.","ns3-07.azure-dns.org.","ns4-07.azure-dns.info."],"numberOfRecordSets":21}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:44 GMT']
- ETag: [00000002-0000-0000-7021-ccd3944ed301]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['464']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-adb1-b5457e4fd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-03.azure-dns.com.","ns2-03.azure-dns.net.","ns3-03.azure-dns.org.","ns4-03.azure-dns.info."],"numberOfRecordSets":21}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['521']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:35 GMT']
+ etag: [00000002-0000-0000-adb1-b5457e4fd301]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [36a0a534-ba88-11e7-ae39-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"29f431c3-fb8e-4a27-8f70-8e1c8ecb618b","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:44 GMT']
- ETag: [29f431c3-fb8e-4a27-8f70-8e1c8ecb618b]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['383']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11997']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"6e7cb5c9-6643-4b4b-a806-6825b6a40b01","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['440']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:35 GMT']
+ etag: [6e7cb5c9-6643-4b4b-a806-6825b6a40b01]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [36ded198-ba88-11e7-bd09-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"ff2ba5a9-cff9-4701-8a87-b4fcedf463a7","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-07.azure-dns.com."},{"nsdname":"ns2-07.azure-dns.net."},{"nsdname":"ns3-07.azure-dns.org."},{"nsdname":"ns4-07.azure-dns.info."}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"696ea606-e022-459b-a94d-292f458255c1","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-07.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"bf27370d-9c28-4bb2-a730-61b9b04dbb15","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"29f431c3-fb8e-4a27-8f70-8e1c8ecb618b","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"e2db55ab-7719-4d45-9fc4-e5265d5cf63d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"116d2b4a-63b0-4ce9-9b49-84aa0426645a","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"0694b8ae-5dac-4cab-afec-3f0cb32f52b7","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"2e1e2126-e64d-401b-9db5-40e8cc733b55","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
- value"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"432840fd-3494-496e-91c2-6ddf1e9f21d2","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
- value"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"d407eda0-da5e-4a38-898d-11d87d878dd1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f2cc857b-63fb-421c-b441-2cec82efc3f4","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"17655581-79aa-4298-b11c-b49462752eb3","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"554c4ef2-db51-46ba-afe4-cb11ba01795c","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8e80256d-19e1-4a24-9c58-6aa3fe803201","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"9dc44dad-ffb6-450c-b295-f296c05023f2","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"07d99d0b-94c4-4625-8a95-ee6dbd3e63cd","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"f06b40f2-a89d-4988-b26b-03aff9b7a751","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"162405d3-f5f3-4558-938c-1680477c779b","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"37001a1f-f502-47c4-9bba-dd43395394bf","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"44d91295-bc4d-4162-885c-62ce83044002","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e0e2b22c-7d56-475f-a9fb-5e81dd66a793","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:44 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['8595']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2017-09-01
+ response:
+ body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"9e49e44e-fba0-43c0-bee5-d8db18d1f996","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-03.azure-dns.com."},{"nsdname":"ns2-03.azure-dns.net."},{"nsdname":"ns3-03.azure-dns.org."},{"nsdname":"ns4-03.azure-dns.info."}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"99cc620f-4a6c-4d81-b4fa-0851991a9b28","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"foo.com","expireTime":30,"host":"ns1-03.azure-dns.com.","minimumTTL":20,"refreshTime":60,"retryTime":90,"serialNumber":123}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"33088a44-4906-4799-b175-20cc51c8ec54","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"6e7cb5c9-6643-4b4b-a806-6825b6a40b01","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"3b3fcd9f-7857-42c0-85ce-ee0b1d3f953d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaaalt","name":"myrsaaaaalt","type":"Microsoft.Network\/dnszones\/AAAA","etag":"444957e7-3399-45ea-a56e-fcfeeae783a5","properties":{"fqdn":"myrsaaaaalt.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsaalt","name":"myrsaalt","type":"Microsoft.Network\/dnszones\/A","etag":"0bafa79c-6dc2-47c6-a932-fad7f2e64e22","properties":{"fqdn":"myrsaalt.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"c55557d0-4367-4d03-9bd0-416b6a3fe44d","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
+ value"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaaalt","name":"myrscaaalt","type":"Microsoft.Network\/dnszones\/CAA","etag":"18f66646-2ac5-4194-b9fc-d766e0144882","properties":{"fqdn":"myrscaaalt.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
+ value"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1d66401f-dade-4f56-bf18-a6bd69b31324","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscnamealt","name":"myrscnamealt","type":"Microsoft.Network\/dnszones\/CNAME","etag":"5fad504f-db89-4640-ba3d-a6ca6dcf7d1c","properties":{"fqdn":"myrscnamealt.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"47cf1c41-5d29-46c1-a564-100a972b5d94","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmxalt","name":"myrsmxalt","type":"Microsoft.Network\/dnszones\/MX","etag":"6090f490-6188-4ab4-8e08-e5c32a37a466","properties":{"fqdn":"myrsmxalt.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"497e3941-6b41-4052-bd03-bb38f88bdf5b","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsnsalt","name":"myrsnsalt","type":"Microsoft.Network\/dnszones\/NS","etag":"cf0bae95-84dc-458c-b990-1b4d42ee6925","properties":{"fqdn":"myrsnsalt.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"dba4708d-f962-4a06-b544-d9d473bf1a2f","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptralt","name":"myrsptralt","type":"Microsoft.Network\/dnszones\/PTR","etag":"0b4cbd01-4e95-4f90-ae6b-7dcb038f0e70","properties":{"fqdn":"myrsptralt.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"e339304b-7fdf-4d73-a246-6d5478d1960d","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrvalt","name":"myrssrvalt","type":"Microsoft.Network\/dnszones\/SRV","etag":"c11d8791-b8bd-43ee-b6cd-15710f89c0a5","properties":{"fqdn":"myrssrvalt.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"79104861-7b58-49f9-91a5-828d160c7035","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ac836cae-03f7-46c9-a41b-768c2353cb6f","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'}
+ headers:
+ cache-control: [private]
+ content-length: ['9792']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:36 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [373e56f4-ba88-11e7-93be-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"bf27370d-9c28-4bb2-a730-61b9b04dbb15","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"44d91295-bc4d-4162-885c-62ce83044002","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"e0e2b22c-7d56-475f-a9fb-5e81dd66a793","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:46 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['1606']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT?api-version=2017-09-01
+ response:
+ body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/longtxt","name":"longtxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"33088a44-4906-4799-b175-20cc51c8ec54","properties":{"fqdn":"longtxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234","56789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"79104861-7b58-49f9-91a5-828d160c7035","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxtalt","name":"myrstxtalt","type":"Microsoft.Network\/dnszones\/TXT","etag":"ac836cae-03f7-46c9-a41b-768c2353cb6f","properties":{"fqdn":"myrstxtalt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}]}'}
+ headers:
+ cache-control: [private]
+ content-length: ['1777']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:37 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [37a0af38-ba88-11e7-af6f-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"29f431c3-fb8e-4a27-8f70-8e1c8ecb618b","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:46 GMT']
- ETag: [29f431c3-fb8e-4a27-8f70-8e1c8ecb618b]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['383']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"6e7cb5c9-6643-4b4b-a806-6825b6a40b01","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"},{"ipv4Address":"10.0.0.11"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['440']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:38 GMT']
+ etag: [6e7cb5c9-6643-4b4b-a806-6825b6a40b01]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "29f431c3-fb8e-4a27-8f70-8e1c8ecb618b", "properties": {"ARecords":
- [{"ipv4Address": "10.0.0.11"}], "TTL": 3600}}'
+ body: '{"properties": {"ARecords": [{"ipv4Address": "10.0.0.11"}], "TTL": 3600},
+ "etag": "6e7cb5c9-6643-4b4b-a806-6825b6a40b01"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['121']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [37e2cf0c-ba88-11e7-8d4a-74c63bed1137]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d7fe154f-158c-42ca-aaa1-47caa06bc7af","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:47 GMT']
- ETag: [d7fe154f-158c-42ca-aaa1-47caa06bc7af]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['355']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11997']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"4abbc970-bb68-4945-8bd5-ec47b8b514c4","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['412']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:39 GMT']
+ etag: [4abbc970-bb68-4945-8bd5-ec47b8b514c4]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [38bb1f92-ba88-11e7-8d85-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"e2db55ab-7719-4d45-9fc4-e5265d5cf63d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:48 GMT']
- ETag: [e2db55ab-7719-4d45-9fc4-e5265d5cf63d]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['384']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11997']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myrsaaaa","name":"myrsaaaa","type":"Microsoft.Network\/dnszones\/AAAA","etag":"3b3fcd9f-7857-42c0-85ce-ee0b1d3f953d","properties":{"fqdn":"myrsaaaa.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:db8:0:1:1:1:1:1"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['441']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:40 GMT']
+ etag: [3b3fcd9f-7857-42c0-85ce-ee0b1d3f953d]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [38eb0758-ba88-11e7-b71b-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myrsaaaa?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 19:59:48 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:40 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [39841ba4-ba88-11e7-b96d-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"2e1e2126-e64d-401b-9db5-40e8cc733b55","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/myrscaa","name":"myrscaa","type":"Microsoft.Network\/dnszones\/CAA","etag":"c55557d0-4367-4d03-9bd0-416b6a3fe44d","properties":{"fqdn":"myrscaa.myzone.com.","TTL":3600,"caaRecords":[{"flags":0,"tag":"foo","value":"my
value"}]}}'}
headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:49 GMT']
- ETag: [2e1e2126-e64d-401b-9db5-40e8cc733b55]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['382']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ cache-control: [private]
+ content-length: ['439']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:41 GMT']
+ etag: [c55557d0-4367-4d03-9bd0-416b6a3fe44d]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [39e4c1c6-ba88-11e7-bdfa-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/myrscaa?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 19:59:51 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:42 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3ac775cc-ba88-11e7-9712-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"d407eda0-da5e-4a38-898d-11d87d878dd1","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:52 GMT']
- ETag: [d407eda0-da5e-4a38-898d-11d87d878dd1]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['368']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/myrscname","name":"myrscname","type":"Microsoft.Network\/dnszones\/CNAME","etag":"1d66401f-dade-4f56-bf18-a6bd69b31324","properties":{"fqdn":"myrscname.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"mycname"}}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['425']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:43 GMT']
+ etag: [1d66401f-dade-4f56-bf18-a6bd69b31324]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3b1abd66-ba88-11e7-9493-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/myrscname?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 19:59:52 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:43 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3bc53724-ba88-11e7-b11e-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"17655581-79aa-4298-b11c-b49462752eb3","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:54 GMT']
- ETag: [17655581-79aa-4298-b11c-b49462752eb3]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['367']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/myrsmx","name":"myrsmx","type":"Microsoft.Network\/dnszones\/MX","etag":"47cf1c41-5d29-46c1-a564-100a972b5d94","properties":{"fqdn":"myrsmx.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"12","preference":13}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['424']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:44 GMT']
+ etag: [47cf1c41-5d29-46c1-a564-100a972b5d94]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3c200008-ba88-11e7-bc77-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/myrsmx?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 19:59:54 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:45 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3ccd8646-ba88-11e7-9584-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"8e80256d-19e1-4a24-9c58-6aa3fe803201","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:56 GMT']
- ETag: [8e80256d-19e1-4a24-9c58-6aa3fe803201]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['358']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myrsns","name":"myrsns","type":"Microsoft.Network\/dnszones\/NS","etag":"497e3941-6b41-4052-bd03-bb38f88bdf5b","properties":{"fqdn":"myrsns.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"foobar.com"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['415']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:45 GMT']
+ etag: [497e3941-6b41-4052-bd03-bb38f88bdf5b]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3d543f4c-ba88-11e7-953d-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myrsns?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 19:59:56 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:46 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3e1e393a-ba88-11e7-99f2-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"07d99d0b-94c4-4625-8a95-ee6dbd3e63cd","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:58 GMT']
- ETag: [07d99d0b-94c4-4625-8a95-ee6dbd3e63cd]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['365']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myrsptr","name":"myrsptr","type":"Microsoft.Network\/dnszones\/PTR","etag":"dba4708d-f962-4a06-b544-d9d473bf1a2f","properties":{"fqdn":"myrsptr.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"foobar.com"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['422']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:46 GMT']
+ etag: [dba4708d-f962-4a06-b544-d9d473bf1a2f]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3e7cf2c6-ba88-11e7-904e-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myrsptr?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 19:59:59 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:48 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3f17feac-ba88-11e7-94fd-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"162405d3-f5f3-4558-938c-1680477c779b","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 19:59:59 GMT']
- ETag: [162405d3-f5f3-4558-938c-1680477c779b]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['400']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/myrssrv","name":"myrssrv","type":"Microsoft.Network\/dnszones\/SRV","etag":"e339304b-7fdf-4d73-a246-6d5478d1960d","properties":{"fqdn":"myrssrv.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.com","weight":50}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['457']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:49 GMT']
+ etag: [e339304b-7fdf-4d73-a246-6d5478d1960d]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [3f4e2992-ba88-11e7-9cfa-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/myrssrv?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 19:59:59 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:49 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [4016cd46-ba88-11e7-a11c-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"44d91295-bc4d-4162-885c-62ce83044002","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 20:00:02 GMT']
- ETag: [44d91295-bc4d-4162-885c-62ce83044002]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['363']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myrstxt","name":"myrstxt","type":"Microsoft.Network\/dnszones\/TXT","etag":"79104861-7b58-49f9-91a5-828d160c7035","properties":{"fqdn":"myrstxt.myzone.com.","TTL":3600,"TXTRecords":[{"value":["some_text"]}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['420']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:50 GMT']
+ etag: [79104861-7b58-49f9-91a5-828d160c7035]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [41a5ae18-ba88-11e7-a4d7-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myrstxt?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 20:00:03 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:52 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [421039ac-ba88-11e7-9cce-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d7fe154f-158c-42ca-aaa1-47caa06bc7af","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 20:00:04 GMT']
- ETag: [d7fe154f-158c-42ca-aaa1-47caa06bc7af]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['355']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11996']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"4abbc970-bb68-4945-8bd5-ec47b8b514c4","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['412']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:52 GMT']
+ etag: [4abbc970-bb68-4945-8bd5-ec47b8b514c4]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [4249a598-ba88-11e7-872f-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
- response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"d7fe154f-158c-42ca-aaa1-47caa06bc7af","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'}
- headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 20:00:04 GMT']
- ETag: [d7fe154f-158c-42ca-aaa1-47caa06bc7af]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- content-length: ['355']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ response:
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_test_dns000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/myrsa","name":"myrsa","type":"Microsoft.Network\/dnszones\/A","etag":"4abbc970-bb68-4945-8bd5-ec47b8b514c4","properties":{"fqdn":"myrsa.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.11"}]}}'}
+ headers:
+ cache-control: [private]
+ content-length: ['412']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:53 GMT']
+ etag: [4abbc970-bb68-4945-8bd5-ec47b8b514c4]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [429f0214-ba88-11e7-bd39-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 20:00:05 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:53 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [4343bfc8-ba88-11e7-9b94-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does
- not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['169']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 20:00:06 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['226']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:54 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [4394186e-ba88-11e7-b73b-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Cache-Control: [private]
- Date: ['Thu, 26 Oct 2017 20:00:06 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
+ date: ['Fri, 27 Oct 2017 23:50:55 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 204, message: No Content}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [43f92a58-ba88-11e7-baa5-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com/A/myrsa?api-version=2017-09-01
response:
body: {string: '{"code":"NotFound","message":"The resource record ''myrsa'' does
- not exist in resource group ''cli_test_dns'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
- headers:
- Cache-Control: [private]
- Content-Length: ['169']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 20:00:07 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11997']
+ not exist in resource group ''cli_test_dns000001'' of subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590''."}'}
+ headers:
+ cache-control: [private]
+ content-length: ['226']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:50:56 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [4450f20a-ba88-11e7-b78a-74c63bed1137]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com:443/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsOperationStatuses/delzone6364464480875750774f537037?api-version=2017-09-01']
- Cache-Control: [private]
- Content-Length: ['0']
- Date: ['Thu, 26 Oct 2017 20:00:08 GMT']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsOperationResults/delzone6364464480875750774f537037?api-version=2017-09-01']
- Retry-After: ['3']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ azure-asyncoperation: ['https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636447450575287720b09fecda?api-version=2017-09-01']
+ cache-control: [private]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:50:57 GMT']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationResults/delzone636447450575287720b09fecda?api-version=2017-09-01']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [4450f20a-ba88-11e7-b78a-74c63bed1137]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns/providers/Microsoft.Network/dnsOperationStatuses/delzone6364464480875750774f537037?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dns000001/providers/Microsoft.Network/dnsOperationStatuses/delzone636447450575287720b09fecda?api-version=2017-09-01
response:
body: {string: '{"status":"Succeeded"}'}
headers:
- Cache-Control: [private]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Thu, 26 Oct 2017 20:00:12 GMT']
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET]
+ cache-control: [private]
content-length: ['22']
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 27 Oct 2017 23:51:00 GMT']
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_dns000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 27 Oct 2017 23:51:02 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRE5TMlZDUUVQVFFYVU1BQUFRQUlQSlZSNEg3V09UNUxHQXwwN0FBMTE2NUE3NEJDNzYxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_dns_zone_import_export.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_dns_zone_import_export.yaml
index effbe5c2886..ecc72f9ee3a 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_dns_zone_import_export.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_dns_zone_import_export.yaml
@@ -4,11 +4,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
msrest_azure/0.4.15 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
AZURECLI/2.0.21]
accept-language: [en-US]
@@ -20,151 +20,154 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:11 GMT']
+ date: ['Fri, 27 Oct 2017 23:50:01 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: '{"location": "global"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-25a4-1f95894ed301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-04.azure-dns.com.","ns2-04.azure-dns.net.","ns3-04.azure-dns.org.","ns4-04.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com","name":"myzone.com","type":"Microsoft.Network\/dnszones","etag":"00000002-0000-0000-34d7-624f7e4fd301","location":"global","tags":{},"properties":{"maxNumberOfRecordSets":5000,"nameServers":["ns1-05.azure-dns.com.","ns2-05.azure-dns.net.","ns3-05.azure-dns.org.","ns4-05.azure-dns.info."],"numberOfRecordSets":2,"zoneType":"Public"}}'}
headers:
cache-control: [private]
content-length: ['540']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:14 GMT']
- etag: [00000002-0000-0000-25a4-1f95894ed301]
+ date: ['Fri, 27 Oct 2017 23:50:03 GMT']
+ etag: [00000002-0000-0000-34d7-624f7e4fd301]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TXTRecords": [{"value": ["manualtxt"]}], "TTL": 3600}}'
+ body: '{"properties": {"MXRecords": [{"exchange": "mail.contoso.com.", "preference":
+ 1}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['71']
+ Content-Length: ['96']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myname2.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/mymx.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myname2.zone1.com","name":"myname2.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab13b46a-dede-4c0c-940b-21f5c7151c24","properties":{"fqdn":"myname2.zone1.com.myzone.com.","TTL":3600,"TXTRecords":[{"value":["manualtxt"]}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/mymx.zone1.com","name":"mymx.zone1.com","type":"Microsoft.Network\/dnszones\/MX","etag":"75f67b8e-350a-45a3-b9d3-b29637fbca57","properties":{"fqdn":"mymx.zone1.com.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"mail.contoso.com.","preference":1}]}}'}
headers:
cache-control: [private]
- content-length: ['450']
+ content-length: ['462']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:15 GMT']
- etag: [ab13b46a-dede-4c0c-940b-21f5c7151c24]
+ date: ['Fri, 27 Oct 2017 23:50:05 GMT']
+ etag: [75f67b8e-350a-45a3-b9d3-b29637fbca57]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11997']
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TTL": 60, "caaRecords": [{"flags": 0, "value": "ca1.contoso.com",
- "tag": "issue"}, {"flags": 128, "value": "mailto:test@contoso.com", "tag": "iodef"}]}}'
+ body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['169']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/caa1.zone1.com?api-version=2017-09-01
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/caa1.zone1.com","name":"caa1.zone1.com","type":"Microsoft.Network\/dnszones\/CAA","etag":"124f9aaf-4a15-4027-8261-8269e40c2393","properties":{"fqdn":"caa1.zone1.com.myzone.com.","TTL":60,"caaRecords":[{"flags":0,"tag":"issue","value":"ca1.contoso.com"},{"flags":128,"tag":"iodef","value":"mailto:test@contoso.com"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"f051008c-741d-4be0-8bdf-73f52756093a","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-05.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'}
headers:
cache-control: [private]
- content-length: ['529']
+ content-length: ['540']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:17 GMT']
- etag: [124f9aaf-4a15-4027-8261-8269e40c2393]
+ date: ['Fri, 27 Oct 2017 23:50:06 GMT']
+ etag: [f051008c-741d-4be0-8bdf-73f52756093a]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
- status: {code: 201, message: Created}
+ status: {code: 200, message: OK}
- request:
- body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "contoso.com"}]}}'
+ body: '{"properties": {"SOARecord": {"expireTime": 2419200, "refreshTime": 3600,
+ "retryTime": 300, "serialNumber": 1, "host": "ns1-05.azure-dns.com.", "email":
+ "azuredns-hostmaster.microsoft.com.", "minimumTTL": 300}, "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['74']
+ Content-Length: ['224']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myptr.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myptr.zone1.com","name":"myptr.zone1.com","type":"Microsoft.Network\/dnszones\/PTR","etag":"a24f1b01-69d5-41aa-9365-7ea7a115b7bc","properties":{"fqdn":"myptr.zone1.com.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"contoso.com"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"14ee1bd5-767e-4889-8230-11e9dc28facc","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com.","expireTime":2419200,"host":"ns1-05.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'}
headers:
cache-control: [private]
- content-length: ['447']
+ content-length: ['541']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:17 GMT']
- etag: [a24f1b01-69d5-41aa-9365-7ea7a115b7bc]
+ date: ['Fri, 27 Oct 2017 23:50:06 GMT']
+ etag: [14ee1bd5-767e-4889-8230-11e9dc28facc]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
- status: {code: 201, message: Created}
+ status: {code: 200, message: OK}
- request:
- body: '{"properties": {"TTL": 3600, "CNAMERecord": {"cname": "contoso.com."}}}'
+ body: '{"properties": {"CNAMERecord": {"cname": "contoso.com."}, "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['71']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/CNAME/mycname.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/mycname.zone1.com","name":"mycname.zone1.com","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f5d035fc-fcb6-4a9f-8521-33f36298c942","properties":{"fqdn":"mycname.zone1.com.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"contoso.com."}}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/mycname.zone1.com","name":"mycname.zone1.com","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7ad03214-409e-4f40-a7d7-10e24579e105","properties":{"fqdn":"mycname.zone1.com.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"contoso.com."}}}'}
headers:
cache-control: [private]
content-length: ['454']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:18 GMT']
- etag: [f5d035fc-fcb6-4a9f-8521-33f36298c942]
+ date: ['Fri, 27 Oct 2017 23:50:08 GMT']
+ etag: [7ad03214-409e-4f40-a7d7-10e24579e105]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -173,90 +176,90 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: null
+ body: '{"properties": {"caaRecords": [{"flags": 0, "value": "ca1.contoso.com",
+ "tag": "issue"}, {"flags": 128, "value": "mailto:test@contoso.com", "tag": "iodef"}],
+ "TTL": 60}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['169']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/@?api-version=2017-09-01
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/caa1.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"325afbe8-d713-4e5b-9a5a-d8c60fa6296e","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-04.azure-dns.com."},{"nsdname":"ns2-04.azure-dns.net."},{"nsdname":"ns3-04.azure-dns.org."},{"nsdname":"ns4-04.azure-dns.info."}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/caa1.zone1.com","name":"caa1.zone1.com","type":"Microsoft.Network\/dnszones\/CAA","etag":"ea0ba6b7-1844-42bd-a6bc-4ae8fdc4d66d","properties":{"fqdn":"caa1.zone1.com.myzone.com.","TTL":60,"caaRecords":[{"flags":0,"tag":"issue","value":"ca1.contoso.com"},{"flags":128,"tag":"iodef","value":"mailto:test@contoso.com"}]}}'}
headers:
cache-control: [private]
- content-length: ['520']
+ content-length: ['529']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:20 GMT']
- etag: [325afbe8-d713-4e5b-9a5a-d8c60fa6296e]
+ date: ['Fri, 27 Oct 2017 23:50:09 GMT']
+ etag: [ea0ba6b7-1844-42bd-a6bc-4ae8fdc4d66d]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
- status: {code: 200, message: OK}
+ status: {code: 201, message: Created}
- request:
- body: '{"etag": "325afbe8-d713-4e5b-9a5a-d8c60fa6296e", "properties": {"TTL":
- 172800, "NSRecords": [{"nsdname": "ns1-04.azure-dns.com."}, {"nsdname": "ns2-04.azure-dns.net."},
- {"nsdname": "ns3-04.azure-dns.org."}, {"nsdname": "ns4-04.azure-dns.info."}]}}'
+ body: '{"properties": {"SRVRecords": [{"weight": 2, "port": 1234, "target": "target.contoso.com.",
+ "priority": 1}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['247']
+ Content-Length: ['122']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/@?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/mysrv.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"4d5ab401-2fd7-4cee-bdd6-117b1169721b","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-04.azure-dns.com."},{"nsdname":"ns2-04.azure-dns.net."},{"nsdname":"ns3-04.azure-dns.org."},{"nsdname":"ns4-04.azure-dns.info."}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/mysrv.zone1.com","name":"mysrv.zone1.com","type":"Microsoft.Network\/dnszones\/SRV","etag":"30f92563-9749-48e0-a51f-897f1514cd6a","properties":{"fqdn":"mysrv.zone1.com.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.contoso.com.","weight":2}]}}'}
headers:
cache-control: [private]
- content-length: ['520']
+ content-length: ['489']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:20 GMT']
- etag: [4d5ab401-2fd7-4cee-bdd6-117b1169721b]
+ date: ['Fri, 27 Oct 2017 23:50:10 GMT']
+ etag: [30f92563-9749-48e0-a51f-897f1514cd6a]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
- status: {code: 200, message: OK}
+ status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TXTRecords": [{"value": ["hi"]}], "TTL": 3600}}'
+ body: '{"properties": {"TXTRecords": [{"value": ["abc def"]}, {"value": ["foo
+ bar"]}], "TTL": 7200}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['64']
+ Content-Length: ['93']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/mytxtrs.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/mytxt2.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/mytxtrs.zone1.com","name":"mytxtrs.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"da14f841-cd8d-4fca-9fe6-0bcb12c44c42","properties":{"fqdn":"mytxtrs.zone1.com.myzone.com.","TTL":3600,"TXTRecords":[{"value":["hi"]}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/mytxt2.zone1.com","name":"mytxt2.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"1939ac92-74fb-481c-b3f7-daf0823cc786","properties":{"fqdn":"mytxt2.zone1.com.myzone.com.","TTL":7200,"TXTRecords":[{"value":["abc
+ def"]},{"value":["foo bar"]}]}}'}
headers:
cache-control: [private]
- content-length: ['443']
+ content-length: ['467']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:22 GMT']
- etag: [da14f841-cd8d-4fca-9fe6-0bcb12c44c42]
+ date: ['Fri, 27 Oct 2017 23:50:11 GMT']
+ etag: [1939ac92-74fb-481c-b3f7-daf0823cc786]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -265,28 +268,30 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TTL": 3600, "SRVRecords": [{"port": 1234, "priority":
- 1, "weight": 2, "target": "target.contoso.com."}]}}'
+ body: '{"properties": {"caaRecords": [{"flags": 0, "value": "ca1.contoso.com",
+ "tag": "issue"}, {"flags": 45, "value": "test test test", "tag": "tag56"}],
+ "TTL": 60}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['122']
+ Content-Length: ['159']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/SRV/mysrv.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/caa2.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/mysrv.zone1.com","name":"mysrv.zone1.com","type":"Microsoft.Network\/dnszones\/SRV","etag":"f44f44e3-e94c-4c1f-82dc-d0ba317957f0","properties":{"fqdn":"mysrv.zone1.com.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.contoso.com.","weight":2}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/caa2.zone1.com","name":"caa2.zone1.com","type":"Microsoft.Network\/dnszones\/CAA","etag":"e0d06894-3571-4ab8-882b-87329ec74ab7","properties":{"fqdn":"caa2.zone1.com.myzone.com.","TTL":60,"caaRecords":[{"flags":0,"tag":"issue","value":"ca1.contoso.com"},{"flags":45,"tag":"tag56","value":"test
+ test test"}]}}'}
headers:
cache-control: [private]
- content-length: ['489']
+ content-length: ['519']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:23 GMT']
- etag: [f44f44e3-e94c-4c1f-82dc-d0ba317957f0]
+ date: ['Fri, 27 Oct 2017 23:50:12 GMT']
+ etag: [e0d06894-3571-4ab8-882b-87329ec74ab7]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -295,27 +300,27 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TTL": 3600, "ARecords": [{"ipv4Address": "10.0.0.10"}]}}'
+ body: '{"properties": {"PTRRecords": [{"ptrdname": "contoso.com"}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['73']
+ Content-Length: ['74']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/A/manuala.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myptr.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/manuala.zone1.com","name":"manuala.zone1.com","type":"Microsoft.Network\/dnszones\/A","etag":"d976ead7-edbd-4523-b2d7-617454301584","properties":{"fqdn":"manuala.zone1.com.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myptr.zone1.com","name":"myptr.zone1.com","type":"Microsoft.Network\/dnszones\/PTR","etag":"759d666d-aab9-4d5e-92f7-1ec5f50b42a4","properties":{"fqdn":"myptr.zone1.com.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"contoso.com"}]}}'}
headers:
cache-control: [private]
- content-length: ['448']
+ content-length: ['447']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:25 GMT']
- etag: [d976ead7-edbd-4523-b2d7-617454301584]
+ date: ['Fri, 27 Oct 2017 23:50:13 GMT']
+ etag: [759d666d-aab9-4d5e-92f7-1ec5f50b42a4]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -324,87 +329,85 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TTL": 3600, "NSRecords": [{"nsdname": "ns.contoso.com."}]}}'
+ body: '{"properties": {"PTRRecords": [{"ptrdname": "myptrdname"}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['76']
+ Content-Length: ['73']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myns.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myname.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myns.zone1.com","name":"myns.zone1.com","type":"Microsoft.Network\/dnszones\/NS","etag":"12c79c6b-0b6f-41eb-93d0-3ebb890685a9","properties":{"fqdn":"myns.zone1.com.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"ns.contoso.com."}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myname.zone1.com","name":"myname.zone1.com","type":"Microsoft.Network\/dnszones\/PTR","etag":"31f60657-baa1-41ee-8733-7cc00918dee2","properties":{"fqdn":"myname.zone1.com.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"myptrdname"}]}}'}
headers:
cache-control: [private]
- content-length: ['444']
+ content-length: ['449']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:26 GMT']
- etag: [12c79c6b-0b6f-41eb-93d0-3ebb890685a9]
+ date: ['Fri, 27 Oct 2017 23:50:14 GMT']
+ etag: [31f60657-baa1-41ee-8733-7cc00918dee2]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TTL": 3600, "PTRRecords": [{"ptrdname": "myptrdname"}]}}'
+ body: '{"properties": {"TXTRecords": [{"value": ["manualtxt"]}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['73']
+ Content-Length: ['71']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/PTR/myname.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/myname2.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myname.zone1.com","name":"myname.zone1.com","type":"Microsoft.Network\/dnszones\/PTR","etag":"bfd4567d-7e0c-422a-8bbe-898078d03922","properties":{"fqdn":"myname.zone1.com.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"myptrdname"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myname2.zone1.com","name":"myname2.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"65342d39-0845-4f03-8b4c-b78ad8d4c460","properties":{"fqdn":"myname2.zone1.com.myzone.com.","TTL":3600,"TXTRecords":[{"value":["manualtxt"]}]}}'}
headers:
cache-control: [private]
- content-length: ['449']
+ content-length: ['450']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:26 GMT']
- etag: [bfd4567d-7e0c-422a-8bbe-898078d03922]
+ date: ['Fri, 27 Oct 2017 23:50:15 GMT']
+ etag: [65342d39-0845-4f03-8b4c-b78ad8d4c460]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TTL": 60, "caaRecords": [{"flags": 0, "value": "ca1.contoso.com",
- "tag": "issue"}, {"flags": 45, "value": "test test test", "tag": "tag56"}]}}'
+ body: '{"properties": {"NSRecords": [{"nsdname": "ns.contoso.com."}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['159']
+ Content-Length: ['76']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/CAA/caa2.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/myns.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/caa2.zone1.com","name":"caa2.zone1.com","type":"Microsoft.Network\/dnszones\/CAA","etag":"d11c9878-74dc-4a04-846a-981cec63b1a6","properties":{"fqdn":"caa2.zone1.com.myzone.com.","TTL":60,"caaRecords":[{"flags":0,"tag":"issue","value":"ca1.contoso.com"},{"flags":45,"tag":"tag56","value":"test
- test test"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myns.zone1.com","name":"myns.zone1.com","type":"Microsoft.Network\/dnszones\/NS","etag":"8cea2561-36a5-468d-a38c-408f441d4b80","properties":{"fqdn":"myns.zone1.com.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"ns.contoso.com."}]}}'}
headers:
cache-control: [private]
- content-length: ['519']
+ content-length: ['444']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:28 GMT']
- etag: [d11c9878-74dc-4a04-846a-981cec63b1a6]
+ date: ['Fri, 27 Oct 2017 23:50:16 GMT']
+ etag: [8cea2561-36a5-468d-a38c-408f441d4b80]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -413,91 +416,86 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: null
+ body: '{"properties": {"TXTRecords": [{"value": ["hi"]}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['64']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/mytxtrs.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"3e50ad9b-a6e2-421b-b294-90fe285ce24b","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com","expireTime":2419200,"host":"ns1-04.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/mytxtrs.zone1.com","name":"mytxtrs.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"056bfafb-3acc-4bde-be41-ed2666127233","properties":{"fqdn":"mytxtrs.zone1.com.myzone.com.","TTL":3600,"TXTRecords":[{"value":["hi"]}]}}'}
headers:
cache-control: [private]
- content-length: ['540']
+ content-length: ['443']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:28 GMT']
- etag: [3e50ad9b-a6e2-421b-b294-90fe285ce24b]
+ date: ['Fri, 27 Oct 2017 23:50:17 GMT']
+ etag: [056bfafb-3acc-4bde-be41-ed2666127233]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
- status: {code: 200, message: OK}
+ status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TTL": 3600, "SOARecord": {"email": "azuredns-hostmaster.microsoft.com.",
- "refreshTime": 3600, "retryTime": 300, "minimumTTL": 300, "expireTime": 2419200,
- "serialNumber": 1, "host": "ns1-04.azure-dns.com."}}}'
+ body: '{"properties": {"ARecords": [{"ipv4Address": "10.0.0.10"}], "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['224']
+ Content-Length: ['73']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/SOA/@?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/A/manuala.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"9edd53e4-e8be-4429-98bf-0c93445902db","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com.","expireTime":2419200,"host":"ns1-04.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/manuala.zone1.com","name":"manuala.zone1.com","type":"Microsoft.Network\/dnszones\/A","etag":"f9fe93e6-9410-402f-8c9a-6a62752101c0","properties":{"fqdn":"manuala.zone1.com.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}}'}
headers:
cache-control: [private]
- content-length: ['541']
+ content-length: ['448']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:29 GMT']
- etag: [9edd53e4-e8be-4429-98bf-0c93445902db]
+ date: ['Fri, 27 Oct 2017 23:50:18 GMT']
+ etag: [f9fe93e6-9410-402f-8c9a-6a62752101c0]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
- status: {code: 200, message: OK}
+ status: {code: 201, message: Created}
- request:
- body: '{"properties": {"AAAARecords": [{"ipv6Address": "2001:4898:e0:99:6dc4:6329:1c99:4e69"}],
- "TTL": 3600}}'
+ body: '{"properties": {"ARecords": [{"ipv4Address": "10.0.1.0"}, {"ipv4Address":
+ "10.0.1.1"}], "TTL": 0}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['102']
+ Content-Length: ['98']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myaaaa.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/A/mya.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myaaaa.zone1.com","name":"myaaaa.zone1.com","type":"Microsoft.Network\/dnszones\/AAAA","etag":"91ac6946-b23b-4480-a39a-ed1274885ebc","properties":{"fqdn":"myaaaa.zone1.com.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:4898:e0:99:6dc4:6329:1c99:4e69"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/mya.zone1.com","name":"mya.zone1.com","type":"Microsoft.Network\/dnszones\/A","etag":"2a990f09-ce8f-47c6-b51c-b056997e4cea","properties":{"fqdn":"mya.zone1.com.myzone.com.","TTL":0,"ARecords":[{"ipv4Address":"10.0.1.0"},{"ipv4Address":"10.0.1.1"}]}}'}
headers:
cache-control: [private]
- content-length: ['480']
+ content-length: ['459']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:29 GMT']
- etag: [91ac6946-b23b-4480-a39a-ed1274885ebc]
+ date: ['Fri, 27 Oct 2017 23:50:19 GMT']
+ etag: [2a990f09-ce8f-47c6-b51c-b056997e4cea]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -506,89 +504,90 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"properties": {"TXTRecords": [{"value": ["abc def"]}, {"value": ["foo
- bar"]}], "TTL": 7200}}'
+ body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['93']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/TXT/mytxt2.zone1.com?api-version=2017-09-01
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/@?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/mytxt2.zone1.com","name":"mytxt2.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"8ee00a79-15ca-4591-b2b9-8a41c3730099","properties":{"fqdn":"mytxt2.zone1.com.myzone.com.","TTL":7200,"TXTRecords":[{"value":["abc
- def"]},{"value":["foo bar"]}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"db11b089-fdb3-45e7-aca2-19896cb3d788","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-05.azure-dns.com."},{"nsdname":"ns2-05.azure-dns.net."},{"nsdname":"ns3-05.azure-dns.org."},{"nsdname":"ns4-05.azure-dns.info."}]}}'}
headers:
cache-control: [private]
- content-length: ['467']
+ content-length: ['520']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:30 GMT']
- etag: [8ee00a79-15ca-4591-b2b9-8a41c3730099]
+ date: ['Fri, 27 Oct 2017 23:50:20 GMT']
+ etag: [db11b089-fdb3-45e7-aca2-19896cb3d788]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-resource-requests: ['11997']
+ x-ms-ratelimit-remaining-subscription-resource-requests: ['11998']
x-powered-by: [ASP.NET]
- status: {code: 201, message: Created}
+ status: {code: 200, message: OK}
- request:
- body: '{"properties": {"TTL": 3600, "MXRecords": [{"exchange": "mail.contoso.com.",
- "preference": 1}]}}'
+ body: '{"etag": "db11b089-fdb3-45e7-aca2-19896cb3d788", "properties": {"NSRecords":
+ [{"nsdname": "ns1-05.azure-dns.com."}, {"nsdname": "ns2-05.azure-dns.net."},
+ {"nsdname": "ns3-05.azure-dns.org."}, {"nsdname": "ns4-05.azure-dns.info."}],
+ "TTL": 172800}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['96']
+ Content-Length: ['247']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/MX/mymx.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/NS/@?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/mymx.zone1.com","name":"mymx.zone1.com","type":"Microsoft.Network\/dnszones\/MX","etag":"e8cce17f-36c9-4229-b610-05040d96d683","properties":{"fqdn":"mymx.zone1.com.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"mail.contoso.com.","preference":1}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"7f3588fc-ee24-49d8-9692-fac6bbddda72","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-05.azure-dns.com."},{"nsdname":"ns2-05.azure-dns.net."},{"nsdname":"ns3-05.azure-dns.org."},{"nsdname":"ns4-05.azure-dns.info."}]}}'}
headers:
cache-control: [private]
- content-length: ['462']
+ content-length: ['520']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:32 GMT']
- etag: [e8cce17f-36c9-4229-b610-05040d96d683]
+ date: ['Fri, 27 Oct 2017 23:50:21 GMT']
+ etag: [7f3588fc-ee24-49d8-9692-fac6bbddda72]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-subscription-resource-requests: ['11999']
x-powered-by: [ASP.NET]
- status: {code: 201, message: Created}
+ status: {code: 200, message: OK}
- request:
- body: '{"properties": {"TTL": 0, "ARecords": [{"ipv4Address": "10.0.1.0"}, {"ipv4Address":
- "10.0.1.1"}]}}'
+ body: '{"properties": {"AAAARecords": [{"ipv6Address": "2001:4898:e0:99:6dc4:6329:1c99:4e69"}],
+ "TTL": 3600}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone import]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['98']
+ Content-Length: ['102']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/A/mya.zone1.com?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/AAAA/myaaaa.zone1.com?api-version=2017-09-01
response:
- body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/mya.zone1.com","name":"mya.zone1.com","type":"Microsoft.Network\/dnszones\/A","etag":"14c251aa-1f01-43cc-85e5-bb8432e94750","properties":{"fqdn":"mya.zone1.com.myzone.com.","TTL":0,"ARecords":[{"ipv4Address":"10.0.1.0"},{"ipv4Address":"10.0.1.1"}]}}'}
+ body: {string: '{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myaaaa.zone1.com","name":"myaaaa.zone1.com","type":"Microsoft.Network\/dnszones\/AAAA","etag":"41a43cab-4fb8-4f6d-aabb-be352d868861","properties":{"fqdn":"myaaaa.zone1.com.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:4898:e0:99:6dc4:6329:1c99:4e69"}]}}'}
headers:
cache-control: [private]
- content-length: ['459']
+ content-length: ['480']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:33 GMT']
- etag: [14c251aa-1f01-43cc-85e5-bb8432e94750]
+ date: ['Fri, 27 Oct 2017 23:50:22 GMT']
+ etag: [41a43cab-4fb8-4f6d-aabb-be352d868861]
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -601,23 +600,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network dns zone export]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
- msrest_azure/0.4.15 dnsmanagementclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.21]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 dnsmanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.21]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_dns_zone_import_export000001/providers/Microsoft.Network/dnsZones/myzone.com/recordsets?api-version=2017-09-01
response:
- body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"4d5ab401-2fd7-4cee-bdd6-117b1169721b","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-04.azure-dns.com."},{"nsdname":"ns2-04.azure-dns.net."},{"nsdname":"ns3-04.azure-dns.org."},{"nsdname":"ns4-04.azure-dns.info."}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"9edd53e4-e8be-4429-98bf-0c93445902db","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com.","expireTime":2419200,"host":"ns1-04.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/caa1.zone1.com","name":"caa1.zone1.com","type":"Microsoft.Network\/dnszones\/CAA","etag":"124f9aaf-4a15-4027-8261-8269e40c2393","properties":{"fqdn":"caa1.zone1.com.myzone.com.","TTL":60,"caaRecords":[{"flags":0,"tag":"issue","value":"ca1.contoso.com"},{"flags":128,"tag":"iodef","value":"mailto:test@contoso.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/caa2.zone1.com","name":"caa2.zone1.com","type":"Microsoft.Network\/dnszones\/CAA","etag":"d11c9878-74dc-4a04-846a-981cec63b1a6","properties":{"fqdn":"caa2.zone1.com.myzone.com.","TTL":60,"caaRecords":[{"flags":0,"tag":"issue","value":"ca1.contoso.com"},{"flags":45,"tag":"tag56","value":"test
- test test"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/manuala.zone1.com","name":"manuala.zone1.com","type":"Microsoft.Network\/dnszones\/A","etag":"d976ead7-edbd-4523-b2d7-617454301584","properties":{"fqdn":"manuala.zone1.com.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/mya.zone1.com","name":"mya.zone1.com","type":"Microsoft.Network\/dnszones\/A","etag":"14c251aa-1f01-43cc-85e5-bb8432e94750","properties":{"fqdn":"mya.zone1.com.myzone.com.","TTL":0,"ARecords":[{"ipv4Address":"10.0.1.0"},{"ipv4Address":"10.0.1.1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myaaaa.zone1.com","name":"myaaaa.zone1.com","type":"Microsoft.Network\/dnszones\/AAAA","etag":"91ac6946-b23b-4480-a39a-ed1274885ebc","properties":{"fqdn":"myaaaa.zone1.com.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:4898:e0:99:6dc4:6329:1c99:4e69"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/mycname.zone1.com","name":"mycname.zone1.com","type":"Microsoft.Network\/dnszones\/CNAME","etag":"f5d035fc-fcb6-4a9f-8521-33f36298c942","properties":{"fqdn":"mycname.zone1.com.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"contoso.com."}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/mymx.zone1.com","name":"mymx.zone1.com","type":"Microsoft.Network\/dnszones\/MX","etag":"e8cce17f-36c9-4229-b610-05040d96d683","properties":{"fqdn":"mymx.zone1.com.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"mail.contoso.com.","preference":1}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myname.zone1.com","name":"myname.zone1.com","type":"Microsoft.Network\/dnszones\/PTR","etag":"bfd4567d-7e0c-422a-8bbe-898078d03922","properties":{"fqdn":"myname.zone1.com.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"myptrdname"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myname2.zone1.com","name":"myname2.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"ab13b46a-dede-4c0c-940b-21f5c7151c24","properties":{"fqdn":"myname2.zone1.com.myzone.com.","TTL":3600,"TXTRecords":[{"value":["manualtxt"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myns.zone1.com","name":"myns.zone1.com","type":"Microsoft.Network\/dnszones\/NS","etag":"12c79c6b-0b6f-41eb-93d0-3ebb890685a9","properties":{"fqdn":"myns.zone1.com.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"ns.contoso.com."}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myptr.zone1.com","name":"myptr.zone1.com","type":"Microsoft.Network\/dnszones\/PTR","etag":"a24f1b01-69d5-41aa-9365-7ea7a115b7bc","properties":{"fqdn":"myptr.zone1.com.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"contoso.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/mysrv.zone1.com","name":"mysrv.zone1.com","type":"Microsoft.Network\/dnszones\/SRV","etag":"f44f44e3-e94c-4c1f-82dc-d0ba317957f0","properties":{"fqdn":"mysrv.zone1.com.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.contoso.com.","weight":2}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/mytxt2.zone1.com","name":"mytxt2.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"8ee00a79-15ca-4591-b2b9-8a41c3730099","properties":{"fqdn":"mytxt2.zone1.com.myzone.com.","TTL":7200,"TXTRecords":[{"value":["abc
- def"]},{"value":["foo bar"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/mytxtrs.zone1.com","name":"mytxtrs.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"da14f841-cd8d-4fca-9fe6-0bcb12c44c42","properties":{"fqdn":"mytxtrs.zone1.com.myzone.com.","TTL":3600,"TXTRecords":[{"value":["hi"]}]}}]}'}
+ body: {string: '{"value":[{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/@","name":"@","type":"Microsoft.Network\/dnszones\/NS","etag":"7f3588fc-ee24-49d8-9692-fac6bbddda72","properties":{"fqdn":"myzone.com.","TTL":172800,"NSRecords":[{"nsdname":"ns1-05.azure-dns.com."},{"nsdname":"ns2-05.azure-dns.net."},{"nsdname":"ns3-05.azure-dns.org."},{"nsdname":"ns4-05.azure-dns.info."}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SOA\/@","name":"@","type":"Microsoft.Network\/dnszones\/SOA","etag":"14ee1bd5-767e-4889-8230-11e9dc28facc","properties":{"fqdn":"myzone.com.","TTL":3600,"SOARecord":{"email":"azuredns-hostmaster.microsoft.com.","expireTime":2419200,"host":"ns1-05.azure-dns.com.","minimumTTL":300,"refreshTime":3600,"retryTime":300,"serialNumber":1}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/caa1.zone1.com","name":"caa1.zone1.com","type":"Microsoft.Network\/dnszones\/CAA","etag":"ea0ba6b7-1844-42bd-a6bc-4ae8fdc4d66d","properties":{"fqdn":"caa1.zone1.com.myzone.com.","TTL":60,"caaRecords":[{"flags":0,"tag":"issue","value":"ca1.contoso.com"},{"flags":128,"tag":"iodef","value":"mailto:test@contoso.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CAA\/caa2.zone1.com","name":"caa2.zone1.com","type":"Microsoft.Network\/dnszones\/CAA","etag":"e0d06894-3571-4ab8-882b-87329ec74ab7","properties":{"fqdn":"caa2.zone1.com.myzone.com.","TTL":60,"caaRecords":[{"flags":0,"tag":"issue","value":"ca1.contoso.com"},{"flags":45,"tag":"tag56","value":"test
+ test test"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/manuala.zone1.com","name":"manuala.zone1.com","type":"Microsoft.Network\/dnszones\/A","etag":"f9fe93e6-9410-402f-8c9a-6a62752101c0","properties":{"fqdn":"manuala.zone1.com.myzone.com.","TTL":3600,"ARecords":[{"ipv4Address":"10.0.0.10"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/A\/mya.zone1.com","name":"mya.zone1.com","type":"Microsoft.Network\/dnszones\/A","etag":"2a990f09-ce8f-47c6-b51c-b056997e4cea","properties":{"fqdn":"mya.zone1.com.myzone.com.","TTL":0,"ARecords":[{"ipv4Address":"10.0.1.0"},{"ipv4Address":"10.0.1.1"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/AAAA\/myaaaa.zone1.com","name":"myaaaa.zone1.com","type":"Microsoft.Network\/dnszones\/AAAA","etag":"41a43cab-4fb8-4f6d-aabb-be352d868861","properties":{"fqdn":"myaaaa.zone1.com.myzone.com.","TTL":3600,"AAAARecords":[{"ipv6Address":"2001:4898:e0:99:6dc4:6329:1c99:4e69"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/CNAME\/mycname.zone1.com","name":"mycname.zone1.com","type":"Microsoft.Network\/dnszones\/CNAME","etag":"7ad03214-409e-4f40-a7d7-10e24579e105","properties":{"fqdn":"mycname.zone1.com.myzone.com.","TTL":3600,"CNAMERecord":{"cname":"contoso.com."}}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/MX\/mymx.zone1.com","name":"mymx.zone1.com","type":"Microsoft.Network\/dnszones\/MX","etag":"75f67b8e-350a-45a3-b9d3-b29637fbca57","properties":{"fqdn":"mymx.zone1.com.myzone.com.","TTL":3600,"MXRecords":[{"exchange":"mail.contoso.com.","preference":1}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myname.zone1.com","name":"myname.zone1.com","type":"Microsoft.Network\/dnszones\/PTR","etag":"31f60657-baa1-41ee-8733-7cc00918dee2","properties":{"fqdn":"myname.zone1.com.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"myptrdname"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/myname2.zone1.com","name":"myname2.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"65342d39-0845-4f03-8b4c-b78ad8d4c460","properties":{"fqdn":"myname2.zone1.com.myzone.com.","TTL":3600,"TXTRecords":[{"value":["manualtxt"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/NS\/myns.zone1.com","name":"myns.zone1.com","type":"Microsoft.Network\/dnszones\/NS","etag":"8cea2561-36a5-468d-a38c-408f441d4b80","properties":{"fqdn":"myns.zone1.com.myzone.com.","TTL":3600,"NSRecords":[{"nsdname":"ns.contoso.com."}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/PTR\/myptr.zone1.com","name":"myptr.zone1.com","type":"Microsoft.Network\/dnszones\/PTR","etag":"759d666d-aab9-4d5e-92f7-1ec5f50b42a4","properties":{"fqdn":"myptr.zone1.com.myzone.com.","TTL":3600,"PTRRecords":[{"ptrdname":"contoso.com"}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/SRV\/mysrv.zone1.com","name":"mysrv.zone1.com","type":"Microsoft.Network\/dnszones\/SRV","etag":"30f92563-9749-48e0-a51f-897f1514cd6a","properties":{"fqdn":"mysrv.zone1.com.myzone.com.","TTL":3600,"SRVRecords":[{"port":1234,"priority":1,"target":"target.contoso.com.","weight":2}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/mytxt2.zone1.com","name":"mytxt2.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"1939ac92-74fb-481c-b3f7-daf0823cc786","properties":{"fqdn":"mytxt2.zone1.com.myzone.com.","TTL":7200,"TXTRecords":[{"value":["abc
+ def"]},{"value":["foo bar"]}]}},{"id":"\/subscriptions\/0b1f6471-1bf0-4dda-aec3-cb9272f09590\/resourceGroups\/cli_dns_zone_import_export000001\/providers\/Microsoft.Network\/dnszones\/myzone.com\/TXT\/mytxtrs.zone1.com","name":"mytxtrs.zone1.com","type":"Microsoft.Network\/dnszones\/TXT","etag":"056bfafb-3acc-4bde-be41-ed2666127233","properties":{"fqdn":"mytxtrs.zone1.com.myzone.com.","TTL":3600,"TXTRecords":[{"value":["hi"]}]}}]}'}
headers:
cache-control: [private]
content-length: ['7628']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 26 Oct 2017 18:38:35 GMT']
+ date: ['Fri, 27 Oct 2017 23:50:23 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -632,11 +631,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.17
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
msrest_azure/0.4.15 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
AZURECLI/2.0.21]
accept-language: [en-US]
@@ -647,11 +646,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 26 Oct 2017 18:38:36 GMT']
+ date: ['Fri, 27 Oct 2017 23:50:23 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZETlM6NUZaT05FOjVGSU1QT1JUOjVGRVhQT1JUSTZCUFNXNVFRTk9YR3w0OUM3MTI0NzU5MUYzRUY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZETlM6NUZaT05FOjVGSU1QT1JUOjVGRVhQT1JUVVhZMkhUUU82QkVNS3w3NTFGMjMxQTM1OUQ0Mzc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_express_route.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_express_route.yaml
index ce6bccffd95..371a20111cb 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_express_route.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_express_route.yaml
@@ -1,16 +1,43 @@
interactions:
+- request:
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001","name":"cli_test_express_route000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:04:37 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [120ce1a2-9d50-11e7-943a-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/expressRouteServiceProviders?api-version=2017-09-01
response:
@@ -175,66 +202,67 @@ interactions:
\ \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\
\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34: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]
+ cache-control: [no-cache]
content-length: ['10912']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:04:40 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [13bf23b8-9d50-11e7-806d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route","name":"cli_test_express_route","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['234']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001","name":"cli_test_express_route000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:04:41 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "sku": {"name": "Premium_MeteredData", "tier": "Premium",
- "family": "MeteredData"}, "properties": {"serviceProviderProperties": {"serviceProviderName":
- "Microsoft ER Test", "peeringLocation": "Area51", "bandwidthInMbps": 50}}}'
+ body: '{"properties": {"serviceProviderProperties": {"peeringLocation": "Area51",
+ "serviceProviderName": "Microsoft ER Test", "bandwidthInMbps": 50}}, "sku":
+ {"tier": "Premium", "name": "Premium_MeteredData", "family": "MeteredData"},
+ "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['249']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [13d064c2-9d50-11e7-ae95-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"3e76dd75-d4f8-42d6-bd44-0bb1fcf4f251\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
+ ,\r\n \"etag\": \"W/\\\"8fdf6de5-e8d8-4102-a5c6-33ee8dcaf8f4\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"43d1ce17-fdd3-4934-96f9-6b91cbdfc370\",\r\n \
+ ,\r\n \"resourceGuid\": \"61e96c75-0ac8-42db-8a31-055d0e50ecd0\",\r\n \
\ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\"\
: {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\
: \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\
@@ -244,915 +272,947 @@ interactions:
,\r\n \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\
\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/0edf738e-932a-403c-a486-da791e1634ec?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['966']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:51 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e0915af4-9fee-4002-9b70-7fb6ef58538b?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1013']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:04:42 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [13d064c2-9d50-11e7-ae95-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0edf738e-932a-403c-a486-da791e1634ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e0915af4-9fee-4002-9b70-7fb6ef58538b?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:04: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:01 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e0915af4-9fee-4002-9b70-7fb6ef58538b?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [13d064c2-9d50-11e7-ae95-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0edf738e-932a-403c-a486-da791e1634ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e0915af4-9fee-4002-9b70-7fb6ef58538b?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05:15 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35: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]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e0915af4-9fee-4002-9b70-7fb6ef58538b?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05:25 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e0915af4-9fee-4002-9b70-7fb6ef58538b?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [13d064c2-9d50-11e7-ae95-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"2b7b4552-36e3-47a5-b305-765600df3ccf\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
+ ,\r\n \"etag\": \"W/\\\"81067620-122d-456f-bbff-e0292d8d78c8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"43d1ce17-fdd3-4934-96f9-6b91cbdfc370\",\r\n \
+ ,\r\n \"resourceGuid\": \"61e96c75-0ac8-42db-8a31-055d0e50ecd0\",\r\n \
\ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\"\
: {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\
: \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\
: \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\
- : \"\",\r\n \"serviceKey\": \"54f78b1c-086e-49d0-b197-77cb74b4a7c6\",\r\
+ : \"\",\r\n \"serviceKey\": \"400ae812-817b-4a52-a2d2-9939d8a856e5\",\r\
\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\
Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:12 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]
- content-length: ['997']
+ cache-control: [no-cache]
+ content-length: ['1044']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [218266f4-9d50-11e7-a2dc-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"circuit1\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"2b7b4552-36e3-47a5-b305-765600df3ccf\\\"\",\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
+ ,\r\n \"etag\": \"W/\\\"81067620-122d-456f-bbff-e0292d8d78c8\\\"\",\r\
\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\
location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"43d1ce17-fdd3-4934-96f9-6b91cbdfc370\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"61e96c75-0ac8-42db-8a31-055d0e50ecd0\"\
,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \
\ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\
: \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n\
\ \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\
: \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"\
- serviceKey\": \"54f78b1c-086e-49d0-b197-77cb74b4a7c6\",\r\n \"serviceProviderProvisioningState\"\
+ serviceKey\": \"400ae812-817b-4a52-a2d2-9939d8a856e5\",\r\n \"serviceProviderProvisioningState\"\
: \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\":\
\ \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \"\
- family\": \"MeteredData\"\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/errg/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"fdcca7f0-5d07-4779-8319-127f5662d559\\\"\",\r\
- \n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\
- location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"val\"\r\
- \n },\r\n \"properties\": {\r\n \"provisioningState\": \"\
- Failed\",\r\n \"resourceGuid\": \"c8515ed3-58b1-4acf-b1ea-ce5b3ab48cf7\"\
- ,\r\n \"peerings\": [\r\n {\r\n \"name\": \"MicrosoftPeering\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/errg/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\
- ,\r\n \"etag\": \"W/\\\"fdcca7f0-5d07-4779-8319-127f5662d559\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Deleting\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n\
- \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\
- \n \"primaryPeerAddressPrefix\": \"101.0.0.0/30\",\r\n \
- \ \"secondaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \
- \ \"primaryAzurePort\": \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \
- \ \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\",\r\n \
- \ \"state\": \"Enabled\",\r\n \"vlanId\": 103,\r\n \
- \ \"gatewayManagerEtag\": \"83\",\r\n \"lastModifiedBy\"\
- : \"Customer\",\r\n \"microsoftPeeringConfig\": {\r\n \
- \ \"advertisedPublicPrefixes\": [\r\n \"101.0.0.0/30\"\
- \r\n ],\r\n \"advertisedPublicPrefixesState\"\
- : \"ValidationNeeded\",\r\n \"customerASN\": 0,\r\n \
- \ \"legacyMode\": 0,\r\n \"routingRegistryName\": \"\
- NONE\"\r\n },\r\n \"ipv6PeeringConfig\": {\r\n \
- \ \"primaryPeerAddressPrefix\": \"2002:db00::/126\",\r\n \
- \ \"secondaryPeerAddressPrefix\": \"2003:db00::/126\",\r\n \
- \ \"state\": \"Enabled\",\r\n \"microsoftPeeringConfig\"\
- : {\r\n \"advertisedPublicPrefixes\": [\r\n \
- \ \"2002:db00::/126\"\r\n ],\r\n \"\
- advertisedPublicPrefixesState\": \"ValidationNeeded\",\r\n \
- \ \"customerASN\": 0,\r\n \"legacyMode\": 0,\r\n \
- \ \"routingRegistryName\": \"NONE\"\r\n }\r\n \
- \ }\r\n }\r\n }\r\n ],\r\n \"\
- authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \
- \ \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\
- : \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \
- \ \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\"\
- : false,\r\n \"serviceKey\": \"fcfe8e55-f165-41aa-a393-6ccde9f0b745\"\
- ,\r\n \"serviceProviderProvisioningState\": \"Provisioning\"\r\n \
- \ },\r\n \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\
- \n \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\r\n\
- \ }\r\n }\r\n ]\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:14 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]
- content-length: ['4071']
+ family\": \"MeteredData\"\r\n }\r\n }\r\n ]\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1146']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [21f0150c-9d50-11e7-b613-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"circuit1\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"2b7b4552-36e3-47a5-b305-765600df3ccf\\\"\",\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
+ ,\r\n \"etag\": \"W/\\\"81067620-122d-456f-bbff-e0292d8d78c8\\\"\",\r\
\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"\
location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"43d1ce17-fdd3-4934-96f9-6b91cbdfc370\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"61e96c75-0ac8-42db-8a31-055d0e50ecd0\"\
,\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \
\ \"serviceProviderProperties\": {\r\n \"serviceProviderName\"\
: \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n\
\ \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\
: \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"\
- serviceKey\": \"54f78b1c-086e-49d0-b197-77cb74b4a7c6\",\r\n \"serviceProviderProvisioningState\"\
+ serviceKey\": \"400ae812-817b-4a52-a2d2-9939d8a856e5\",\r\n \"serviceProviderProvisioningState\"\
: \"NotProvisioned\"\r\n },\r\n \"sku\": {\r\n \"name\":\
\ \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \"\
family\": \"MeteredData\"\r\n }\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:15 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]
- content-length: ['1099']
+ cache-control: [no-cache]
+ content-length: ['1146']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05:38 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [222bb100-9d50-11e7-b675-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"2b7b4552-36e3-47a5-b305-765600df3ccf\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
+ ,\r\n \"etag\": \"W/\\\"81067620-122d-456f-bbff-e0292d8d78c8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"43d1ce17-fdd3-4934-96f9-6b91cbdfc370\",\r\n \
+ ,\r\n \"resourceGuid\": \"61e96c75-0ac8-42db-8a31-055d0e50ecd0\",\r\n \
\ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\"\
: {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\
: \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\
: \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\
- : \"\",\r\n \"serviceKey\": \"54f78b1c-086e-49d0-b197-77cb74b4a7c6\",\r\
+ : \"\",\r\n \"serviceKey\": \"400ae812-817b-4a52-a2d2-9939d8a856e5\",\r\
\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\
Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:15 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]
- content-length: ['997']
+ cache-control: [no-cache]
+ content-length: ['1044']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05:38 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [228d731e-9d50-11e7-adf8-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/stats?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/stats?api-version=2017-09-01
response:
body: {string: "{\r\n \"primaryBytesIn\": 0,\r\n \"primaryBytesOut\": 0,\r\n\
\ \"secondaryBytesIn\": 0,\r\n \"secondaryBytesOut\": 0\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:16 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]
+ cache-control: [no-cache]
content-length: ['105']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05:40 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [22d75d64-9d50-11e7-9f02-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"2b7b4552-36e3-47a5-b305-765600df3ccf\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
+ ,\r\n \"etag\": \"W/\\\"81067620-122d-456f-bbff-e0292d8d78c8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"43d1ce17-fdd3-4934-96f9-6b91cbdfc370\",\r\n \
+ ,\r\n \"resourceGuid\": \"61e96c75-0ac8-42db-8a31-055d0e50ecd0\",\r\n \
\ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\"\
: {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\
: \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\
: \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\
- : \"\",\r\n \"serviceKey\": \"54f78b1c-086e-49d0-b197-77cb74b4a7c6\",\r\
+ : \"\",\r\n \"serviceKey\": \"400ae812-817b-4a52-a2d2-9939d8a856e5\",\r\
\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\
Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:16 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]
- content-length: ['997']
+ cache-control: [no-cache]
+ content-length: ['1044']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05:40 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]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "tags": {"test": "Test"}, "sku": {"name": "Premium_MeteredData",
- "tier": "Premium", "family": "MeteredData"}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1",
- "properties": {"authorizations": [], "serviceProviderProperties": {"serviceProviderName":
- "Microsoft ER Test", "peeringLocation": "Area51", "bandwidthInMbps": 50}, "serviceKey":
- "54f78b1c-086e-49d0-b197-77cb74b4a7c6", "provisioningState": "Succeeded", "allowClassicOperations":
- false, "serviceProviderProvisioningState": "NotProvisioned", "peerings": [],
- "circuitProvisioningState": "Enabled", "gatewayManagerEtag": ""}}'
+ body: 'b''{"properties": {"serviceProviderProvisioningState": "NotProvisioned",
+ "serviceProviderProperties": {"peeringLocation": "Area51", "serviceProviderName":
+ "Microsoft ER Test", "bandwidthInMbps": 50}, "peerings": [], "gatewayManagerEtag":
+ "", "serviceKey": "400ae812-817b-4a52-a2d2-9939d8a856e5", "provisioningState":
+ "Succeeded", "circuitProvisioningState": "Enabled", "allowClassicOperations":
+ false, "authorizations": []}, "sku": {"tier": "Standard", "name": "Premium_MeteredData",
+ "family": "MeteredData"}, "tags": {"test": "Test"}, "location": "westus", "id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['716']
+ Content-Length: ['764']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [232147a2-9d50-11e7-a3a0-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"428253d9-469e-4ec8-8533-e62dede6c9cd\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
+ ,\r\n \"etag\": \"W/\\\"26e3c7f6-ec5e-4354-a16f-3facb4c6f0d6\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {\r\n \"test\": \"Test\"\r\n },\r\n \"properties\"\
: {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 43d1ce17-fdd3-4934-96f9-6b91cbdfc370\",\r\n \"peerings\": [],\r\n \"\
+ 61e96c75-0ac8-42db-8a31-055d0e50ecd0\",\r\n \"peerings\": [],\r\n \"\
authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"\
serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\
: \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\
: \"Disabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\
- : \"\",\r\n \"serviceKey\": \"54f78b1c-086e-49d0-b197-77cb74b4a7c6\",\r\
+ : \"\",\r\n \"serviceKey\": \"400ae812-817b-4a52-a2d2-9939d8a856e5\",\r\
\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\
- Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/4512585a-9d40-441c-a360-eab64f1f8f7b?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['1036']
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [232147a2-9d50-11e7-a3a0-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4512585a-9d40-441c-a360-eab64f1f8f7b?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5d8b38d8-67f8-4311-b9ac-1873ac2865ef?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1084']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05:41 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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [232147a2-9d50-11e7-a3a0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4512585a-9d40-441c-a360-eab64f1f8f7b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5d8b38d8-67f8-4311-b9ac-1873ac2865ef?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:37 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:05: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [232147a2-9d50-11e7-a3a0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4512585a-9d40-441c-a360-eab64f1f8f7b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5d8b38d8-67f8-4311-b9ac-1873ac2865ef?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:48 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06:02 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [232147a2-9d50-11e7-a3a0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
- ,\r\n \"etag\": \"W/\\\"9cf1aba5-5ad3-4257-bf8b-114896b4f21b\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\"\
+ ,\r\n \"etag\": \"W/\\\"bec11ccf-915a-480a-9f08-da0cf5b5ad25\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {\r\n \"test\": \"Test\"\r\n },\r\n \"properties\"\
: {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"43d1ce17-fdd3-4934-96f9-6b91cbdfc370\",\r\n \"peerings\": [],\r\n \
+ \ \"61e96c75-0ac8-42db-8a31-055d0e50ecd0\",\r\n \"peerings\": [],\r\n \
\ \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \
\ \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\"\
: \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\"\
: \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\"\
- : \"\",\r\n \"serviceKey\": \"54f78b1c-086e-49d0-b197-77cb74b4a7c6\",\r\
+ : \"\",\r\n \"serviceKey\": \"400ae812-817b-4a52-a2d2-9939d8a856e5\",\r\
\n \"serviceProviderProvisioningState\": \"NotProvisioned\"\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"\
- Premium\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:48 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]
- content-length: ['1036']
+ Standard\",\r\n \"family\": \"MeteredData\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1084']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06:02 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]
status: {code: 200, message: OK}
- request:
body: '{}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['2']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3663ff9e-9d50-11e7-b824-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\
- ,\r\n \"etag\": \"W/\\\"eb3bfbd7-ae9d-4d55-ac5b-ec7b3bf5da31\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\
+ ,\r\n \"etag\": \"W/\\\"2b51fb7b-c170-4531-bac2-49ac509d815b\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
- authorizationKey\": \"7f15fe34-f278-4dbc-8324-b9117c842bc5\",\r\n \"authorizationUseStatus\"\
+ authorizationKey\": \"5b871d1c-c3a8-44bc-8a0c-071e7635e4e4\",\r\n \"authorizationUseStatus\"\
: \"Available\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d1f0334e-9b02-48b7-bb50-4a253b6c926c?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['438']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a4d4ecba-a279-4ea2-8f01-718f7ec0d345?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['485']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06:04 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1191']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3663ff9e-9d50-11e7-b824-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d1f0334e-9b02-48b7-bb50-4a253b6c926c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a4d4ecba-a279-4ea2-8f01-718f7ec0d345?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:59 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06:15 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3663ff9e-9d50-11e7-b824-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\
- ,\r\n \"etag\": \"W/\\\"510c34f1-fce5-4e63-bb57-36268a70f634\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\
+ ,\r\n \"etag\": \"W/\\\"c5ae8551-34f7-43fa-b3c8-b56ace6c4389\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- authorizationKey\": \"7f15fe34-f278-4dbc-8324-b9117c842bc5\",\r\n \"authorizationUseStatus\"\
+ authorizationKey\": \"5b871d1c-c3a8-44bc-8a0c-071e7635e4e4\",\r\n \"authorizationUseStatus\"\
: \"Available\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:00 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]
- content-length: ['439']
+ cache-control: [no-cache]
+ content-length: ['486']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06:16 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3d84979a-9d50-11e7-8b62-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"auth1\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\
- ,\r\n \"etag\": \"W/\\\"510c34f1-fce5-4e63-bb57-36268a70f634\\\"\",\r\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\
+ ,\r\n \"etag\": \"W/\\\"c5ae8551-34f7-43fa-b3c8-b56ace6c4389\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"authorizationKey\": \"7f15fe34-f278-4dbc-8324-b9117c842bc5\"\
+ ,\r\n \"authorizationKey\": \"5b871d1c-c3a8-44bc-8a0c-071e7635e4e4\"\
,\r\n \"authorizationUseStatus\": \"Available\"\r\n }\r\n }\r\
\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:01 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]
- content-length: ['504']
+ cache-control: [no-cache]
+ content-length: ['551']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3dcff222-9d50-11e7-97cf-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\
- ,\r\n \"etag\": \"W/\\\"510c34f1-fce5-4e63-bb57-36268a70f634\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\"\
+ ,\r\n \"etag\": \"W/\\\"c5ae8551-34f7-43fa-b3c8-b56ace6c4389\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- authorizationKey\": \"7f15fe34-f278-4dbc-8324-b9117c842bc5\",\r\n \"authorizationUseStatus\"\
+ authorizationKey\": \"5b871d1c-c3a8-44bc-8a0c-071e7635e4e4\",\r\n \"authorizationUseStatus\"\
: \"Available\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:02 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]
- content-length: ['439']
+ cache-control: [no-cache]
+ content-length: ['486']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3e0451ca-9d50-11e7-a12f-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/4f20dbd7-ad99-4167-9abc-4c0b56ba69c2?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 15:36:02 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/4f20dbd7-ad99-4167-9abc-4c0b56ba69c2?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/db2fc5f2-03e9-4b3e-bd75-790282fd361e?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 16:06:20 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/db2fc5f2-03e9-4b3e-bd75-790282fd361e?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3e0451ca-9d50-11e7-a12f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f20dbd7-ad99-4167-9abc-4c0b56ba69c2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/db2fc5f2-03e9-4b3e-bd75-790282fd361e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:12 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3e0451ca-9d50-11e7-a12f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f20dbd7-ad99-4167-9abc-4c0b56ba69c2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/db2fc5f2-03e9-4b3e-bd75-790282fd361e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06:41 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4af35452-9d50-11e7-86c7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": []\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:23 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]
+ cache-control: [no-cache]
content-length: ['19']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06: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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"primaryPeerAddressPrefix": "100.0.0.0/30", "peeringType":
- "AzurePublicPeering", "secondaryPeerAddressPrefix": "101.0.0.0/30", "peerASN":
- 10000, "vlanId": 100}}'
+ body: '{"properties": {"vlanId": 100, "peeringType": "AzurePublicPeering", "secondaryPeerAddressPrefix":
+ "101.0.0.0/30", "peerASN": 10000, "primaryPeerAddressPrefix": "100.0.0.0/30"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['176']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4b32d988-9d50-11e7-b20c-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
- ,\r\n \"etag\": \"W/\\\"ddaf70b3-9cec-4edc-a051-90b1b0652e33\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
+ ,\r\n \"etag\": \"W/\\\"7044628b-262b-4c8f-87e2-01a6112e3e2c\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 0,\r\n \"peerASN\"\
: 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\",\r\n \"\
secondaryPeerAddressPrefix\": \"101.0.0.0/30\",\r\n \"state\": \"Disabled\"\
,\r\n \"vlanId\": 100,\r\n \"lastModifiedBy\": \"\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/67cff9a1-17ca-4606-92eb-18a9ce2138d1?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['607']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:24 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f22d27e6-3248-4e57-90d6-a42785dce89f?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['654']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06:43 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4b32d988-9d50-11e7-b20c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/67cff9a1-17ca-4606-92eb-18a9ce2138d1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f22d27e6-3248-4e57-90d6-a42785dce89f?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:06:54 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:34 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f22d27e6-3248-4e57-90d6-a42785dce89f?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:07:04 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4b32d988-9d50-11e7-b20c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/67cff9a1-17ca-4606-92eb-18a9ce2138d1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f22d27e6-3248-4e57-90d6-a42785dce89f?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:45 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:07:14 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4b32d988-9d50-11e7-b20c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
- ,\r\n \"etag\": \"W/\\\"a6fd8c13-78c9-4108-a5fb-052e9302e5f8\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
+ ,\r\n \"etag\": \"W/\\\"f33d021c-2c79-42bb-8cb4-3fff4ca50d87\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \
\ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\
@@ -1161,37 +1221,36 @@ interactions:
,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 100,\r\n \"gatewayManagerEtag\"\
: \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:45 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]
- content-length: ['762']
+ cache-control: [no-cache]
+ content-length: ['809']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:07: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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"primaryPeerAddressPrefix": "102.0.0.0/30", "peeringType":
- "AzurePrivatePeering", "secondaryPeerAddressPrefix": "103.0.0.0/30", "peerASN":
- 10001, "vlanId": 101}}'
+ body: '{"properties": {"vlanId": 101, "peeringType": "AzurePrivatePeering", "secondaryPeerAddressPrefix":
+ "103.0.0.0/30", "peerASN": 10001, "primaryPeerAddressPrefix": "102.0.0.0/30"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['177']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [58cb92f0-9d50-11e7-a73f-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\
- ,\r\n \"etag\": \"W/\\\"e93a28ce-e0bd-4785-8b5e-4d4acd40ae90\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\
+ ,\r\n \"etag\": \"W/\\\"361abc2f-9eb3-4a76-9c4e-feef642cceb5\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\": 0,\r\n \"\
peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\
@@ -1199,150 +1258,174 @@ interactions:
\ \"Disabled\",\r\n \"vlanId\": 101,\r\n \"lastModifiedBy\": \"\"\r\n\
\ }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8982188-80a3-4d16-a761-5161d91bd34f?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['610']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:47 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d592a30b-0e7e-4829-8986-311edcd03bcd?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['657']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:07:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [58cb92f0-9d50-11e7-a73f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8982188-80a3-4d16-a761-5161d91bd34f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d592a30b-0e7e-4829-8986-311edcd03bcd?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:57 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:07:34 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [58cb92f0-9d50-11e7-a73f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8982188-80a3-4d16-a761-5161d91bd34f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d592a30b-0e7e-4829-8986-311edcd03bcd?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:37:07 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:07:44 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [58cb92f0-9d50-11e7-a73f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8982188-80a3-4d16-a761-5161d91bd34f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d592a30b-0e7e-4829-8986-311edcd03bcd?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:07: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:37:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d592a30b-0e7e-4829-8986-311edcd03bcd?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [58cb92f0-9d50-11e7-a73f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8982188-80a3-4d16-a761-5161d91bd34f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d592a30b-0e7e-4829-8986-311edcd03bcd?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:37: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:15 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [58cb92f0-9d50-11e7-a73f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\
- ,\r\n \"etag\": \"W/\\\"af343ef2-c12a-45d7-b685-2a86269f1e8d\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\
+ ,\r\n \"etag\": \"W/\\\"13c320c8-3610-4110-87ee-30a67bfcffa5\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\": 12076,\r\n \
\ \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\"\
@@ -1351,38 +1434,38 @@ interactions:
,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 101,\r\n \"gatewayManagerEtag\"\
: \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:37: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]
- content-length: ['765']
+ cache-control: [no-cache]
+ content-length: ['812']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:16 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"primaryPeerAddressPrefix": "104.0.0.0/30", "vlanId": 103,
- "peerASN": 10002, "secondaryPeerAddressPrefix": "105.0.0.0/30", "peeringType":
- "MicrosoftPeering", "microsoftPeeringConfig": {"advertisedPublicPrefixes": ["104.0.0.0/30"],
- "routingRegistryName": "LEVEL3", "customerASN": 10000}}}'
+ body: '{"properties": {"vlanId": 103, "primaryPeerAddressPrefix": "104.0.0.0/30",
+ "microsoftPeeringConfig": {"routingRegistryName": "LEVEL3", "customerASN": 10000,
+ "advertisedPublicPrefixes": ["104.0.0.0/30"]}, "peeringType": "MicrosoftPeering",
+ "secondaryPeerAddressPrefix": "105.0.0.0/30", "peerASN": 10002}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['303']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [7261c34a-9d50-11e7-aa94-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\
- ,\r\n \"etag\": \"W/\\\"59c328de-52b8-4a5e-b472-789f778de945\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\
+ ,\r\n \"etag\": \"W/\\\"7fb37c34-dab7-4513-bf60-0e942c746e14\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
peeringType\": \"MicrosoftPeering\",\r\n \"azureASN\": 0,\r\n \"peerASN\"\
: 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"\
@@ -1393,376 +1476,161 @@ interactions:
\n \"customerASN\": 10000,\r\n \"legacyMode\": 0,\r\n \"routingRegistryName\"\
: \"LEVEL3\"\r\n }\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/e38e63db-97e0-4165-8543-9558a3f67204?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['862']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:37:29 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c286db73-63fc-4a8c-8710-dfefa7c1fd9d?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['909']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [7261c34a-9d50-11e7-aa94-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e38e63db-97e0-4165-8543-9558a3f67204?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:37:40 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [7261c34a-9d50-11e7-aa94-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e38e63db-97e0-4165-8543-9558a3f67204?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:37:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [7261c34a-9d50-11e7-aa94-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e38e63db-97e0-4165-8543-9558a3f67204?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:00 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [7261c34a-9d50-11e7-aa94-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e38e63db-97e0-4165-8543-9558a3f67204?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:10 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c286db73-63fc-4a8c-8710-dfefa7c1fd9d?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\"\
+ : \" InvalidSkuTypeForMicrosoftPeering\",\r\n \"message\": \" Invalid SkuType\
+ \ Standard for creating Microsoft Peering.\",\r\n \"details\": []\r\n \
+ \ }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['193']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:29 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [7261c34a-9d50-11e7-aa94-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e38e63db-97e0-4165-8543-9558a3f67204?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:20 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [7261c34a-9d50-11e7-aa94-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e38e63db-97e0-4165-8543-9558a3f67204?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:31 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]
- content-length: ['29']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [7261c34a-9d50-11e7-aa94-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\
- ,\r\n \"etag\": \"W/\\\"fef93878-230e-476a-995f-58684bcb4e5f\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- peeringType\": \"MicrosoftPeering\",\r\n \"azureASN\": 12076,\r\n \"\
- peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\
- \n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n \"primaryAzurePort\"\
- : \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\"\
- ,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 103,\r\n \"gatewayManagerEtag\"\
- : \"\",\r\n \"lastModifiedBy\": \"Customer\",\r\n \"microsoftPeeringConfig\"\
- : {\r\n \"advertisedPublicPrefixes\": [\r\n \"104.0.0.0/30\"\r\
- \n ],\r\n \"advertisedPublicPrefixesState\": \"ValidationNeeded\"\
- ,\r\n \"customerASN\": 10000,\r\n \"legacyMode\": 0,\r\n \"\
- routingRegistryName\": \"LEVEL3\"\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:32 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]
- content-length: ['1020']
- status: {code: 200, message: OK}
-- request:
- body: null
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\
+ ,\r\n \"etag\": \"W/\\\"b82bb98f-e706-429b-baa4-fad38f955150\\\"\",\r\n \
+ \ \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"peeringType\"\
+ : \"MicrosoftPeering\",\r\n \"azureASN\": 0,\r\n \"peerASN\": 10002,\r\
+ \n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\"\
+ : \"105.0.0.0/30\",\r\n \"state\": \"Disabled\",\r\n \"vlanId\": 103,\r\
+ \n \"lastModifiedBy\": \"\",\r\n \"microsoftPeeringConfig\": {\r\n \
+ \ \"advertisedPublicPrefixes\": [\r\n \"104.0.0.0/30\"\r\n \
+ \ ],\r\n \"advertisedPublicPrefixesState\": \"NotConfigured\",\r\n \
+ \ \"customerASN\": 10000,\r\n \"legacyMode\": 0,\r\n \"routingRegistryName\"\
+ : \"LEVEL3\"\r\n }\r\n }\r\n}"}
headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [984a7678-9d50-11e7-9c8f-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\"\
- ,\r\n \"etag\": \"W/\\\"fef93878-230e-476a-995f-58684bcb4e5f\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- peeringType\": \"MicrosoftPeering\",\r\n \"azureASN\": 12076,\r\n \"\
- peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\
- \n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n \"primaryAzurePort\"\
- : \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\"\
- ,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 103,\r\n \"gatewayManagerEtag\"\
- : \"\",\r\n \"lastModifiedBy\": \"Customer\",\r\n \"microsoftPeeringConfig\"\
- : {\r\n \"advertisedPublicPrefixes\": [\r\n \"104.0.0.0/30\"\r\
- \n ],\r\n \"advertisedPublicPrefixesState\": \"ValidationNeeded\"\
- ,\r\n \"customerASN\": 10000,\r\n \"legacyMode\": 0,\r\n \"\
- routingRegistryName\": \"LEVEL3\"\r\n }\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:34 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]
- content-length: ['1020']
+ cache-control: [no-cache]
+ content-length: ['907']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:29 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [98f99a02-9d50-11e7-bb9a-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/27ee8954-270d-481c-9135-2f41ab00845b?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 15:38:35 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/27ee8954-270d-481c-9135-2f41ab00845b?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4bd99e0-e35a-46ff-bc30-e009c430af5b?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 16:08:30 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/c4bd99e0-e35a-46ff-bc30-e009c430af5b?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1185']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [98f99a02-9d50-11e7-bb9a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27ee8954-270d-481c-9135-2f41ab00845b?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:45 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['30']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [98f99a02-9d50-11e7-bb9a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27ee8954-270d-481c-9135-2f41ab00845b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4bd99e0-e35a-46ff-bc30-e009c430af5b?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:40 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a5d09e6c-9d50-11e7-867c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"AzurePublicPeering\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
- ,\r\n \"etag\": \"W/\\\"98137187-8168-4afe-bdcd-21f5bdffb534\\\"\",\r\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
+ ,\r\n \"etag\": \"W/\\\"739f1321-341d-4f9d-977f-a4a94be5864f\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\"\
: 12076,\r\n \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\"\
@@ -1770,9 +1638,9 @@ interactions:
,\r\n \"primaryAzurePort\": \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \
\ \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\",\r\n \"\
state\": \"Enabled\",\r\n \"vlanId\": 100,\r\n \"gatewayManagerEtag\"\
- : \"9\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n },\r\
- \n {\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\
- ,\r\n \"etag\": \"W/\\\"98137187-8168-4afe-bdcd-21f5bdffb534\\\"\",\r\
+ : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n },\r\
+ \n {\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\"\
+ ,\r\n \"etag\": \"W/\\\"739f1321-341d-4f9d-977f-a4a94be5864f\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\"\
: 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\"\
@@ -1780,568 +1648,638 @@ interactions:
,\r\n \"primaryAzurePort\": \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \
\ \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\",\r\n \"\
state\": \"Enabled\",\r\n \"vlanId\": 101,\r\n \"gatewayManagerEtag\"\
- : \"9\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n }\r\
- \n ]\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:56 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]
- content-length: ['1709']
+ : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n }\r\n\
+ \ ]\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1801']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a6b4e4f4-9d50-11e7-bbc0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
- ,\r\n \"etag\": \"W/\\\"98137187-8168-4afe-bdcd-21f5bdffb534\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
+ ,\r\n \"etag\": \"W/\\\"739f1321-341d-4f9d-977f-a4a94be5864f\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \
\ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\
,\r\n \"secondaryPeerAddressPrefix\": \"101.0.0.0/30\",\r\n \"primaryAzurePort\"\
: \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\"\
,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 100,\r\n \"gatewayManagerEtag\"\
- : \"9\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38: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]
- content-length: ['763']
+ : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['809']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:44 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]
status: {code: 200, message: OK}
- request:
- body: '{"name": "AzurePublicPeering", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering",
- "properties": {"azureASN": 12076, "secondaryPeerAddressPrefix": "101.0.0.0/30",
- "vlanId": 200, "state": "Enabled", "secondaryAzurePort": "A51-TEST-06GMR-CIS-2-SEC-A",
- "primaryPeerAddressPrefix": "100.0.0.0/30", "peerASN": 10000, "provisioningState":
- "Succeeded", "lastModifiedBy": "Customer", "peeringType": "AzurePublicPeering",
- "primaryAzurePort": "A51-TEST-06GMR-CIS-1-PRI-A", "gatewayManagerEtag": "9"}}'
+ body: 'b''{"properties": {"vlanId": 200, "azureASN": 12076, "state": "Enabled",
+ "peeringType": "AzurePublicPeering", "secondaryPeerAddressPrefix": "101.0.0.0/30",
+ "gatewayManagerEtag": "", "lastModifiedBy": "Customer", "primaryPeerAddressPrefix":
+ "100.0.0.0/30", "primaryAzurePort": "A51-TEST-06GMR-CIS-1-PRI-A", "secondaryAzurePort":
+ "A51-TEST-06GMR-CIS-2-SEC-A", "provisioningState": "Succeeded", "peerASN": 10000},
+ "name": "AzurePublicPeering", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['629']
+ Content-Length: ['675']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a70cb166-9d50-11e7-8e83-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
- ,\r\n \"etag\": \"W/\\\"8a9c0dfb-4f17-496f-b988-5cde4a4621a1\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
+ ,\r\n \"etag\": \"W/\\\"af371ce7-cc02-4c75-a8c7-23dfb8af7b18\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \
\ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\
,\r\n \"secondaryPeerAddressPrefix\": \"101.0.0.0/30\",\r\n \"primaryAzurePort\"\
: \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\"\
,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 200,\r\n \"gatewayManagerEtag\"\
- : \"9\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/4f18dc39-7cf7-49d0-b3f8-13c4aa90d180?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:38:58 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['762']
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4780a29-7183-4ae7-a2f0-89de74c034f3?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['808']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:45 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-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a70cb166-9d50-11e7-8e83-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f18dc39-7cf7-49d0-b3f8-13c4aa90d180?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4780a29-7183-4ae7-a2f0-89de74c034f3?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:08:56 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:39:08 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4780a29-7183-4ae7-a2f0-89de74c034f3?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:09: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a70cb166-9d50-11e7-8e83-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f18dc39-7cf7-49d0-b3f8-13c4aa90d180?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4780a29-7183-4ae7-a2f0-89de74c034f3?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:39: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:09:16 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [a70cb166-9d50-11e7-8e83-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
- ,\r\n \"etag\": \"W/\\\"adcc0c93-14e9-4c1a-a7af-fcf01b62906a\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"AzurePublicPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePublicPeering\"\
+ ,\r\n \"etag\": \"W/\\\"d0e1e5a0-5692-45e3-9957-d9b089ecbdff\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringType\": \"AzurePublicPeering\",\r\n \"azureASN\": 12076,\r\n \
\ \"peerASN\": 10000,\r\n \"primaryPeerAddressPrefix\": \"100.0.0.0/30\"\
,\r\n \"secondaryPeerAddressPrefix\": \"101.0.0.0/30\",\r\n \"primaryAzurePort\"\
: \"A51-TEST-06GMR-CIS-1-PRI-A\",\r\n \"secondaryAzurePort\": \"A51-TEST-06GMR-CIS-2-SEC-A\"\
,\r\n \"state\": \"Enabled\",\r\n \"vlanId\": 200,\r\n \"gatewayManagerEtag\"\
- : \"9\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:39: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]
- content-length: ['763']
+ : \"\",\r\n \"lastModifiedBy\": \"Customer\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['809']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:09: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b3f9c462-9d50-11e7-8b6c-a0b3ccf7272a]
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/arpTables/primary?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/arpTables/primary?api-version=2017-09-01
response:
body: {string: 'null'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['4']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:39:19 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/10c02715-ec7f-428f-8b75-33d74c13f6da?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:09:20 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9715d65f-ec8b-43a8-b808-eceeb9e5c038?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b3f9c462-9d50-11e7-8b6c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/10c02715-ec7f-428f-8b75-33d74c13f6da?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9715d65f-ec8b-43a8-b808-eceeb9e5c038?api-version=2017-09-01
response:
body: {string: 'null'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['4']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:39:30 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/10c02715-ec7f-428f-8b75-33d74c13f6da?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:09:30 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9715d65f-ec8b-43a8-b808-eceeb9e5c038?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b3f9c462-9d50-11e7-8b6c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/10c02715-ec7f-428f-8b75-33d74c13f6da?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9715d65f-ec8b-43a8-b808-eceeb9e5c038?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": []\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:39:43 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/10c02715-ec7f-428f-8b75-33d74c13f6da?api-version=2017-09-01']
- 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]
+ cache-control: [no-cache]
content-length: ['19']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:09:41 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9715d65f-ec8b-43a8-b808-eceeb9e5c038?api-version=2017-09-01']
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c1fc8524-9d50-11e7-b0d3-a0b3ccf7272a]
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/routeTables/primary?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/routeTables/primary?api-version=2017-09-01
response:
body: {string: 'null'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['4']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:39:43 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/622c84e7-23de-4c41-8bb7-69753600c3b9?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:09:42 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/f4776bc7-8e8f-43a9-bd9e-c56485bbe726?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c1fc8524-9d50-11e7-b0d3-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/622c84e7-23de-4c41-8bb7-69753600c3b9?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/f4776bc7-8e8f-43a9-bd9e-c56485bbe726?api-version=2017-09-01
response:
body: {string: 'null'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['4']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:39:53 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/622c84e7-23de-4c41-8bb7-69753600c3b9?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
+ cache-control: [no-cache]
+ content-length: ['4']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:09:53 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/f4776bc7-8e8f-43a9-bd9e-c56485bbe726?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c1fc8524-9d50-11e7-b0d3-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/622c84e7-23de-4c41-8bb7-69753600c3b9?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/f4776bc7-8e8f-43a9-bd9e-c56485bbe726?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": []\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:40:03 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/622c84e7-23de-4c41-8bb7-69753600c3b9?api-version=2017-09-01']
- 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]
+ cache-control: [no-cache]
content-length: ['19']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:10:03 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/f4776bc7-8e8f-43a9-bd9e-c56485bbe726?api-version=2017-09-01']
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [cf01ec3a-9d50-11e7-91f0-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ee49f183-8f01-45e4-8c23-7bb54527ea67?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 15:40:05 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/ee49f183-8f01-45e4-8c23-7bb54527ea67?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ccfc33f-908e-4289-94cd-385aef35dceb?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 16:10:03 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/3ccfc33f-908e-4289-94cd-385aef35dceb?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [cf01ec3a-9d50-11e7-91f0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee49f183-8f01-45e4-8c23-7bb54527ea67?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ccfc33f-908e-4289-94cd-385aef35dceb?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:40:15 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:10:14 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [cf01ec3a-9d50-11e7-91f0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee49f183-8f01-45e4-8c23-7bb54527ea67?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ccfc33f-908e-4289-94cd-385aef35dceb?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:40:25 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:10:24 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [cf01ec3a-9d50-11e7-91f0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee49f183-8f01-45e4-8c23-7bb54527ea67?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ccfc33f-908e-4289-94cd-385aef35dceb?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:40:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:10: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [cf01ec3a-9d50-11e7-91f0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee49f183-8f01-45e4-8c23-7bb54527ea67?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ccfc33f-908e-4289-94cd-385aef35dceb?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:10:45 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:40:46 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ccfc33f-908e-4289-94cd-385aef35dceb?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:10:56 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [cf01ec3a-9d50-11e7-91f0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee49f183-8f01-45e4-8c23-7bb54527ea67?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3ccfc33f-908e-4289-94cd-385aef35dceb?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:40:56 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:11: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ee38fdb6-9d50-11e7-b3d3-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"value\": []\r\n}"}
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits?api-version=2017-09-01
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:11:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:40: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]
- content-length: ['19']
- status: {code: 200, message: OK}
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 16:11:07 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGRVhQUkVTUzo1RlJPVVRFVTNWSUVNSzZQVU03UDVSQ1I1S3xCQ0E3MTg0RUEwNzZGOTFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_lb.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_lb.yaml
new file mode 100644
index 00000000000..3110959066b
--- /dev/null
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_lb.yaml
@@ -0,0 +1,1750 @@
+interactions:
+- request:
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:04:34 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:04:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_load_balancer000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:04:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"resources": [{"type":
+ "Microsoft.Network/publicIPAddresses", "location": "westus", "name": "PublicIPlb1",
+ "apiVersion": "2017-09-01", "tags": {}, "properties": {"publicIPAllocationMethod":
+ "Dynamic"}, "dependsOn": []}, {"type": "Microsoft.Network/loadBalancers", "location":
+ "westus", "name": "lb1", "apiVersion": "2017-09-01", "tags": {}, "properties":
+ {"frontendIPConfigurations": [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
+ "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "lb1bepool"}]},
+ "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"]}], "contentVersion":
+ "1.0.0.0", "variables": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''lb1\'')]"}},
+ "parameters": {}}, "parameters": {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['1093']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","name":"lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","properties":{"templateHash":"3144015694081620847","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T00:04:37.9296426Z","duration":"PT0.1901328S","correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs/operationStatuses/08586937538077381069?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['1305']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:04:37 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A04%3A46Z%20and%20correlationId%20eq%20%277460c585-185d-4ad9-b241-357b70b8b820%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:04:46 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A04%3A56Z%20and%20correlationId%20eq%20%277460c585-185d-4ad9-b241-357b70b8b820%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"3d24d19d-8a72-4102-9f7f-4cda26adbbb7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"18e819d8-afaa-11e7-92db-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs/events/3d24d19d-8a72-4102-9f7f-4cda26adbbb7/ticks/636434498780092200","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7460c585-185d-4ad9-b241-357b70b8b820","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T00:04:38.00922Z","submissionTimestamp":"2017-10-13T00:04:49.9925478Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"9483c583-49d3-4d97-9408-227ea8e38649","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"18e819d8-afaa-11e7-92db-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs/events/9483c583-49d3-4d97-9408-227ea8e38649/ticks/636434498765560790","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7460c585-185d-4ad9-b241-357b70b8b820","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:04:36.556079Z","submissionTimestamp":"2017-10-13T00:04:49.9925478Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['7206']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:04:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A05%3A06Z%20and%20correlationId%20eq%20%277460c585-185d-4ad9-b241-357b70b8b820%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"03c45fe6-c2cc-4add-8b82-05ad40f3914c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1/events/03c45fe6-c2cc-4add-8b82-05ad40f3914c/ticks/636434498842258640","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3698341d-6622-4be5-aff7-29422b4f509e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:04:44.225864Z","submissionTimestamp":"2017-10-13T00:05:00.1557351Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"637dc3f6-4434-432c-aebe-1bd499ead069","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs/events/637dc3f6-4434-432c-aebe-1bd499ead069/ticks/636434498836397618","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"6ff8e48a-056e-4225-b478-bec9f2975316","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:04:43.6397618Z","submissionTimestamp":"2017-10-13T00:05:00.2683247Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"8f6af5ef-b143-4e68-95e9-ce195a5646cb","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eeba663-28bc-47b2-a3b7-4227f205d7b8","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/events/8f6af5ef-b143-4e68-95e9-ce195a5646cb/ticks/636434498833741333","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"f72ce96b-434b-4762-a05e-a17aaf77b741","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Microsoft.Network/loadBalancers/write"},"properties":{"statusCode":"Created","serviceRequestId":"fe4b26b6-9c64-44e9-86b5-d9948a1ee7ea","responseBody":"{\"name\":\"lb1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1\",\"etag\":\"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"b88538cf-6921-4349-a5c5-e1167f2a54f8\",\"frontendIPConfigurations\":[{\"name\":\"LoadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\"etag\":\"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"}}}],\"backendAddressPools\":[{\"name\":\"lb1bepool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\"etag\":\"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"}}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"outboundNatRules\":[],\"inboundNatPools\":[]},\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T00:04:43.3741333Z","submissionTimestamp":"2017-10-13T00:05:00.2683247Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"5b0875de-00d7-46a2-ae5a-57858ec2d18d","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eeba663-28bc-47b2-a3b7-4227f205d7b8","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/events/5b0875de-00d7-46a2-ae5a-57858ec2d18d/ticks/636434498830304044","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"f72ce96b-434b-4762-a05e-a17aaf77b741","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Microsoft.Network/loadBalancers/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"frontendIPConfigurations\":[{\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"}},\"name\":\"LoadBalancerFrontEnd\"}],\"backendAddressPools\":[{\"name\":\"lb1bepool\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:04:43.0304044Z","submissionTimestamp":"2017-10-13T00:05:00.2683247Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"3eaaf476-1dfc-48e3-850e-84e1d3d3733e","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"200c4ec7-ca56-4107-a9b8-9d8ac7891e6a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1/events/3eaaf476-1dfc-48e3-850e-84e1d3d3733e/ticks/636434498794728081","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c5dc7059-f76f-4e73-bb0c-3016e2ff9c2e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c8afbb-f44e-4710-befa-0f5e900db7bb","responseBody":"{\"name\":\"PublicIPlb1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\",\"etag\":\"W/\\\"ef604bd1-41e2-4f7b-b4e3-566297ce4626\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"4e88f56b-12e3-4fa4-8a2e-8b9602957867\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T00:04:39.4728081Z","submissionTimestamp":"2017-10-13T00:05:00.2683247Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"43842e72-f90a-4e90-91d7-e6f38a24d8ec","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"200c4ec7-ca56-4107-a9b8-9d8ac7891e6a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1/events/43842e72-f90a-4e90-91d7-e6f38a24d8ec/ticks/636434498791290226","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c5dc7059-f76f-4e73-bb0c-3016e2ff9c2e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:04:39.1290226Z","submissionTimestamp":"2017-10-13T00:05:00.2683247Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"3d24d19d-8a72-4102-9f7f-4cda26adbbb7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"18e819d8-afaa-11e7-92db-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs/events/3d24d19d-8a72-4102-9f7f-4cda26adbbb7/ticks/636434498780092200","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7460c585-185d-4ad9-b241-357b70b8b820","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T00:04:38.00922Z","submissionTimestamp":"2017-10-13T00:04:49.9925478Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","description":"","eventDataId":"9483c583-49d3-4d97-9408-227ea8e38649","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"18e819d8-afaa-11e7-92db-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs/events/9483c583-49d3-4d97-9408-227ea8e38649/ticks/636434498765560790","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7460c585-185d-4ad9-b241-357b70b8b820","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:04:36.556079Z","submissionTimestamp":"2017-10-13T00:04:49.9925478Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['31039']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586937538077381069?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","name":"lb_deploy_FXtYBZwbmrMnSUeVbyNRPPGL3l4bVEGs","properties":{"templateHash":"3144015694081620847","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-13T00:04:43.5861334Z","duration":"PT5.8466236S","correlationId":"7460c585-185d-4ad9-b241-357b70b8b820","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"b88538cf-6921-4349-a5c5-e1167f2a54f8","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3013']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:08 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_load_balancer000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"resources": [{"type":
+ "Microsoft.Network/publicIPAddresses", "location": "westus", "name": "PublicIPlb2",
+ "apiVersion": "2017-09-01", "tags": {}, "properties": {"publicIPAllocationMethod":
+ "Static"}, "dependsOn": []}, {"type": "Microsoft.Network/loadBalancers", "location":
+ "westus", "name": "lb2", "apiVersion": "2017-09-01", "tags": {}, "properties":
+ {"frontendIPConfigurations": [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}},
+ "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "lb2bepool"}]},
+ "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb2"]}], "contentVersion":
+ "1.0.0.0", "variables": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''lb2\'')]"}},
+ "parameters": {}}, "parameters": {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['1092']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf","name":"lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf","properties":{"templateHash":"17387769961125216620","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T00:05:13.2783129Z","duration":"PT1.6842793S","correlationId":"8c26920f-0273-4543-870a-3c196791c180","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb2"}]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf/operationStatuses/08586937537741572490?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['1306']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:13 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A05%3A19Z%20and%20correlationId%20eq%20%278c26920f-0273-4543-870a-3c196791c180%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A05%3A30Z%20and%20correlationId%20eq%20%278c26920f-0273-4543-870a-3c196791c180%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:30 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A05%3A40Z%20and%20correlationId%20eq%20%278c26920f-0273-4543-870a-3c196791c180%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"8c26920f-0273-4543-870a-3c196791c180","description":"","eventDataId":"57bb76fc-c98b-4ca7-9ebf-9bc856caaee1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fce65b02-c531-4050-97ac-edad4ce93b47","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2/events/57bb76fc-c98b-4ca7-9ebf-9bc856caaee1/ticks/636434499152373959","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"1b39e46c-aeeb-47b3-97d7-e0cc716ebd01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"4f08b194-96cd-4a52-8371-b886b0c236dd","responseBody":"{\"name\":\"PublicIPlb2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\",\"etag\":\"W/\\\"27ae27da-41a3-4016-a337-521c3e174196\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1038fd6b-12a4-4de1-ae7f-cc2f624a8adb\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T00:05:15.2373959Z","submissionTimestamp":"2017-10-13T00:05:29.7981721Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"8c26920f-0273-4543-870a-3c196791c180","description":"","eventDataId":"12083c99-53a8-41be-92d6-7a9e252c1d61","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fce65b02-c531-4050-97ac-edad4ce93b47","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2/events/12083c99-53a8-41be-92d6-7a9e252c1d61/ticks/636434499141873550","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"1b39e46c-aeeb-47b3-97d7-e0cc716ebd01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"Static\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:05:14.187355Z","submissionTimestamp":"2017-10-13T00:05:29.7981721Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"8c26920f-0273-4543-870a-3c196791c180","description":"","eventDataId":"9221e1d7-639a-4a7b-aeae-f666889c22aa","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d1e003a-afaa-11e7-9e63-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf/events/9221e1d7-639a-4a7b-aeae-f666889c22aa/ticks/636434499138047825","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"8c26920f-0273-4543-870a-3c196791c180","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T00:05:13.8047825Z","submissionTimestamp":"2017-10-13T00:05:29.7606194Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"8c26920f-0273-4543-870a-3c196791c180","description":"","eventDataId":"4c039511-362b-4f29-9cd1-fb0f6ca672d9","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d1e003a-afaa-11e7-9e63-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf/events/4c039511-362b-4f29-9cd1-fb0f6ca672d9/ticks/636434499101656302","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"8c26920f-0273-4543-870a-3c196791c180","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:05:10.1656302Z","submissionTimestamp":"2017-10-13T00:05:29.7596196Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['15079']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:40 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586937537741572490?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:43 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf","name":"lb_deploy_IsemMP1SMgxqROTWMHGJCV4EhcMqWyIf","properties":{"templateHash":"17387769961125216620","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-13T00:05:19.944351Z","duration":"PT8.3503174S","correlationId":"8c26920f-0273-4543-870a-3c196791c180","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb2"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"2a201d1c-ffa7-4a9f-bdbd-d6fa206137a0","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}],"backendAddressPools":[{"name":"lb2bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool","etag":"W/\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3013']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:43 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"PublicIPlb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\
+ ,\r\n \"etag\": \"W/\\\"381b4aad-1a12-49ec-a523-6428a5491039\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1038fd6b-12a4-4de1-ae7f-cc2f624a8adb\"\
+ ,\r\n \"ipAddress\": \"104.42.125.196\",\r\n \"publicIPAddressVersion\"\
+ : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
+ : 4,\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
+ \n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['986']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:45 GMT']
+ etag: [W/"381b4aad-1a12-49ec-a523-6428a5491039"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "properties": {"dhcpOptions": {}, "addressSpace":
+ {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"properties": {"addressPrefix":
+ "10.0.0.0/24"}, "name": "default"}]}, "tags": {}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['205']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"mytestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet\"\
+ ,\r\n \"etag\": \"W/\\\"d8890c4a-9353-4201-9ce2-4af7e63fbfd4\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Updating\",\r\n \"resourceGuid\": \"c21ce763-8f20-4d1e-8b2b-24e1edc227e9\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
+ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"d8890c4a-9353-4201-9ce2-4af7e63fbfd4\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
+ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c16ab98b-b352-49e9-8705-7c97e4fc9163?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1245']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:46 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c16ab98b-b352-49e9-8705-7c97e4fc9163?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"mytestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet\"\
+ ,\r\n \"etag\": \"W/\\\"c1cb6dc9-8ec5-4a7b-8bcc-04acf4772edb\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c21ce763-8f20-4d1e-8b2b-24e1edc227e9\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
+ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"c1cb6dc9-8ec5-4a7b-8bcc-04acf4772edb\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
+ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1247']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:49 GMT']
+ etag: [W/"c1cb6dc9-8ec5-4a7b-8bcc-04acf4772edb"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_load_balancer000001%27%20and%20name%20eq%20%27mytestvnet%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
+ response:
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet","name":"mytestvnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['311']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"resources": [{"type":
+ "Microsoft.Network/loadBalancers", "location": "westus", "name": "lb3", "apiVersion":
+ "2017-09-01", "tags": {}, "properties": {"frontendIPConfigurations": [{"properties":
+ {"privateIPAllocationMethod": "Static", "privateIPAddress": "10.0.0.15", "subnet":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}},
+ "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "lb3bepool"}]},
+ "dependsOn": []}], "contentVersion": "1.0.0.0", "variables": {}, "$schema":
+ "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''lb3\'')]"}},
+ "parameters": {}}, "parameters": {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['914']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_XnDLDiyqdzHQSAalApNdWxMRuRdyz27D","name":"lb_deploy_XnDLDiyqdzHQSAalApNdWxMRuRdyz27D","properties":{"templateHash":"8664139636880683375","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T00:05:51.7527628Z","duration":"PT0.1830341S","correlationId":"94c4900b-e9ea-4461-b28f-37a52d6ba756","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_XnDLDiyqdzHQSAalApNdWxMRuRdyz27D/operationStatuses/08586937537339078858?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['672']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:05:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A06%3A00Z%20and%20correlationId%20eq%20%2794c4900b-e9ea-4461-b28f-37a52d6ba756%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:00 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A06%3A11Z%20and%20correlationId%20eq%20%2794c4900b-e9ea-4461-b28f-37a52d6ba756%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586937537339078858?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_XnDLDiyqdzHQSAalApNdWxMRuRdyz27D","name":"lb_deploy_XnDLDiyqdzHQSAalApNdWxMRuRdyz27D","properties":{"templateHash":"8664139636880683375","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-13T00:05:52.8745159Z","duration":"PT1.3047872S","correlationId":"94c4900b-e9ea-4461-b28f-37a52d6ba756","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"eaa0f67a-1c5d-4512-9a3a-67286dbc303b","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"8f646fbb-6bf0-4808-9c99-215a4095c146\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}}}],"backendAddressPools":[{"name":"lb3bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool","etag":"W/\"8f646fbb-6bf0-4808-9c99-215a4095c146\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2204']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:23 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"sku": {"name": "Basic"}, "location": "westus", "properties": {"idleTimeoutInMinutes":
+ 4, "publicIPAllocationMethod": "Dynamic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['130']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"publicip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
+ ,\r\n \"etag\": \"W/\\\"f6e0155e-86de-48f3-bbce-fa0758e70728\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"75222fb5-bf3b-491e-8ebb-46f7aba41488\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b1116e83-6a45-4ec2-bd00-695c944ba1b1?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['647']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:25 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b1116e83-6a45-4ec2-bd00-695c944ba1b1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"publicip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
+ ,\r\n \"etag\": \"W/\\\"1d6f60a2-0072-45d0-8170-f0aa0f5c362a\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"75222fb5-bf3b-491e-8ebb-46f7aba41488\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['648']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:29 GMT']
+ etag: [W/"1d6f60a2-0072-45d0-8170-f0aa0f5c362a"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001","name":"cli_test_load_balancer000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:29 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceGroup%20eq%20%27cli_test_load_balancer000001%27%20and%20name%20eq%20%27publicip4%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27
+ response:
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4","name":"publicip4","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['326']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:29 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"resources": [{"type":
+ "Microsoft.Network/loadBalancers", "location": "westus", "name": "lb4", "apiVersion":
+ "2017-09-01", "tags": {}, "properties": {"frontendIPConfigurations": [{"properties":
+ {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}},
+ "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "lb4bepool"}]},
+ "dependsOn": []}], "contentVersion": "1.0.0.0", "variables": {}, "$schema":
+ "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''lb4\'')]"}},
+ "parameters": {}}, "parameters": {}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['836']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE","name":"lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE","properties":{"templateHash":"15425282511933608954","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T00:06:31.8904591Z","duration":"PT0.5156116S","correlationId":"6c803c48-bc8d-442f-881e-108d085b795b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE/operationStatuses/08586937536941027657?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['673']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:31 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A06%3A40Z%20and%20correlationId%20eq%20%276c803c48-bc8d-442f-881e-108d085b795b%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:40 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A06%3A50Z%20and%20correlationId%20eq%20%276c803c48-bc8d-442f-881e-108d085b795b%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:06:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-01T08%3A07%3A01Z%20and%20correlationId%20eq%20%276c803c48-bc8d-442f-881e-108d085b795b%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"6c803c48-bc8d-442f-881e-108d085b795b","description":"","eventDataId":"8e142910-826f-46a3-bcfd-53835441d942","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE/events/8e142910-826f-46a3-bcfd-53835441d942/ticks/636434499943558280","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"8802b296-9d74-40f5-b46c-9ca45d1aa3c7","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:06:34.355828Z","submissionTimestamp":"2017-10-13T00:06:50.1729915Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"6c803c48-bc8d-442f-881e-108d085b795b","description":"","eventDataId":"eca86272-cf55-4509-a83e-c105388bac67","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"56cb0469-2259-471d-abd0-bd2d804947b1","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/events/eca86272-cf55-4509-a83e-c105388bac67/ticks/636434499940433489","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ee597c91-3a01-4803-a5ed-c6934f3ec187","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Microsoft.Network/loadBalancers/write"},"properties":{"statusCode":"Created","serviceRequestId":"b7b2d932-f264-442a-8aee-cf4f15d1b18f","responseBody":"{\"name\":\"lb4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4\",\"etag\":\"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"20f63563-846e-46c3-9351-a9923a36356d\",\"frontendIPConfigurations\":[{\"name\":\"LoadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd\",\"etag\":\"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"}}}],\"backendAddressPools\":[{\"name\":\"lb4bepool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool\",\"etag\":\"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"}}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"outboundNatRules\":[],\"inboundNatPools\":[]},\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T00:06:34.0433489Z","submissionTimestamp":"2017-10-13T00:06:50.1729915Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"6c803c48-bc8d-442f-881e-108d085b795b","description":"","eventDataId":"a9924698-019f-4577-899b-13f41822b514","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"56cb0469-2259-471d-abd0-bd2d804947b1","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/events/a9924698-019f-4577-899b-13f41822b514/ticks/636434499932620803","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ee597c91-3a01-4803-a5ed-c6934f3ec187","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Microsoft.Network/loadBalancers/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"frontendIPConfigurations\":[{\"properties\":{\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"}},\"name\":\"LoadBalancerFrontEnd\"}],\"backendAddressPools\":[{\"name\":\"lb4bepool\"}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:06:33.2620803Z","submissionTimestamp":"2017-10-13T00:06:50.1729915Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"6c803c48-bc8d-442f-881e-108d085b795b","description":"","eventDataId":"82e33a10-180e-49e5-8dfc-bb0e2524de1a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d11f162-afaa-11e7-96cc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE/events/82e33a10-180e-49e5-8dfc-bb0e2524de1a/ticks/636434499920375080","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"6c803c48-bc8d-442f-881e-108d085b795b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T00:06:32.037508Z","submissionTimestamp":"2017-10-13T00:06:50.0087122Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507852501","nbf":"1507852501","exp":"1507856401","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYJjud5MnradSt0kx4a7zHfV3y75O7VKcwSrFIXNHKvDy6g0A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"2yxkXwtsnEmcxF2Sf58FAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"6c803c48-bc8d-442f-881e-108d085b795b","description":"","eventDataId":"ef9f6c60-3bdb-4328-a35d-0abcedf310eb","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d11f162-afaa-11e7-96cc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE/events/ef9f6c60-3bdb-4328-a35d-0abcedf310eb/ticks/636434499904567317","level":"Informational","resourceGroupName":"cli_test_load_balancer000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"6c803c48-bc8d-442f-881e-108d085b795b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T00:06:30.4567317Z","submissionTimestamp":"2017-10-13T00:06:50.0087122Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['19801']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:07:00 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586937536941027657?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:07:01 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Resources/deployments/lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE","name":"lb_deploy_eC9jYb0Mji4blkdNGiVWMwhuaDCGoDnE","properties":{"templateHash":"15425282511933608954","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-13T00:06:34.2852848Z","duration":"PT2.9104373S","correlationId":"6c803c48-bc8d-442f-881e-108d085b795b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"20f63563-846e-46c3-9351-a9923a36356d","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"74a761ff-2373-44f4-be63-aa377af27023\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}],"backendAddressPools":[{"name":"lb4bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool","etag":"W/\"74a761ff-2373-44f4-be63-aa377af27023\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2169']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:07:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/loadBalancers?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"lb1\",\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88538cf-6921-4349-a5c5-e1167f2a54f8\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb2\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2a201d1c-ffa7-4a9f-bdbd-d6fa206137a0\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb2bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb3\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eaa0f67a-1c5d-4512-9a3a-67286dbc303b\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\
+ \ \"privateIPAllocationMethod\": \"Static\",\r\n \
+ \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb3bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb4\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20f63563-846e-46c3-9351-a9923a36356d\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb4bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb1\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-nic/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"b54de22c-37e2-4dfe-9a33-f487f389d667\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28d6ccd8-9cf2-4dfe-9a6c-7480b0bc901d\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-nic/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"b54de22c-37e2-4dfe-9a33-f487f389d667\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-nic/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-nic/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"b54de22c-37e2-4dfe-9a33-f487f389d667\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"yugangw-ssLB\",\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB\"\
+ ,\r\n \"etag\": \"W/\\\"58864f5d-06a2-474d-ab92-6b19e3c3ad02\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce0d0f6f-039e-4a95-b57f-e99e8eff89d0\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"loadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB/frontendIPConfigurations/loadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"58864f5d-06a2-474d-ab92-6b19e3c3ad02\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/publicIPAddresses/yugangw-ssLBPublicIP\"\
+ \r\n },\r\n \"inboundNatRules\": [\r\n \
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB/inboundNatRules/yugangw-ssLBNatPool.0\"\
+ \r\n }\r\n ],\r\n \"inboundNatPools\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB/inboundNatPools/yugangw-ssLBNatPool\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\
+ \n ],\r\n \"backendAddressPools\": [\r\n {\r\n \
+ \ \"name\": \"yugangw-ssLBBEPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB/backendAddressPools/yugangw-ssLBBEPool\"\
+ ,\r\n \"etag\": \"W/\\\"58864f5d-06a2-474d-ab92-6b19e3c3ad02\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n \
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Compute/virtualMachineScaleSets/yugangw-ss/virtualMachines/0/networkInterfaces/yugan89abNic/ipConfigurations/yugan89abIPConfig\"\
+ \r\n }\r\n ]\r\n }\r\n }\r\
+ \n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\"\
+ : [],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\"\
+ : \"yugangw-ssLBNatPool.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB/inboundNatRules/yugangw-ssLBNatPool.0\"\
+ ,\r\n \"etag\": \"W/\\\"58864f5d-06a2-474d-ab92-6b19e3c3ad02\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB/frontendIPConfigurations/loadBalancerFrontEnd\"\
+ \r\n },\r\n \"frontendPort\": 50000,\r\n \
+ \ \"backendPort\": 3389,\r\n \"enableFloatingIP\": false,\r\
+ \n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\"\
+ : \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Compute/virtualMachineScaleSets/yugangw-ss/virtualMachines/0/networkInterfaces/yugan89abNic/ipConfigurations/yugan89abIPConfig\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n \
+ \ {\r\n \"name\": \"yugangw-ssLBNatPool\",\r\n \"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB/inboundNatPools/yugangw-ssLBNatPool\"\
+ ,\r\n \"etag\": \"W/\\\"58864f5d-06a2-474d-ab92-6b19e3c3ad02\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"frontendPortRangeStart\": 50000,\r\n \
+ \ \"frontendPortRangeEnd\": 50119,\r\n \"backendPort\"\
+ : 3389,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB/frontendIPConfigurations/loadBalancerFrontEnd\"\
+ \r\n }\r\n }\r\n }\r\n ]\r\n \
+ \ },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n \
+ \ }\r\n ]\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['15309']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:07:10 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"lb1\",\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88538cf-6921-4349-a5c5-e1167f2a54f8\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb2\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2a201d1c-ffa7-4a9f-bdbd-d6fa206137a0\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb2bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb3\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eaa0f67a-1c5d-4512-9a3a-67286dbc303b\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\
+ \ \"privateIPAllocationMethod\": \"Static\",\r\n \
+ \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb3bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb4\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20f63563-846e-46c3-9351-a9923a36356d\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb4bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n }\r\n ]\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['8571']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:07:10 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"b88538cf-6921-4349-a5c5-e1167f2a54f8\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
+ : [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
+ \ \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\"\
+ : [],\r\n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\"\
+ : \"Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1946']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:07:11 GMT']
+ etag: [W/"8ceef9df-8ed6-42db-9fb8-1af82cf7acaa"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ response:
+ body: {string: ''}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/52384e5f-96c6-475f-9bd8-605725ce6520?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 00:07:11 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/52384e5f-96c6-475f-9bd8-605725ce6520?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/52384e5f-96c6-475f-9bd8-605725ce6520?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:07:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"lb2\",\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2a201d1c-ffa7-4a9f-bdbd-d6fa206137a0\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb2bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\
+ ,\r\n \"etag\": \"W/\\\"f5fffef0-34ee-41a2-af7f-b4c7a7cd968d\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb3\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eaa0f67a-1c5d-4512-9a3a-67286dbc303b\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\
+ \ \"privateIPAllocationMethod\": \"Static\",\r\n \
+ \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb3bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool\"\
+ ,\r\n \"etag\": \"W/\\\"8f646fbb-6bf0-4808-9c99-215a4095c146\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n },\r\n {\r\n \"name\": \"lb4\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\",\r\
+ \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
+ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20f63563-846e-46c3-9351-a9923a36356d\"\
+ ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
+ \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
+ ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \
+ \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
+ lb4bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer000001/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool\"\
+ ,\r\n \"etag\": \"W/\\\"74a761ff-2373-44f4-be63-aa377af27023\\\"\
+ \",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
+ loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
+ : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
+ : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
+ \ }\r\n }\r\n ]\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['6446']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 00:07:23 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 00:07:24 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTE9BRDo1RkJBTEFOQ0VSQU1XTURGUFNWUDVEM0ZESzJUWnwzNzIyQ0ZEMzdBOEM4RTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ status: {code: 202, message: Accepted}
+version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_load_balancer.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_load_balancer.yaml
deleted file mode 100644
index 91e3ea40004..00000000000
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_load_balancer.yaml
+++ /dev/null
@@ -1,1212 +0,0 @@
-interactions:
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ffc24334-9d4f-11e7-b3cb-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer","name":"cli_test_load_balancer","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['234']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0004af0c-9d50-11e7-bead-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_load_balancer%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10
- response:
- body: {string: '{"value":[]}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:18 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['12']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"template": {"contentVersion": "1.0.0.0", "parameters":
- {}, "variables": {}, "resources": [{"location": "westus", "sku": {"name": "Basic"},
- "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": "Dynamic"},
- "apiVersion": "2017-09-01", "name": "PublicIPlb1", "type": "Microsoft.Network/publicIPAddresses"},
- {"location": "westus", "sku": {"name": "Basic"}, "tags": {}, "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"],
- "properties": {"frontendIPConfigurations": [{"properties": {"publicIPAddress":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
- "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "lb1bepool"}]},
- "apiVersion": "2017-09-01", "name": "lb1", "type": "Microsoft.Network/loadBalancers"}],
- "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "outputs": {"loadBalancer": {"value": "[reference(''lb1'')]", "type": "object"}}},
- "mode": "Incremental", "parameters": {}}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['1098']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0094ac62-9d50-11e7-a2d5-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_CMO5Uj1HznPdlWmebu5XV4933IBJUACb","name":"lb_deploy_CMO5Uj1HznPdlWmebu5XV4933IBJUACb","properties":{"templateHash":"14744216508152902137","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:34:19.898151Z","duration":"PT0.1944084S","correlationId":"02afbe1b-3d9a-4a10-b2a5-0bc4be358ae5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}'}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_CMO5Uj1HznPdlWmebu5XV4933IBJUACb/operationStatuses/08586957716257738757?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['1164']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:19 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0094ac62-9d50-11e7-a2d5-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957716257738757?api-version=2017-05-10
- response:
- body: {string: '{"status":"Succeeded"}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['22']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [0094ac62-9d50-11e7-a2d5-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_CMO5Uj1HznPdlWmebu5XV4933IBJUACb","name":"lb_deploy_CMO5Uj1HznPdlWmebu5XV4933IBJUACb","properties":{"templateHash":"14744216508152902137","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T15:34:42.0497233Z","duration":"PT22.3459807S","correlationId":"02afbe1b-3d9a-4a10-b2a5-0bc4be358ae5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"f42215d3-7fab-474b-99fd-68e212a6b1a1","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"fc727a33-84f8-49bc-9d38-214b5e78486c\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"fc727a33-84f8-49bc-9d38-214b5e78486c\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['2639']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [13b7f67a-9d50-11e7-9c24-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer","name":"cli_test_load_balancer","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:51 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['234']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [13d6593e-9d50-11e7-bfd2-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_load_balancer%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10
- response:
- body: {string: '{"value":[]}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:51 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['12']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"template": {"contentVersion": "1.0.0.0", "parameters":
- {}, "variables": {}, "resources": [{"location": "westus", "sku": {"name": "Basic"},
- "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": "Static"},
- "apiVersion": "2017-09-01", "name": "PublicIPlb2", "type": "Microsoft.Network/publicIPAddresses"},
- {"location": "westus", "sku": {"name": "Basic"}, "tags": {}, "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb2"],
- "properties": {"frontendIPConfigurations": [{"properties": {"publicIPAddress":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}},
- "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "lb2bepool"}]},
- "apiVersion": "2017-09-01", "name": "lb2", "type": "Microsoft.Network/loadBalancers"}],
- "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "outputs": {"loadBalancer": {"value": "[reference(''lb2'')]", "type": "object"}}},
- "mode": "Incremental", "parameters": {}}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['1097']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [1427e2f6-9d50-11e7-b39a-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_5touV7RPoZCWkyftOfF8dxisAO2dGq5d","name":"lb_deploy_5touV7RPoZCWkyftOfF8dxisAO2dGq5d","properties":{"templateHash":"13334982300857805534","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:34:53.4254429Z","duration":"PT0.6817949S","correlationId":"5221e216-ab3c-4012-a086-f890b24982a8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb2"}]}}'}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_5touV7RPoZCWkyftOfF8dxisAO2dGq5d/operationStatuses/08586957715927340031?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['1165']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:34:53 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [1427e2f6-9d50-11e7-b39a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715927340031?api-version=2017-05-10
- response:
- body: {string: '{"status":"Succeeded"}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:23 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['22']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [1427e2f6-9d50-11e7-b39a-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_5touV7RPoZCWkyftOfF8dxisAO2dGq5d","name":"lb_deploy_5touV7RPoZCWkyftOfF8dxisAO2dGq5d","properties":{"templateHash":"13334982300857805534","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T15:35:09.8706078Z","duration":"PT17.1269598S","correlationId":"5221e216-ab3c-4012-a086-f890b24982a8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb2"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"1556c9f9-feaf-48b8-b8e3-488bfc3f2354","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"438ccf28-0122-4ff4-824f-2fe27c9762ff\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}],"backendAddressPools":[{"name":"lb2bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool","etag":"W/\"438ccf28-0122-4ff4-824f-2fe27c9762ff\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}]}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:23 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['2639']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [27ca8006-9d50-11e7-bb20-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"PublicIPlb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\
- ,\r\n \"etag\": \"W/\\\"c880397c-2896-4a14-bca5-2217298afdfb\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"26cb4ac9-b606-4c4f-856c-012f5a532064\"\
- ,\r\n \"ipAddress\": \"52.160.96.168\",\r\n \"publicIPAddressVersion\"\
- : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
- : 4,\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
- \n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:26 GMT']
- ETag: [W/"c880397c-2896-4a14-bca5-2217298afdfb"]
- 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]
- content-length: ['891']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [29433a78-9d50-11e7-b34e-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer","name":"cli_test_load_balancer","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:26 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['234']
- status: {code: 200, message: OK}
-- request:
- body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix":
- "10.0.0.0/24"}, "name": "default"}]}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['205']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2953eb34-9d50-11e7-ac89-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"mytestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet\"\
- ,\r\n \"etag\": \"W/\\\"cf037bb1-d02a-41a3-b1b5-918f77e96b95\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
- ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"59425e64-8474-4d7b-9504-1121484cc6ae\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
- 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"cf037bb1-d02a-41a3-b1b5-918f77e96b95\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
- \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
- : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3b491d4d-7d8d-44bb-90d2-f304978cf389?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['1151']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2953eb34-9d50-11e7-ac89-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b491d4d-7d8d-44bb-90d2-f304978cf389?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35: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]
- content-length: ['29']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2953eb34-9d50-11e7-ac89-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"mytestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet\"\
- ,\r\n \"etag\": \"W/\\\"b1389991-5107-4de3-ab63-6c04139b54e7\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
- ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"59425e64-8474-4d7b-9504-1121484cc6ae\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
- 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"b1389991-5107-4de3-ab63-6c04139b54e7\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
- \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
- : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:31 GMT']
- ETag: [W/"b1389991-5107-4de3-ab63-6c04139b54e7"]
- 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]
- content-length: ['1153']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2bc1cd74-9d50-11e7-b32c-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer","name":"cli_test_load_balancer","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:31 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['234']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2bd27e36-9d50-11e7-b0ff-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_load_balancer%27%20and%20name%20eq%20%27mytestvnet%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
- response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet","name":"mytestvnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:31 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['264']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"template": {"contentVersion": "1.0.0.0", "parameters":
- {}, "variables": {}, "resources": [{"location": "westus", "sku": {"name": "Basic"},
- "tags": {}, "dependsOn": [], "properties": {"frontendIPConfigurations": [{"properties":
- {"privateIPAllocationMethod": "Static", "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"},
- "privateIPAddress": "10.0.0.15"}, "name": "LoadBalancerFrontEnd"}], "backendAddressPools":
- [{"name": "lb3bepool"}]}, "apiVersion": "2017-09-01", "name": "lb3", "type":
- "Microsoft.Network/loadBalancers"}], "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "outputs": {"loadBalancer": {"value": "[reference(''lb3'')]", "type": "object"}}},
- "mode": "Incremental", "parameters": {}}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['893']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2bfd695e-9d50-11e7-88ed-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_ljCEk2pIPsnW5lJ1LaSlsUNxHq8J5xjT","name":"lb_deploy_ljCEk2pIPsnW5lJ1LaSlsUNxHq8J5xjT","properties":{"templateHash":"11017788522170238402","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:35:33.1240883Z","duration":"PT0.5540743S","correlationId":"8c259f80-7f4f-4229-a5f4-1edb1a0a62c1","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_ljCEk2pIPsnW5lJ1LaSlsUNxHq8J5xjT/operationStatuses/08586957715529075958?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['626']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:35:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2bfd695e-9d50-11e7-88ed-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715529075958?api-version=2017-05-10
- response:
- body: {string: '{"status":"Succeeded"}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:03 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['22']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [2bfd695e-9d50-11e7-88ed-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_ljCEk2pIPsnW5lJ1LaSlsUNxHq8J5xjT","name":"lb_deploy_ljCEk2pIPsnW5lJ1LaSlsUNxHq8J5xjT","properties":{"templateHash":"11017788522170238402","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T15:35:35.6142083Z","duration":"PT3.0441943S","correlationId":"8c259f80-7f4f-4229-a5f4-1edb1a0a62c1","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"730cd46c-efbf-4769-a87e-afaed0544387","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}}}],"backendAddressPools":[{"name":"lb3bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool","etag":"W/\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3"}]}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:03 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['1970']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [3f77fe64-9d50-11e7-a1ec-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer","name":"cli_test_load_balancer","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:03 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['234']
- status: {code: 200, message: OK}
-- request:
- body: '{"location": "westus", "sku": {"name": "Basic"}, "properties": {"publicIPAllocationMethod":
- "Dynamic", "idleTimeoutInMinutes": 4, "publicIPAddressVersion": "IPv4"}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['164']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [3f8aed6c-9d50-11e7-b804-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"publicip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
- ,\r\n \"etag\": \"W/\\\"d8cae40a-86d8-4ceb-b28a-dff2c92b4cae\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"514d5f66-3d39-4737-ad88-9e445eacb090\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/923a32e7-9801-4ce8-8eee-9c698662b217?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['600']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:05 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [3f8aed6c-9d50-11e7-b804-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/923a32e7-9801-4ce8-8eee-9c698662b217?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:07 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]
- content-length: ['29']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [3f8aed6c-9d50-11e7-b804-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"publicip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
- ,\r\n \"etag\": \"W/\\\"ab418fc3-895c-4b08-84de-3bf0d7a984b7\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"514d5f66-3d39-4737-ad88-9e445eacb090\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:09 GMT']
- ETag: [W/"ab418fc3-895c-4b08-84de-3bf0d7a984b7"]
- 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]
- content-length: ['601']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [424a13ee-9d50-11e7-b47e-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer","name":"cli_test_load_balancer","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:09 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['234']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [425d02f4-9d50-11e7-9461-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_load_balancer%27%20and%20name%20eq%20%27publicip4%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10
- response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4","name":"publicip4","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"}]}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:08 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['279']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"template": {"contentVersion": "1.0.0.0", "parameters":
- {}, "variables": {}, "resources": [{"location": "westus", "sku": {"name": "Basic"},
- "tags": {}, "dependsOn": [], "properties": {"frontendIPConfigurations": [{"properties":
- {"publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4"}},
- "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "lb4bepool"}]},
- "apiVersion": "2017-09-01", "name": "lb4", "type": "Microsoft.Network/loadBalancers"}],
- "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "outputs": {"loadBalancer": {"value": "[reference(''lb4'')]", "type": "object"}}},
- "mode": "Incremental", "parameters": {}}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['815']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [42826be2-9d50-11e7-875f-a0b3ccf7272a]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_LKo6HYGFExNHsOnSGMoNvb7mssns8ySA","name":"lb_deploy_LKo6HYGFExNHsOnSGMoNvb7mssns8ySA","properties":{"templateHash":"17059103188131434276","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:36:10.9698373Z","duration":"PT0.480524S","correlationId":"e728a8a3-505f-4cd2-b04b-80e7cdbafa46","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_LKo6HYGFExNHsOnSGMoNvb7mssns8ySA/operationStatuses/08586957715149882994?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['625']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:11 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [42826be2-9d50-11e7-875f-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957715149882994?api-version=2017-05-10
- response:
- body: {string: '{"status":"Succeeded"}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:41 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['22']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [42826be2-9d50-11e7-875f-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Resources/deployments/lb_deploy_LKo6HYGFExNHsOnSGMoNvb7mssns8ySA","name":"lb_deploy_LKo6HYGFExNHsOnSGMoNvb7mssns8ySA","properties":{"templateHash":"17059103188131434276","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T15:36:18.5079212Z","duration":"PT8.0186079S","correlationId":"e728a8a3-505f-4cd2-b04b-80e7cdbafa46","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"108d9d81-59b6-442f-90ea-312eeb706428","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}],"backendAddressPools":[{"name":"lb4bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool","etag":"W/\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4"}]}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:41 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['1934']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [5609c168-9d50-11e7-85be-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/loadBalancers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"vmss1LB","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB","etag":"W/\"5278fffd-5dde-4057-9e69-2e601d121bd7\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"832dccfc-a456-4be9-9861-8b055673991e","frontendIPConfigurations":[{"name":"loadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd","etag":"W/\"5278fffd-5dde-4057-9e69-2e601d121bd7\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],"backendAddressPools":[{"name":"vmss1LBBEPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool","etag":"W/\"5278fffd-5dde-4057-9e69-2e601d121bd7\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1e043Nic/ipConfigurations/vmss1e043IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1e043Nic/ipConfigurations/vmss1e043IPConfig"}]}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[{"name":"vmss1LBNatPool.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0","etag":"W/\"5278fffd-5dde-4057-9e69-2e601d121bd7\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50000,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1e043Nic/ipConfigurations/vmss1e043IPConfig"}}},{"name":"vmss1LBNatPool.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1","etag":"W/\"5278fffd-5dde-4057-9e69-2e601d121bd7\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1e043Nic/ipConfigurations/vmss1e043IPConfig"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"vmss1LBNatPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool","etag":"W/\"5278fffd-5dde-4057-9e69-2e601d121bd7\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":50000,"frontendPortRangeEnd":50119,"backendPort":22,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"}}}]},"sku":{"name":"Basic"}},{"name":"vmss1LB","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB","etag":"W/\"276ee019-cffa-4d59-9b97-653c15d00d45\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"90aeb109-46a5-471a-aecd-7a6884d50a2c","frontendIPConfigurations":[{"name":"loadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd","etag":"W/\"276ee019-cffa-4d59-9b97-653c15d00d45\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],"backendAddressPools":[{"name":"vmss1LBBEPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool","etag":"W/\"276ee019-cffa-4d59-9b97-653c15d00d45\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1519cNic/ipConfigurations/vmss1519cIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1519cNic/ipConfigurations/vmss1519cIPConfig"}]}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[{"name":"vmss1LBNatPool.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1","etag":"W/\"276ee019-cffa-4d59-9b97-653c15d00d45\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1519cNic/ipConfigurations/vmss1519cIPConfig"}}},{"name":"vmss1LBNatPool.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3","etag":"W/\"276ee019-cffa-4d59-9b97-653c15d00d45\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1519cNic/ipConfigurations/vmss1519cIPConfig"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"vmss1LBNatPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool","etag":"W/\"276ee019-cffa-4d59-9b97-653c15d00d45\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":50000,"frontendPortRangeEnd":50119,"backendPort":22,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"}}}]},"sku":{"name":"Basic"}},{"name":"lb1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1","etag":"W/\"fc727a33-84f8-49bc-9d38-214b5e78486c\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f42215d3-7fab-474b-99fd-68e212a6b1a1","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"fc727a33-84f8-49bc-9d38-214b5e78486c\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"fc727a33-84f8-49bc-9d38-214b5e78486c\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2","etag":"W/\"438ccf28-0122-4ff4-824f-2fe27c9762ff\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1556c9f9-feaf-48b8-b8e3-488bfc3f2354","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"438ccf28-0122-4ff4-824f-2fe27c9762ff\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2"}}}],"backendAddressPools":[{"name":"lb2bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool","etag":"W/\"438ccf28-0122-4ff4-824f-2fe27c9762ff\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3","etag":"W/\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"730cd46c-efbf-4769-a87e-afaed0544387","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Static","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default"}}}],"backendAddressPools":[{"name":"lb3bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool","etag":"W/\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"lb4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4","etag":"W/\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"108d9d81-59b6-442f-90ea-312eeb706428","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4"}}}],"backendAddressPools":[{"name":"lb4bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool","etag":"W/\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}},{"name":"vmss1LB","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB","etag":"W/\"dfde4b8f-8eea-42f8-9473-aead30adad28\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"16e37a25-3e8d-422a-83e2-84f1a535ab99","frontendIPConfigurations":[{"name":"loadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd","etag":"W/\"dfde4b8f-8eea-42f8-9473-aead30adad28\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.4"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],"backendAddressPools":[{"name":"vmss1LBBEPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool","etag":"W/\"dfde4b8f-8eea-42f8-9473-aead30adad28\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1a6c3Nic/ipConfigurations/vmss1a6c3IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/4/networkInterfaces/vmss1a6c3Nic/ipConfigurations/vmss1a6c3IPConfig"}]}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[{"name":"vmss1LBNatPool.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1","etag":"W/\"dfde4b8f-8eea-42f8-9473-aead30adad28\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50001,"backendPort":3389,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1a6c3Nic/ipConfigurations/vmss1a6c3IPConfig"}}},{"name":"vmss1LBNatPool.4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.4","etag":"W/\"dfde4b8f-8eea-42f8-9473-aead30adad28\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50004,"backendPort":3389,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/4/networkInterfaces/vmss1a6c3Nic/ipConfigurations/vmss1a6c3IPConfig"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"vmss1LBNatPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool","etag":"W/\"dfde4b8f-8eea-42f8-9473-aead30adad28\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":50000,"frontendPortRangeEnd":50119,"backendPort":3389,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"}}}]},"sku":{"name":"Basic"}},{"name":"vmss1LB","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB","etag":"W/\"f1915ef4-2187-410d-9e54-9d87f660a3e3\"","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1b61dd4c-0bb8-444d-81d1-efdeb25ee7e0","frontendIPConfigurations":[{"name":"loadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd","etag":"W/\"f1915ef4-2187-410d-9e54-9d87f660a3e3\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],"backendAddressPools":[{"name":"vmss1LBBEPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool","etag":"W/\"f1915ef4-2187-410d-9e54-9d87f660a3e3\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1861aNic/ipConfigurations/vmss1861aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1861aNic/ipConfigurations/vmss1861aIPConfig"}]}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[{"name":"vmss1LBNatPool.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1","etag":"W/\"f1915ef4-2187-410d-9e54-9d87f660a3e3\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1861aNic/ipConfigurations/vmss1861aIPConfig"}}},{"name":"vmss1LBNatPool.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3","etag":"W/\"f1915ef4-2187-410d-9e54-9d87f660a3e3\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1861aNic/ipConfigurations/vmss1861aIPConfig"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"vmss1LBNatPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool","etag":"W/\"f1915ef4-2187-410d-9e54-9d87f660a3e3\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":50000,"frontendPortRangeEnd":50119,"backendPort":22,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"}}}]},"sku":{"name":"Basic"}},{"name":"extlb1-5494","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494","etag":"W/\"06e53741-a53d-4d31-9553-013c7ad59580\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ffc53bdc-0d7c-4e5a-b855-0a286f23c331","frontendIPConfigurations":[{"name":"extlb1-5494-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/frontendIPConfigurations/extlb1-5494-FE1","etag":"W/\"06e53741-a53d-4d31-9553-013c7ad59580\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-5494"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/loadBalancingRules/httpRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/inboundNatRules/extlb1-5494-INP1.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/inboundNatRules/extlb1-5494-INP1.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/inboundNatPools/extlb1-5494-INP1"}]}}],"backendAddressPools":[{"name":"extlb1-5494-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/backendAddressPools/extlb1-5494-BAP1","etag":"W/\"06e53741-a53d-4d31-9553-013c7ad59580\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Compute/virtualMachineScaleSets/vmss6670/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Compute/virtualMachineScaleSets/vmss6670/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/loadBalancingRules/httpRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/loadBalancingRules/httpRule","etag":"W/\"06e53741-a53d-4d31-9553-013c7ad59580\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/frontendIPConfigurations/extlb1-5494-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/backendAddressPools/extlb1-5494-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/probes/httpProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/probes/httpProbe","etag":"W/\"06e53741-a53d-4d31-9553-013c7ad59580\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/loadBalancingRules/httpRule"}]}}],"inboundNatRules":[{"name":"extlb1-5494-INP1.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/inboundNatRules/extlb1-5494-INP1.0","etag":"W/\"06e53741-a53d-4d31-9553-013c7ad59580\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/frontendIPConfigurations/extlb1-5494-FE1"},"frontendPort":5000,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Compute/virtualMachineScaleSets/vmss6670/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-5494-INP1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/inboundNatRules/extlb1-5494-INP1.3","etag":"W/\"06e53741-a53d-4d31-9553-013c7ad59580\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/frontendIPConfigurations/extlb1-5494-FE1"},"frontendPort":5003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Compute/virtualMachineScaleSets/vmss6670/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-5494-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/inboundNatPools/extlb1-5494-INP1","etag":"W/\"06e53741-a53d-4d31-9553-013c7ad59580\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Network/loadBalancers/extlb1-5494/frontendIPConfigurations/extlb1-5494-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"extlb1-6193","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3f40533f-be6d-438a-8cf8-3840bd34461f","frontendIPConfigurations":[{"name":"extlb1-6193-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/frontendIPConfigurations/extlb1-6193-FE1","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-6193"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/loadBalancingRules/httpRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/loadBalancingRules/httpsRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/inboundNatRules/extlb1-6193-INP1.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/inboundNatRules/extlb1-6193-INP1.1"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/inboundNatPools/extlb1-6193-INP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/inboundNatPools/extlb1-6193-INP2"}]}}],"backendAddressPools":[{"name":"extlb1-6193-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/backendAddressPools/extlb1-6193-BAP1","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/loadBalancingRules/httpRule"}]}},{"name":"extlb1-6193-BAP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/backendAddressPools/extlb1-6193-BAP2","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/loadBalancingRules/httpsRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/loadBalancingRules/httpRule","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/frontendIPConfigurations/extlb1-6193-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/backendAddressPools/extlb1-6193-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/probes/httpProbe"}}},{"name":"httpsRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/loadBalancingRules/httpsRule","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/frontendIPConfigurations/extlb1-6193-FE1"},"frontendPort":443,"backendPort":443,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/backendAddressPools/extlb1-6193-BAP2"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/probes/httpsProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/probes/httpProbe","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/loadBalancingRules/httpRule"}]}},{"name":"httpsProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/probes/httpsProbe","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/loadBalancingRules/httpsRule"}]}}],"inboundNatRules":[{"name":"extlb1-6193-INP1.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/inboundNatRules/extlb1-6193-INP1.0","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/frontendIPConfigurations/extlb1-6193-FE1"},"frontendPort":5000,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-6193-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/inboundNatRules/extlb1-6193-INP1.1","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/frontendIPConfigurations/extlb1-6193-FE1"},"frontendPort":5001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-6193-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/inboundNatPools/extlb1-6193-INP1","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/frontendIPConfigurations/extlb1-6193-FE1"}}},{"name":"extlb1-6193-INP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/inboundNatPools/extlb1-6193-INP2","etag":"W/\"5ec7782e-5f07-41ec-a344-ff92ab987d07\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":6000,"frontendPortRangeEnd":6099,"backendPort":23,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/extlb1-6193/frontendIPConfigurations/extlb1-6193-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"InternalLb1-7519","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d90d0187-a508-4bee-8a81-2f2639a2147d","frontendIPConfigurations":[{"name":"InternalLb1-7519-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.8","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/loadBalancingRules/httpRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/loadBalancingRules/httpsRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatRules/InternalLb1-7519-INP1.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatRules/InternalLb1-7519-INP2.0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatRules/InternalLb1-7519-INP1.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatRules/InternalLb1-7519-INP2.1"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatPools/InternalLb1-7519-INP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatPools/InternalLb1-7519-INP2"}]}}],"backendAddressPools":[{"name":"InternalLb1-7519-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/backendAddressPools/InternalLb1-7519-BAP1","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/loadBalancingRules/httpRule"}]}},{"name":"InternalLb1-7519-BAP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/backendAddressPools/InternalLb1-7519-BAP2","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/loadBalancingRules/httpsRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/loadBalancingRules/httpRule","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"},"frontendPort":1000,"backendPort":1000,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/backendAddressPools/InternalLb1-7519-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/probes/httpProbe"}}},{"name":"httpsRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/loadBalancingRules/httpsRule","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"},"frontendPort":1001,"backendPort":1001,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/backendAddressPools/InternalLb1-7519-BAP2"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/probes/httpsProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/probes/httpProbe","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/loadBalancingRules/httpRule"}]}},{"name":"httpsProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/probes/httpsProbe","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/loadBalancingRules/httpsRule"}]}}],"inboundNatRules":[{"name":"InternalLb1-7519-INP1.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatRules/InternalLb1-7519-INP1.0","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"},"frontendPort":8000,"backendPort":44,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"InternalLb1-7519-INP2.0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatRules/InternalLb1-7519-INP2.0","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"},"frontendPort":9000,"backendPort":45,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"InternalLb1-7519-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatRules/InternalLb1-7519-INP1.1","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"},"frontendPort":8001,"backendPort":44,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"InternalLb1-7519-INP2.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatRules/InternalLb1-7519-INP2.1","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"},"frontendPort":9001,"backendPort":45,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"InternalLb1-7519-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatPools/InternalLb1-7519-INP1","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":8000,"frontendPortRangeEnd":8099,"backendPort":44,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"}}},{"name":"InternalLb1-7519-INP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/inboundNatPools/InternalLb1-7519-INP2","etag":"W/\"9ea05097-920e-4086-86d3-05ee10a4f74a\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":9000,"frontendPortRangeEnd":9099,"backendPort":45,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"extlb1-8217","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217","etag":"W/\"53ea2884-1f58-4bb2-a498-cdb918796853\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e470a412-054e-471e-8869-d77165479f0a","frontendIPConfigurations":[{"name":"extlb1-8217-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/frontendIPConfigurations/extlb1-8217-FE1","etag":"W/\"53ea2884-1f58-4bb2-a498-cdb918796853\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-8217"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/loadBalancingRules/httpRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/inboundNatRules/extlb1-8217-INP1.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/inboundNatRules/extlb1-8217-INP1.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/inboundNatPools/extlb1-8217-INP1"}]}}],"backendAddressPools":[{"name":"extlb1-8217-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/backendAddressPools/extlb1-8217-BAP1","etag":"W/\"53ea2884-1f58-4bb2-a498-cdb918796853\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Compute/virtualMachineScaleSets/vmss4482/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Compute/virtualMachineScaleSets/vmss4482/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/loadBalancingRules/httpRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/loadBalancingRules/httpRule","etag":"W/\"53ea2884-1f58-4bb2-a498-cdb918796853\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/frontendIPConfigurations/extlb1-8217-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/backendAddressPools/extlb1-8217-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/probes/httpProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/probes/httpProbe","etag":"W/\"53ea2884-1f58-4bb2-a498-cdb918796853\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/loadBalancingRules/httpRule"}]}}],"inboundNatRules":[{"name":"extlb1-8217-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/inboundNatRules/extlb1-8217-INP1.1","etag":"W/\"53ea2884-1f58-4bb2-a498-cdb918796853\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/frontendIPConfigurations/extlb1-8217-FE1"},"frontendPort":5001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Compute/virtualMachineScaleSets/vmss4482/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-8217-INP1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/inboundNatRules/extlb1-8217-INP1.3","etag":"W/\"53ea2884-1f58-4bb2-a498-cdb918796853\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/frontendIPConfigurations/extlb1-8217-FE1"},"frontendPort":5003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Compute/virtualMachineScaleSets/vmss4482/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-8217-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/inboundNatPools/extlb1-8217-INP1","etag":"W/\"53ea2884-1f58-4bb2-a498-cdb918796853\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/loadBalancers/extlb1-8217/frontendIPConfigurations/extlb1-8217-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"extlb1-9662","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"16cdbbf3-ed1e-4906-ad34-d2400d201147","frontendIPConfigurations":[{"name":"extlb1-9662-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/frontendIPConfigurations/extlb1-9662-FE1","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-9662"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/loadBalancingRules/httpRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/loadBalancingRules/httpsRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/inboundNatRules/extlb1-9662-INP1.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/inboundNatRules/extlb1-9662-INP1.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/inboundNatPools/extlb1-9662-INP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/inboundNatPools/extlb1-9662-INP2"}]}}],"backendAddressPools":[{"name":"extlb1-9662-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/backendAddressPools/extlb1-9662-BAP1","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/loadBalancingRules/httpRule"}]}},{"name":"extlb1-9662-BAP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/backendAddressPools/extlb1-9662-BAP2","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/loadBalancingRules/httpsRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/loadBalancingRules/httpRule","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/frontendIPConfigurations/extlb1-9662-FE1"},"frontendPort":80,"backendPort":80,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/backendAddressPools/extlb1-9662-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/probes/httpProbe"}}},{"name":"httpsRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/loadBalancingRules/httpsRule","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/frontendIPConfigurations/extlb1-9662-FE1"},"frontendPort":443,"backendPort":443,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/backendAddressPools/extlb1-9662-BAP2"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/probes/httpsProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/probes/httpProbe","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/loadBalancingRules/httpRule"}]}},{"name":"httpsProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/probes/httpsProbe","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/loadBalancingRules/httpsRule"}]}}],"inboundNatRules":[{"name":"extlb1-9662-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/inboundNatRules/extlb1-9662-INP1.1","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/frontendIPConfigurations/extlb1-9662-FE1"},"frontendPort":5001,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"extlb1-9662-INP1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/inboundNatRules/extlb1-9662-INP1.3","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/frontendIPConfigurations/extlb1-9662-FE1"},"frontendPort":5003,"backendPort":22,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"extlb1-9662-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/inboundNatPools/extlb1-9662-INP1","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":5000,"frontendPortRangeEnd":5099,"backendPort":22,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/frontendIPConfigurations/extlb1-9662-FE1"}}},{"name":"extlb1-9662-INP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/inboundNatPools/extlb1-9662-INP2","etag":"W/\"272113d5-6b2a-46c4-8210-3653b7ab8c3f\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":6000,"frontendPortRangeEnd":6099,"backendPort":23,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/extlb1-9662/frontendIPConfigurations/extlb1-9662-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"InternalLb1-6109","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","type":"Microsoft.Network/loadBalancers","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"03c85900-11b0-40d7-9f8c-c1d88f790404","frontendIPConfigurations":[{"name":"InternalLb1-6109-FE1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.8","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1"},"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/loadBalancingRules/httpRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/loadBalancingRules/httpsRule"}],"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatRules/InternalLb1-6109-INP1.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatRules/InternalLb1-6109-INP2.1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatRules/InternalLb1-6109-INP1.3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatRules/InternalLb1-6109-INP2.3"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatPools/InternalLb1-6109-INP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatPools/InternalLb1-6109-INP2"}]}}],"backendAddressPools":[{"name":"InternalLb1-6109-BAP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/backendAddressPools/InternalLb1-6109-BAP1","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/loadBalancingRules/httpRule"}]}},{"name":"InternalLb1-6109-BAP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/backendAddressPools/InternalLb1-6109-BAP2","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}],"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/loadBalancingRules/httpsRule"}]}}],"loadBalancingRules":[{"name":"httpRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/loadBalancingRules/httpRule","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1"},"frontendPort":1000,"backendPort":1000,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/backendAddressPools/InternalLb1-6109-BAP1"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/probes/httpProbe"}}},{"name":"httpsRule","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/loadBalancingRules/httpsRule","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1"},"frontendPort":1001,"backendPort":1001,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","loadDistribution":"Default","backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/backendAddressPools/InternalLb1-6109-BAP2"},"probe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/probes/httpsProbe"}}}],"probes":[{"name":"httpProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/probes/httpProbe","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/loadBalancingRules/httpRule"}]}},{"name":"httpsProbe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/probes/httpsProbe","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","protocol":"Http","port":80,"requestPath":"/","intervalInSeconds":15,"numberOfProbes":2,"loadBalancingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/loadBalancingRules/httpsRule"}]}}],"inboundNatRules":[{"name":"InternalLb1-6109-INP1.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatRules/InternalLb1-6109-INP1.1","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1"},"frontendPort":8000,"backendPort":44,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"InternalLb1-6109-INP2.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatRules/InternalLb1-6109-INP2.1","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1"},"frontendPort":9000,"backendPort":45,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"InternalLb1-6109-INP1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatRules/InternalLb1-6109-INP1.3","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1"},"frontendPort":8001,"backendPort":44,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}},{"name":"InternalLb1-6109-INP2.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatRules/InternalLb1-6109-INP2.3","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1"},"frontendPort":9001,"backendPort":45,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8717/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"InternalLb1-6109-INP1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatPools/InternalLb1-6109-INP1","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":8000,"frontendPortRangeEnd":8099,"backendPort":44,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1"}}},{"name":"InternalLb1-6109-INP2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/inboundNatPools/InternalLb1-6109-INP2","etag":"W/\"dc918499-838e-4eaf-a14e-f6be05b17128\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":9000,"frontendPortRangeEnd":9099,"backendPort":45,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Network/loadBalancers/InternalLb1-6109/frontendIPConfigurations/InternalLb1-6109-FE1"}}}]},"sku":{"name":"Basic"}},{"name":"yugangw-canary-ssLB","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB","etag":"W/\"63ea3b4e-a0aa-4468-bc84-8c4935ee78e7\"","type":"Microsoft.Network/loadBalancers","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2bba2d96-67b3-4599-988e-476d9a380c74","frontendIPConfigurations":[{"name":"loadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB/frontendIPConfigurations/loadBalancerFrontEnd","etag":"W/\"63ea3b4e-a0aa-4468-bc84-8c4935ee78e7\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/publicIPAddresses/yugangw-canary-ssLBPublicIP"},"inboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB/inboundNatRules/yugangw-canary-ssLBNatPool.1"}],"inboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB/inboundNatPools/yugangw-canary-ssLBNatPool"}]}}],"backendAddressPools":[{"name":"yugangw-canary-ssLBBEPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB/backendAddressPools/yugangw-canary-ssLBBEPool","etag":"W/\"63ea3b4e-a0aa-4468-bc84-8c4935ee78e7\"","properties":{"provisioningState":"Succeeded","backendIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Compute/virtualMachineScaleSets/yugangw-canary-ss/virtualMachines/1/networkInterfaces/yugan6806Nic/ipConfigurations/yugan6806IPConfig"}]}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[{"name":"yugangw-canary-ssLBNatPool.1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB/inboundNatRules/yugangw-canary-ssLBNatPool.1","etag":"W/\"63ea3b4e-a0aa-4468-bc84-8c4935ee78e7\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB/frontendIPConfigurations/loadBalancerFrontEnd"},"frontendPort":50001,"backendPort":3389,"enableFloatingIP":false,"idleTimeoutInMinutes":4,"protocol":"Tcp","backendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Compute/virtualMachineScaleSets/yugangw-canary-ss/virtualMachines/1/networkInterfaces/yugan6806Nic/ipConfigurations/yugan6806IPConfig"}}}],"outboundNatRules":[],"inboundNatPools":[{"name":"yugangw-canary-ssLBNatPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB/inboundNatPools/yugangw-canary-ssLBNatPool","etag":"W/\"63ea3b4e-a0aa-4468-bc84-8c4935ee78e7\"","properties":{"provisioningState":"Succeeded","frontendPortRangeStart":50000,"frontendPortRangeEnd":50119,"backendPort":3389,"protocol":"Tcp","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/loadBalancers/yugangw-canary-ssLB/frontendIPConfigurations/loadBalancerFrontEnd"}}}]},"sku":{"name":"Basic"}}]}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:42 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['91131']
- x-ms-original-request-ids: [19022156-09bf-4e3a-965a-c7bba959db99, a92efa05-4f04-4e5d-9317-0306a6042dbc,
- fb86b071-f072-4dc7-a428-c46d9f12cecd]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [567f658a-9d50-11e7-bacb-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"lb1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"fc727a33-84f8-49bc-9d38-214b5e78486c\\\"\",\r\
- \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f42215d3-7fab-474b-99fd-68e212a6b1a1\"\
- ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"fc727a33-84f8-49bc-9d38-214b5e78486c\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
- ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
- lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"fc727a33-84f8-49bc-9d38-214b5e78486c\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
- loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
- : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
- : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
- \ }\r\n },\r\n {\r\n \"name\": \"lb2\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2\"\
- ,\r\n \"etag\": \"W/\\\"438ccf28-0122-4ff4-824f-2fe27c9762ff\\\"\",\r\
- \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1556c9f9-feaf-48b8-b8e3-488bfc3f2354\"\
- ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"438ccf28-0122-4ff4-824f-2fe27c9762ff\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
- ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
- lb2bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\
- ,\r\n \"etag\": \"W/\\\"438ccf28-0122-4ff4-824f-2fe27c9762ff\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
- loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
- : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
- : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
- \ }\r\n },\r\n {\r\n \"name\": \"lb3\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3\"\
- ,\r\n \"etag\": \"W/\\\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\\\"\",\r\
- \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"730cd46c-efbf-4769-a87e-afaed0544387\"\
- ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\
- \ \"privateIPAllocationMethod\": \"Static\",\r\n \
- \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
- lb3bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool\"\
- ,\r\n \"etag\": \"W/\\\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
- loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
- : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
- : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
- \ }\r\n },\r\n {\r\n \"name\": \"lb4\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4\"\
- ,\r\n \"etag\": \"W/\\\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\\\"\",\r\
- \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"108d9d81-59b6-442f-90ea-312eeb706428\"\
- ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
- ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
- lb4bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool\"\
- ,\r\n \"etag\": \"W/\\\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
- loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
- : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
- : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
- \ }\r\n }\r\n ]\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36: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]
- content-length: ['7819']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [56a963d2-9d50-11e7-9ba8-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"fc727a33-84f8-49bc-9d38-214b5e78486c\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
- ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"f42215d3-7fab-474b-99fd-68e212a6b1a1\"\
- ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"fc727a33-84f8-49bc-9d38-214b5e78486c\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"fc727a33-84f8-49bc-9d38-214b5e78486c\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- \r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
- \ \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\"\
- : [],\r\n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\"\
- : \"Basic\"\r\n }\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:43 GMT']
- ETag: [W/"fc727a33-84f8-49bc-9d38-214b5e78486c"]
- 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]
- content-length: ['1758']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [56da4106-9d50-11e7-9311-a0b3ccf7272a]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
- response:
- body: {string: ''}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/2e262416-41eb-488b-be62-09098a8de854?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 15:36:43 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/2e262416-41eb-488b-be62-09098a8de854?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [56da4106-9d50-11e7-9311-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2e262416-41eb-488b-be62-09098a8de854?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:53 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]
- content-length: ['29']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [5dba254a-9d50-11e7-a7c0-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"lb2\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2\"\
- ,\r\n \"etag\": \"W/\\\"438ccf28-0122-4ff4-824f-2fe27c9762ff\\\"\",\r\
- \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1556c9f9-feaf-48b8-b8e3-488bfc3f2354\"\
- ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"438ccf28-0122-4ff4-824f-2fe27c9762ff\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
- ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/PublicIPlb2\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
- lb2bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb2/backendAddressPools/lb2bepool\"\
- ,\r\n \"etag\": \"W/\\\"438ccf28-0122-4ff4-824f-2fe27c9762ff\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
- loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
- : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
- : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
- \ }\r\n },\r\n {\r\n \"name\": \"lb3\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3\"\
- ,\r\n \"etag\": \"W/\\\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\\\"\",\r\
- \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"730cd46c-efbf-4769-a87e-afaed0544387\"\
- ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\
- \ \"privateIPAllocationMethod\": \"Static\",\r\n \
- \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/virtualNetworks/mytestvnet/subnets/default\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
- lb3bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb3/backendAddressPools/lb3bepool\"\
- ,\r\n \"etag\": \"W/\\\"f6e8be2f-4aa1-47c3-9bc3-143b54d8cde8\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
- loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
- : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
- : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
- \ }\r\n },\r\n {\r\n \"name\": \"lb4\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4\"\
- ,\r\n \"etag\": \"W/\\\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\\\"\",\r\
- \n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"108d9d81-59b6-442f-90ea-312eeb706428\"\
- ,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \
- \ \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\"\
- ,\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/publicIPAddresses/publicip4\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \
- \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"\
- lb4bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_load_balancer/providers/Microsoft.Network/loadBalancers/lb4/backendAddressPools/lb4bepool\"\
- ,\r\n \"etag\": \"W/\\\"73a3bd9b-5b33-4a72-901c-5bba70201ce9\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"\
- loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\"\
- : [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\"\
- : []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n \
- \ }\r\n }\r\n ]\r\n}"}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 15:36:54 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]
- content-length: ['5882']
- status: {code: 200, message: OK}
-version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_multi_id_show.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_multi_id_show.yaml
new file mode 100644
index 00000000000..fa463bfaa30
--- /dev/null
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_multi_id_show.yaml
@@ -0,0 +1,454 @@
+interactions:
+- request:
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_multi_id000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001","name":"test_multi_id000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:04 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_multi_id000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001","name":"test_multi_id000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:05 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"sku": {"name": "Basic"}, "location": "westus", "properties": {"idleTimeoutInMinutes":
+ 4, "publicIPAllocationMethod": "Dynamic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['130']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
+ ,\r\n \"etag\": \"W/\\\"b950355a-c97a-4577-bc93-72fa3dc18a60\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"b87a7a83-575c-4c4d-bb5b-99ad1ad31125\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bbfa4773-d477-4188-bf4f-1cec5e6c5859?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bbfa4773-d477-4188-bf4f-1cec5e6c5859?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:10 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
+ ,\r\n \"etag\": \"W/\\\"998814b2-2a6d-4676-8a79-6684b1431d14\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"b87a7a83-575c-4c4d-bb5b-99ad1ad31125\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['638']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:10 GMT']
+ etag: [W/"998814b2-2a6d-4676-8a79-6684b1431d14"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_multi_id000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001","name":"test_multi_id000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"sku": {"name": "Basic"}, "location": "westus", "properties": {"idleTimeoutInMinutes":
+ 4, "publicIPAllocationMethod": "Dynamic"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['130']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"pip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip2\"\
+ ,\r\n \"etag\": \"W/\\\"a0439990-e28e-400c-aeec-15d6352b0169\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"e860803f-eef3-4b3f-a6e6-7a889f88b0ae\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/db7661db-e3d2-4454-baad-fcda070dbbad?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:12 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/db7661db-e3d2-4454-baad-fcda070dbbad?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:16 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"pip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip2\"\
+ ,\r\n \"etag\": \"W/\\\"6cd51c1c-5fc4-4577-8c89-c5ca3529f8ff\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"e860803f-eef3-4b3f-a6e6-7a889f88b0ae\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['638']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:16 GMT']
+ etag: [W/"6cd51c1c-5fc4-4577-8c89-c5ca3529f8ff"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
+ ,\r\n \"etag\": \"W/\\\"998814b2-2a6d-4676-8a79-6684b1431d14\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"b87a7a83-575c-4c4d-bb5b-99ad1ad31125\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['638']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:17 GMT']
+ etag: [W/"998814b2-2a6d-4676-8a79-6684b1431d14"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"pip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip2\"\
+ ,\r\n \"etag\": \"W/\\\"6cd51c1c-5fc4-4577-8c89-c5ca3529f8ff\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"e860803f-eef3-4b3f-a6e6-7a889f88b0ae\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['638']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:17 GMT']
+ etag: [W/"6cd51c1c-5fc4-4577-8c89-c5ca3529f8ff"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
+ ,\r\n \"etag\": \"W/\\\"998814b2-2a6d-4676-8a79-6684b1431d14\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"b87a7a83-575c-4c4d-bb5b-99ad1ad31125\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['638']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:18 GMT']
+ etag: [W/"998814b2-2a6d-4676-8a79-6684b1431d14"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip2?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"pip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_multi_id000001/providers/Microsoft.Network/publicIPAddresses/pip2\"\
+ ,\r\n \"etag\": \"W/\\\"6cd51c1c-5fc4-4577-8c89-c5ca3529f8ff\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"e860803f-eef3-4b3f-a6e6-7a889f88b0ae\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['638']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 10 Oct 2017 23:50:18 GMT']
+ etag: [W/"6cd51c1c-5fc4-4577-8c89-c5ca3529f8ff"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_multi_id000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Tue, 10 Oct 2017 23:50:18 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUOjVGTVVMVEk6NUZJREQ0QUdBSlBZTVdGT05EMzRUSE40RE1ITk5ZSUlRNnw4RkRGNEMzRjkwMEY4NTA2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 202, message: Accepted}
+version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic.yaml
index 50a10d01ec0..55a8c6371ed 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:25 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:18 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -46,77 +46,77 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:27 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:18 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
- [{"name": "mysubnet", "properties": {"addressPrefix": "10.0.0.0/24"}}], "dhcpOptions":
- {}}, "location": "westus", "tags": {}}'
+ body: '{"tags": {}, "location": "westus", "properties": {"subnets": [{"name":
+ "mysubnet", "properties": {"addressPrefix": "10.0.0.0/24"}}], "addressSpace":
+ {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['206']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\
- ,\r\n \"etag\": \"W/\\\"61fc864b-dbe3-4de0-a03f-1f0ca4b983ae\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c7705258-ea00-4e10-afa5-a78fc362eb19\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"b3aa8c90-0bec-42db-aa21-cb5b3918eb4d\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"5b0c1877-1672-4bd6-bd3f-3c67165f6499\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\
- ,\r\n \"etag\": \"W/\\\"61fc864b-dbe3-4de0-a03f-1f0ca4b983ae\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c7705258-ea00-4e10-afa5-a78fc362eb19\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/afa29b69-142a-4585-b7f4-dcc030afb2d8?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a555fc50-4c20-488c-bf72-c6f1df42221d?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1235']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:27 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:19 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/afa29b69-142a-4585-b7f4-dcc030afb2d8?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a555fc50-4c20-488c-bf72-c6f1df42221d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:30 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:23 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -129,26 +129,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\
- ,\r\n \"etag\": \"W/\\\"f00e08a3-c30b-448a-8663-007352fa83cd\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"005bcc58-6859-4531-88c3-cc878e943bcf\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b3aa8c90-0bec-42db-aa21-cb5b3918eb4d\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"5b0c1877-1672-4bd6-bd3f-3c67165f6499\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\
- ,\r\n \"etag\": \"W/\\\"f00e08a3-c30b-448a-8663-007352fa83cd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"005bcc58-6859-4531-88c3-cc878e943bcf\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -157,8 +157,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1237']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:30 GMT']
- etag: [W/"f00e08a3-c30b-448a-8663-007352fa83cd"]
+ date: ['Mon, 16 Oct 2017 21:27:23 GMT']
+ etag: [W/"005bcc58-6859-4531-88c3-cc878e943bcf"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -171,12 +171,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -186,7 +186,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:31 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:24 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -197,25 +197,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
- ,\r\n \"etag\": \"W/\\\"c557b24f-aa73-4446-91b3-66d02e03a082\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"d7210137-92bb-4758-a761-0b25ec600319\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"21b56a96-8420-4911-bf05-5ac55d2ab29b\",\r\n \
+ ,\r\n \"resourceGuid\": \"238272da-bbbb-40c9-bc54-e27b8f8794fc\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"c557b24f-aa73-4446-91b3-66d02e03a082\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"d7210137-92bb-4758-a761-0b25ec600319\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -227,7 +227,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"c557b24f-aa73-4446-91b3-66d02e03a082\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"d7210137-92bb-4758-a761-0b25ec600319\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -239,7 +239,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"c557b24f-aa73-4446-91b3-66d02e03a082\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"d7210137-92bb-4758-a761-0b25ec600319\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -250,7 +250,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"c557b24f-aa73-4446-91b3-66d02e03a082\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"d7210137-92bb-4758-a761-0b25ec600319\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -262,7 +262,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"c557b24f-aa73-4446-91b3-66d02e03a082\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"d7210137-92bb-4758-a761-0b25ec600319\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -274,7 +274,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"c557b24f-aa73-4446-91b3-66d02e03a082\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"d7210137-92bb-4758-a761-0b25ec600319\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -285,38 +285,38 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2de44f3-bf83-48ea-9ae2-1e0fd8dc8d7b?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18089420-7b14-42b5-80e5-bb6bf79bac8f?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['6447']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:31 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2de44f3-bf83-48ea-9ae2-1e0fd8dc8d7b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18089420-7b14-42b5-80e5-bb6bf79bac8f?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:42 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -329,24 +329,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"21b56a96-8420-4911-bf05-5ac55d2ab29b\",\r\n \
+ ,\r\n \"resourceGuid\": \"238272da-bbbb-40c9-bc54-e27b8f8794fc\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -358,7 +358,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -370,7 +370,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -381,7 +381,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -393,7 +393,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -405,7 +405,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -419,8 +419,8 @@ interactions:
cache-control: [no-cache]
content-length: ['6454']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:42 GMT']
- etag: [W/"468051e5-810a-43fd-bc5a-ea84e21edfea"]
+ date: ['Mon, 16 Oct 2017 21:27:36 GMT']
+ etag: [W/"bdb53688-4f15-41f3-aba6-805d3056a8dd"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -433,24 +433,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mynsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"21b56a96-8420-4911-bf05-5ac55d2ab29b\",\r\n \
+ ,\r\n \"resourceGuid\": \"238272da-bbbb-40c9-bc54-e27b8f8794fc\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -462,7 +462,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -474,7 +474,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -485,7 +485,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -497,7 +497,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -509,7 +509,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"468051e5-810a-43fd-bc5a-ea84e21edfea\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdb53688-4f15-41f3-aba6-805d3056a8dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -523,8 +523,8 @@ interactions:
cache-control: [no-cache]
content-length: ['6454']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:42 GMT']
- etag: [W/"468051e5-810a-43fd-bc5a-ea84e21edfea"]
+ date: ['Mon, 16 Oct 2017 21:27:38 GMT']
+ etag: [W/"bdb53688-4f15-41f3-aba6-805d3056a8dd"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -537,12 +537,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -552,7 +552,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:42 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:38 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -563,25 +563,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myothernsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\
- ,\r\n \"etag\": \"W/\\\"4b687ba4-ae90-48fe-bd55-1290150762c0\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"4819ecd1-57f2-487b-b79f-30be27c2462d\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"ed93f242-4f20-4253-9858-26ed3ea64a3f\",\r\n \
+ ,\r\n \"resourceGuid\": \"6a038851-86cc-4956-969a-ccd6bbac4684\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"4b687ba4-ae90-48fe-bd55-1290150762c0\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4819ecd1-57f2-487b-b79f-30be27c2462d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -593,7 +593,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"4b687ba4-ae90-48fe-bd55-1290150762c0\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4819ecd1-57f2-487b-b79f-30be27c2462d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -605,7 +605,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"4b687ba4-ae90-48fe-bd55-1290150762c0\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4819ecd1-57f2-487b-b79f-30be27c2462d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -616,7 +616,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"4b687ba4-ae90-48fe-bd55-1290150762c0\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4819ecd1-57f2-487b-b79f-30be27c2462d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -628,7 +628,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"4b687ba4-ae90-48fe-bd55-1290150762c0\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4819ecd1-57f2-487b-b79f-30be27c2462d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -640,7 +640,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"4b687ba4-ae90-48fe-bd55-1290150762c0\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"4819ecd1-57f2-487b-b79f-30be27c2462d\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -651,38 +651,38 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/226e3e1b-c424-46e8-98af-56129b6594c3?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4c71a15f-83c4-4f3e-8b9b-3ecadd1e9cfd?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['6487']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:40 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/226e3e1b-c424-46e8-98af-56129b6594c3?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4c71a15f-83c4-4f3e-8b9b-3ecadd1e9cfd?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -695,24 +695,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myothernsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\
- ,\r\n \"etag\": \"W/\\\"d0b8216e-e847-4bc6-a4bb-cc027253ceb8\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"6ce8d492-4670-484c-9e6c-4031fe94a24e\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"ed93f242-4f20-4253-9858-26ed3ea64a3f\",\r\n \
+ ,\r\n \"resourceGuid\": \"6a038851-86cc-4956-969a-ccd6bbac4684\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"d0b8216e-e847-4bc6-a4bb-cc027253ceb8\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"6ce8d492-4670-484c-9e6c-4031fe94a24e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -724,7 +724,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"d0b8216e-e847-4bc6-a4bb-cc027253ceb8\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"6ce8d492-4670-484c-9e6c-4031fe94a24e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -736,7 +736,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"d0b8216e-e847-4bc6-a4bb-cc027253ceb8\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"6ce8d492-4670-484c-9e6c-4031fe94a24e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -747,7 +747,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"d0b8216e-e847-4bc6-a4bb-cc027253ceb8\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"6ce8d492-4670-484c-9e6c-4031fe94a24e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -759,7 +759,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"d0b8216e-e847-4bc6-a4bb-cc027253ceb8\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"6ce8d492-4670-484c-9e6c-4031fe94a24e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -771,7 +771,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"d0b8216e-e847-4bc6-a4bb-cc027253ceb8\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"6ce8d492-4670-484c-9e6c-4031fe94a24e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -785,8 +785,8 @@ interactions:
cache-control: [no-cache]
content-length: ['6494']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:54 GMT']
- etag: [W/"d0b8216e-e847-4bc6-a4bb-cc027253ceb8"]
+ date: ['Mon, 16 Oct 2017 21:27:51 GMT']
+ etag: [W/"6ce8d492-4670-484c-9e6c-4031fe94a24e"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -799,12 +799,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -814,71 +814,70 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:52 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"publicIPAddressVersion": "IPv4",
- "idleTimeoutInMinutes": 4, "publicIPAllocationMethod": "Dynamic"}, "sku": {"name":
- "Basic"}}'
+ body: '{"location": "westus", "sku": {"name": "Basic"}, "properties": {"idleTimeoutInMinutes":
+ 4, "publicIPAllocationMethod": "Dynamic", "publicIPAddressVersion": "IPv4"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['164']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"publicip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\
- ,\r\n \"etag\": \"W/\\\"0d4d46bb-0c18-4b71-8a9f-abcb262e31d6\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"46ac7d78-0c4c-4265-a13e-7351a43f0cec\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"9dfb231d-6594-45b9-93f2-c1ac8172390b\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"ab391870-a4ed-4bb2-b6a6-4691e0d81760\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f17bc78b-26ee-44fd-93e0-e93edab66ee7?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b5bfa165-49e5-4f73-b278-b534be764dbb?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['647']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:55 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f17bc78b-26ee-44fd-93e0-e93edab66ee7?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b5bfa165-49e5-4f73-b278-b534be764dbb?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:58 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -891,20 +890,20 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"publicip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\
- ,\r\n \"etag\": \"W/\\\"6727209a-0839-419c-85ce-8e87aa2d4ff2\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"155191b5-ba40-46fd-8cc6-9d8220ddd2ac\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"9dfb231d-6594-45b9-93f2-c1ac8172390b\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"ab391870-a4ed-4bb2-b6a6-4691e0d81760\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
@@ -913,8 +912,8 @@ interactions:
cache-control: [no-cache]
content-length: ['648']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:58 GMT']
- etag: [W/"6727209a-0839-419c-85ce-8e87aa2d4ff2"]
+ date: ['Mon, 16 Oct 2017 21:27:56 GMT']
+ etag: [W/"155191b5-ba40-46fd-8cc6-9d8220ddd2ac"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -927,20 +926,20 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"publicip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1\"\
- ,\r\n \"etag\": \"W/\\\"6727209a-0839-419c-85ce-8e87aa2d4ff2\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"155191b5-ba40-46fd-8cc6-9d8220ddd2ac\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"9dfb231d-6594-45b9-93f2-c1ac8172390b\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"ab391870-a4ed-4bb2-b6a6-4691e0d81760\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
@@ -949,8 +948,8 @@ interactions:
cache-control: [no-cache]
content-length: ['648']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:59 GMT']
- etag: [W/"6727209a-0839-419c-85ce-8e87aa2d4ff2"]
+ date: ['Mon, 16 Oct 2017 21:27:56 GMT']
+ etag: [W/"155191b5-ba40-46fd-8cc6-9d8220ddd2ac"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -963,12 +962,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -978,7 +977,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:59 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:57 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -989,12 +988,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_nic_scenario000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10
@@ -1004,71 +1003,72 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:59 GMT']
+ date: ['Mon, 16 Oct 2017 21:27:58 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"parameters": {}, "mode": "Incremental", "template":
- {"parameters": {}, "outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''mylb\'')]"}},
- "variables": {}, "contentVersion": "1.0.0.0", "resources": [{"location": "westus",
- "properties": {"publicIPAllocationMethod": "Dynamic"}, "type": "Microsoft.Network/publicIPAddresses",
- "apiVersion": "2017-09-01", "tags": {}, "name": "PublicIPmylb", "dependsOn":
- [], "sku": {"name": "Basic"}}, {"location": "westus", "properties": {"frontendIPConfigurations":
- [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}},
- "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "mylbbepool"}]},
- "type": "Microsoft.Network/loadBalancers", "apiVersion": "2017-09-01", "sku":
- {"name": "Basic"}, "tags": {}, "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPmylb"],
- "name": "mylb"}], "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"}}}'''
+ body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
+ {"outputs": {"loadBalancer": {"type": "object", "value": "[reference(\''mylb\'')]"}},
+ "parameters": {}, "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "variables": {}, "resources": [{"dependsOn": [], "sku": {"name": "Basic"}, "tags":
+ {}, "name": "PublicIPmylb", "type": "Microsoft.Network/publicIPAddresses", "properties":
+ {"publicIPAllocationMethod": "Dynamic"}, "location": "westus", "apiVersion":
+ "2017-09-01"}, {"dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPmylb"],
+ "sku": {"name": "Basic"}, "tags": {}, "name": "mylb", "type": "Microsoft.Network/loadBalancers",
+ "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerFrontEnd",
+ "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],
+ "backendAddressPools": [{"name": "mylbbepool"}]}, "location": "westus", "apiVersion":
+ "2017-09-01"}]}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['1151']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_pIPMSyZlDUmdqZIsHygpdF1zcPkQEHnY","name":"lb_deploy_pIPMSyZlDUmdqZIsHygpdF1zcPkQEHnY","properties":{"templateHash":"9686152181165519144","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:10:01.5152825Z","duration":"PT0.5502118S","correlationId":"a8aaf9e0-d63a-4b93-8718-5e81f96117eb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPmylb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"mylb"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_YPM7fvxcvB7KQ5TRlWZ79MDG19S5vnnL","name":"lb_deploy_YPM7fvxcvB7KQ5TRlWZ79MDG19S5vnnL","properties":{"templateHash":"17532098120532209903","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T21:28:01.0709908Z","duration":"PT0.2766322S","correlationId":"8fcecb57-fcfe-4a7e-9d5e-72b7421b8c50","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPmylb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"mylb"}]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_pIPMSyZlDUmdqZIsHygpdF1zcPkQEHnY/operationStatuses/08586958270845125483?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_YPM7fvxcvB7KQ5TRlWZ79MDG19S5vnnL/operationStatuses/08586934176046832623?api-version=2017-05-10']
cache-control: [no-cache]
- content-length: ['1309']
+ content-length: ['1310']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:01 GMT']
+ date: ['Mon, 16 Oct 2017 21:28:00 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958270845125483?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934176046832623?api-version=2017-05-10
response:
body: {string: '{"status":"Succeeded"}'}
headers:
cache-control: [no-cache]
content-length: ['22']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:31 GMT']
+ date: ['Mon, 16 Oct 2017 21:28:31 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1079,22 +1079,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_pIPMSyZlDUmdqZIsHygpdF1zcPkQEHnY","name":"lb_deploy_pIPMSyZlDUmdqZIsHygpdF1zcPkQEHnY","properties":{"templateHash":"9686152181165519144","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:10:20.0690175Z","duration":"PT19.1039468S","correlationId":"a8aaf9e0-d63a-4b93-8718-5e81f96117eb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPmylb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"mylb"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"b13a7f86-f662-4a0a-9b3e-c63d61a09012","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"777b1b1d-7daa-4b47-9312-852101ec91ca\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],"backendAddressPools":[{"name":"mylbbepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool","etag":"W/\"777b1b1d-7daa-4b47-9312-852101ec91ca\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Resources/deployments/lb_deploy_YPM7fvxcvB7KQ5TRlWZ79MDG19S5vnnL","name":"lb_deploy_YPM7fvxcvB7KQ5TRlWZ79MDG19S5vnnL","properties":{"templateHash":"17532098120532209903","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T21:28:05.7523144Z","duration":"PT4.9579558S","correlationId":"8fcecb57-fcfe-4a7e-9d5e-72b7421b8c50","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPmylb"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"mylb"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"86fb3946-88b1-46af-97d9-268782a4a371\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],"backendAddressPools":[{"name":"mylbbepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool","etag":"W/\"86fb3946-88b1-46af-97d9-268782a4a371\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}]}}'}
headers:
cache-control: [no-cache]
content-length: ['3025']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:31 GMT']
+ date: ['Mon, 16 Oct 2017 21:28:31 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1105,31 +1105,31 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"777b1b1d-7daa-4b47-9312-852101ec91ca\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"86fb3946-88b1-46af-97d9-268782a4a371\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"777b1b1d-7daa-4b47-9312-852101ec91ca\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"86fb3946-88b1-46af-97d9-268782a4a371\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
: [\r\n {\r\n \"name\": \"mylbbepool\",\r\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"777b1b1d-7daa-4b47-9312-852101ec91ca\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"86fb3946-88b1-46af-97d9-268782a4a371\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\"\
@@ -1139,8 +1139,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1953']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:32 GMT']
- etag: [W/"777b1b1d-7daa-4b47-9312-852101ec91ca"]
+ date: ['Mon, 16 Oct 2017 21:28:32 GMT']
+ etag: [W/"86fb3946-88b1-46af-97d9-268782a4a371"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1149,44 +1149,46 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "etag": "W/\\"777b1b1d-7daa-4b47-9312-852101ec91ca\\"",
- "properties": {"outboundNatRules": [], "inboundNatPools": [], "frontendIPConfigurations":
- [{"name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\\"777b1b1d-7daa-4b47-9312-852101ec91ca\\"", "properties": {"privateIPAllocationMethod":
- "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],
- "inboundNatRules": [{"name": "rule1", "properties": {"enableFloatingIP": false,
- "backendPort": 100, "frontendIPConfiguration": {"name": "LoadBalancerFrontEnd",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\\"777b1b1d-7daa-4b47-9312-852101ec91ca\\"", "properties": {"privateIPAllocationMethod":
- "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}},
- "frontendPort": 100, "protocol": "Tcp"}}], "loadBalancingRules": [], "resourceGuid":
- "b13a7f86-f662-4a0a-9b3e-c63d61a09012", "provisioningState": "Succeeded", "backendAddressPools":
- [{"name": "mylbbepool", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool",
- "etag": "W/\\"777b1b1d-7daa-4b47-9312-852101ec91ca\\"", "properties": {"provisioningState":
- "Succeeded"}}], "probes": []}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb",
- "tags": {}, "sku": {"name": "Basic"}}'''
+ body: 'b''{"etag": "W/\\"86fb3946-88b1-46af-97d9-268782a4a371\\"", "sku": {"name":
+ "Basic"}, "tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb",
+ "properties": {"outboundNatRules": [], "frontendIPConfigurations": [{"etag":
+ "W/\\"86fb3946-88b1-46af-97d9-268782a4a371\\"", "name": "LoadBalancerFrontEnd",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState":
+ "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}],
+ "probes": [], "provisioningState": "Succeeded", "inboundNatPools": [], "inboundNatRules":
+ [{"name": "rule1", "properties": {"frontendIPConfiguration": {"etag": "W/\\"86fb3946-88b1-46af-97d9-268782a4a371\\"",
+ "name": "LoadBalancerFrontEnd", "properties": {"privateIPAllocationMethod":
+ "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "enableFloatingIP": false, "frontendPort": 100, "backendPort": 100, "protocol":
+ "Tcp"}}], "resourceGuid": "83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d", "loadBalancingRules":
+ [], "backendAddressPools": [{"etag": "W/\\"86fb3946-88b1-46af-97d9-268782a4a371\\"",
+ "name": "mylbbepool", "properties": {"provisioningState": "Succeeded"}, "id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool"}]},
+ "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['2399']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1195,12 +1197,12 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
@@ -1209,40 +1211,40 @@ interactions:
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1664f9e6-cc24-452d-9d74-485cddfabf92?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f973ed7-de0c-447f-ba6b-88a320b6ffaa?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['3167']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:32 GMT']
+ date: ['Mon, 16 Oct 2017 21:28:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: [Accept-Encoding]
- x-ms-ratelimit-remaining-subscription-writes: ['1191']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1664f9e6-cc24-452d-9d74-485cddfabf92?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f973ed7-de0c-447f-ba6b-88a320b6ffaa?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:03 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1255,24 +1257,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1281,12 +1283,12 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
@@ -1298,8 +1300,8 @@ interactions:
cache-control: [no-cache]
content-length: ['3167']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:03 GMT']
- etag: [W/"30b3216a-239b-49bf-b6d1-43a5ac954b01"]
+ date: ['Mon, 16 Oct 2017 21:29:03 GMT']
+ etag: [W/"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1312,24 +1314,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1338,12 +1340,12 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
@@ -1355,8 +1357,8 @@ interactions:
cache-control: [no-cache]
content-length: ['3167']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:03 GMT']
- etag: [W/"30b3216a-239b-49bf-b6d1-43a5ac954b01"]
+ date: ['Mon, 16 Oct 2017 21:29:05 GMT']
+ etag: [W/"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1365,48 +1367,50 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "etag": "W/\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\"",
- "properties": {"outboundNatRules": [], "inboundNatPools": [], "frontendIPConfigurations":
- [{"name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\"", "properties": {"privateIPAllocationMethod":
- "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],
- "inboundNatRules": [{"name": "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1",
- "etag": "W/\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\"", "properties": {"backendPort":
- 100, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "protocol": "Tcp", "enableFloatingIP": false, "frontendPort": 100, "provisioningState":
- "Succeeded", "idleTimeoutInMinutes": 4}}, {"name": "rule2", "properties": {"enableFloatingIP":
- false, "backendPort": 200, "frontendIPConfiguration": {"name": "LoadBalancerFrontEnd",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\"", "properties": {"privateIPAllocationMethod":
- "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}},
- "frontendPort": 200, "protocol": "Tcp"}}], "loadBalancingRules": [], "resourceGuid":
- "b13a7f86-f662-4a0a-9b3e-c63d61a09012", "provisioningState": "Succeeded", "backendAddressPools":
- [{"name": "mylbbepool", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool",
- "etag": "W/\\"30b3216a-239b-49bf-b6d1-43a5ac954b01\\"", "properties": {"provisioningState":
- "Succeeded"}}], "probes": []}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb",
- "tags": {}, "sku": {"name": "Basic"}}'''
+ body: 'b''{"etag": "W/\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\"", "sku": {"name":
+ "Basic"}, "tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb",
+ "properties": {"outboundNatRules": [], "frontendIPConfigurations": [{"etag":
+ "W/\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\"", "name": "LoadBalancerFrontEnd",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState":
+ "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}],
+ "probes": [], "provisioningState": "Succeeded", "inboundNatPools": [], "inboundNatRules":
+ [{"etag": "W/\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "enableFloatingIP": false, "frontendPort": 100, "provisioningState": "Succeeded",
+ "idleTimeoutInMinutes": 4, "protocol": "Tcp", "backendPort": 100}, "name": "rule1"},
+ {"name": "rule2", "properties": {"frontendIPConfiguration": {"etag": "W/\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\"",
+ "name": "LoadBalancerFrontEnd", "properties": {"privateIPAllocationMethod":
+ "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "enableFloatingIP": false, "frontendPort": 200, "backendPort": 200, "protocol":
+ "Tcp"}}], "resourceGuid": "83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d", "loadBalancingRules":
+ [], "backendAddressPools": [{"etag": "W/\\"06c9f746-185f-4a9f-b4f0-d2e8e31c2a2a\\"",
+ "name": "mylbbepool", "properties": {"provisioningState": "Succeeded"}, "id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool"}]},
+ "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['3131']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1416,19 +1420,19 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -1437,40 +1441,40 @@ interactions:
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27fc0c65-e28b-4ab0-a7ac-5b4f28e23a47?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fe47b75-9b86-4145-b7d8-d89904ce7f49?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['4331']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:03 GMT']
+ date: ['Mon, 16 Oct 2017 21:29: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-ms-ratelimit-remaining-subscription-writes: ['1190']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27fc0c65-e28b-4ab0-a7ac-5b4f28e23a47?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fe47b75-9b86-4145-b7d8-d89904ce7f49?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:33 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1483,24 +1487,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1510,19 +1514,19 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -1534,8 +1538,8 @@ interactions:
cache-control: [no-cache]
content-length: ['4331']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:34 GMT']
- etag: [W/"da2d9947-dd8e-4753-a53c-da225f47d5f1"]
+ date: ['Mon, 16 Oct 2017 21:29:36 GMT']
+ etag: [W/"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1548,24 +1552,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb inbound-nat-rule list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1575,19 +1579,19 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -1599,8 +1603,8 @@ interactions:
cache-control: [no-cache]
content-length: ['4331']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:34 GMT']
- etag: [W/"da2d9947-dd8e-4753-a53c-da225f47d5f1"]
+ date: ['Mon, 16 Oct 2017 21:29:37 GMT']
+ etag: [W/"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1613,24 +1617,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1640,19 +1644,19 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -1664,8 +1668,8 @@ interactions:
cache-control: [no-cache]
content-length: ['4331']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:34 GMT']
- etag: [W/"da2d9947-dd8e-4753-a53c-da225f47d5f1"]
+ date: ['Mon, 16 Oct 2017 21:29:38 GMT']
+ etag: [W/"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1674,47 +1678,49 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "etag": "W/\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\"",
- "properties": {"outboundNatRules": [], "inboundNatPools": [], "frontendIPConfigurations":
- [{"name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\"", "properties": {"privateIPAllocationMethod":
- "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],
- "inboundNatRules": [{"name": "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1",
- "etag": "W/\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\"", "properties": {"backendPort":
- 100, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "protocol": "Tcp", "enableFloatingIP": false, "frontendPort": 100, "provisioningState":
- "Succeeded", "idleTimeoutInMinutes": 4}}, {"name": "rule2", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2",
- "etag": "W/\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\"", "properties": {"backendPort":
- 200, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "protocol": "Tcp", "enableFloatingIP": false, "frontendPort": 200, "provisioningState":
- "Succeeded", "idleTimeoutInMinutes": 4}}], "loadBalancingRules": [], "resourceGuid":
- "b13a7f86-f662-4a0a-9b3e-c63d61a09012", "provisioningState": "Succeeded", "backendAddressPools":
- [{"name": "mylbbepool", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool",
- "etag": "W/\\"da2d9947-dd8e-4753-a53c-da225f47d5f1\\"", "properties": {"provisioningState":
- "Succeeded"}}, {"name": "bap1"}], "probes": []}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb",
- "tags": {}, "sku": {"name": "Basic"}}'''
+ body: 'b''{"etag": "W/\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\"", "sku": {"name":
+ "Basic"}, "tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb",
+ "properties": {"outboundNatRules": [], "frontendIPConfigurations": [{"etag":
+ "W/\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\"", "name": "LoadBalancerFrontEnd",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState":
+ "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}],
+ "probes": [], "provisioningState": "Succeeded", "inboundNatPools": [], "inboundNatRules":
+ [{"etag": "W/\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "enableFloatingIP": false, "frontendPort": 100, "provisioningState": "Succeeded",
+ "idleTimeoutInMinutes": 4, "protocol": "Tcp", "backendPort": 100}, "name": "rule1"},
+ {"etag": "W/\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "enableFloatingIP": false, "frontendPort": 200, "provisioningState": "Succeeded",
+ "idleTimeoutInMinutes": 4, "protocol": "Tcp", "backendPort": 200}, "name": "rule2"}],
+ "resourceGuid": "83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d", "loadBalancingRules":
+ [], "backendAddressPools": [{"etag": "W/\\"bdc672c9-de43-4d51-bbb8-4a8d7fc2919b\\"",
+ "name": "mylbbepool", "properties": {"provisioningState": "Succeeded"}, "id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool"},
+ {"name": "bap1"}]}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['3077']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1724,23 +1730,23 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -1749,40 +1755,40 @@ interactions:
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f29d62dc-65e7-48eb-94e2-85532d3dc144?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/35b9292c-82ec-4425-822a-94e01076882c?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['4751']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:34 GMT']
+ date: ['Mon, 16 Oct 2017 21:29:38 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-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f29d62dc-65e7-48eb-94e2-85532d3dc144?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/35b9292c-82ec-4425-822a-94e01076882c?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:05 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:08 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1795,24 +1801,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1822,23 +1828,23 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -1850,8 +1856,8 @@ interactions:
cache-control: [no-cache]
content-length: ['4751']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:05 GMT']
- etag: [W/"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6"]
+ date: ['Mon, 16 Oct 2017 21:30:09 GMT']
+ etag: [W/"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1864,24 +1870,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1891,23 +1897,23 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -1919,8 +1925,8 @@ interactions:
cache-control: [no-cache]
content-length: ['4751']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:05 GMT']
- etag: [W/"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6"]
+ date: ['Mon, 16 Oct 2017 21:30:10 GMT']
+ etag: [W/"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1929,49 +1935,51 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "etag": "W/\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\"",
- "properties": {"outboundNatRules": [], "inboundNatPools": [], "frontendIPConfigurations":
- [{"name": "LoadBalancerFrontEnd", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\"", "properties": {"privateIPAllocationMethod":
- "Dynamic", "provisioningState": "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}}}],
- "inboundNatRules": [{"name": "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1",
- "etag": "W/\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\"", "properties": {"backendPort":
- 100, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "protocol": "Tcp", "enableFloatingIP": false, "frontendPort": 100, "provisioningState":
- "Succeeded", "idleTimeoutInMinutes": 4}}, {"name": "rule2", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2",
- "etag": "W/\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\"", "properties": {"backendPort":
- 200, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "protocol": "Tcp", "enableFloatingIP": false, "frontendPort": 200, "provisioningState":
- "Succeeded", "idleTimeoutInMinutes": 4}}], "loadBalancingRules": [], "resourceGuid":
- "b13a7f86-f662-4a0a-9b3e-c63d61a09012", "provisioningState": "Succeeded", "backendAddressPools":
- [{"name": "mylbbepool", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool",
- "etag": "W/\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\"", "properties": {"provisioningState":
- "Succeeded"}}, {"name": "bap1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1",
- "etag": "W/\\"40dc4bc4-5bbd-4ae4-a255-4b339743b4c6\\"", "properties": {"provisioningState":
- "Succeeded"}}, {"name": "bap2"}], "probes": []}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb",
- "tags": {}, "sku": {"name": "Basic"}}'''
+ body: 'b''{"etag": "W/\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\"", "sku": {"name":
+ "Basic"}, "tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb",
+ "properties": {"outboundNatRules": [], "frontendIPConfigurations": [{"etag":
+ "W/\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\"", "name": "LoadBalancerFrontEnd",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "provisioningState":
+ "Succeeded", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb"}},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"}],
+ "probes": [], "provisioningState": "Succeeded", "inboundNatPools": [], "inboundNatRules":
+ [{"etag": "W/\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "enableFloatingIP": false, "frontendPort": 100, "provisioningState": "Succeeded",
+ "idleTimeoutInMinutes": 4, "protocol": "Tcp", "backendPort": 100}, "name": "rule1"},
+ {"etag": "W/\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2",
+ "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "enableFloatingIP": false, "frontendPort": 200, "provisioningState": "Succeeded",
+ "idleTimeoutInMinutes": 4, "protocol": "Tcp", "backendPort": 200}, "name": "rule2"}],
+ "resourceGuid": "83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d", "loadBalancingRules":
+ [], "backendAddressPools": [{"etag": "W/\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\"",
+ "name": "mylbbepool", "properties": {"provisioningState": "Succeeded"}, "id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool"},
+ {"etag": "W/\\"ef76e2ef-92af-4c48-a1b7-e4ef4c188bd3\\"", "name": "bap1", "properties":
+ {"provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1"},
+ {"name": "bap2"}]}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['3423']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -1981,27 +1989,27 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -2010,40 +2018,40 @@ interactions:
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90f53e7d-771b-441e-8928-91c93045aaee?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/daa5bf40-eb58-4a5a-8196-42012a28f0ac?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['5171']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:06 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:10 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-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90f53e7d-771b-441e-8928-91c93045aaee?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/daa5bf40-eb58-4a5a-8196-42012a28f0ac?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:36 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2056,24 +2064,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -2083,27 +2091,27 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -2115,8 +2123,8 @@ interactions:
cache-control: [no-cache]
content-length: ['5171']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:36 GMT']
- etag: [W/"c4e931a9-f78b-4469-9c52-7553404f180d"]
+ date: ['Mon, 16 Oct 2017 21:30:41 GMT']
+ etag: [W/"e46256f0-1cbd-43e1-9464-1ff47a5db3c4"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2129,24 +2137,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb address-pool list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"mylb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"b13a7f86-f662-4a0a-9b3e-c63d61a09012\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"83b3ca8b-ecaa-4f36-b047-fd83cbdddd1d\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/PublicIPmylb\"\
@@ -2156,27 +2164,27 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"mylbbepool\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
\ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"c4e931a9-f78b-4469-9c52-7553404f180d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e46256f0-1cbd-43e1-9464-1ff47a5db3c4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
@@ -2188,8 +2196,8 @@ interactions:
cache-control: [no-cache]
content-length: ['5171']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:37 GMT']
- etag: [W/"c4e931a9-f78b-4469-9c52-7553404f180d"]
+ date: ['Mon, 16 Oct 2017 21:30:42 GMT']
+ etag: [W/"e46256f0-1cbd-43e1-9464-1ff47a5db3c4"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2202,12 +2210,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -2217,54 +2225,54 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:37 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:43 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "properties": {"ipConfigurations": [{"name":
- "ipconfig1", "properties": {"privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion":
- "IPv4", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}}}],
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": []}}}'''
+ body: 'b''{"location": "westus", "properties": {"dnsSettings": {"dnsServers":
+ []}, "ipConfigurations": [{"name": "ipconfig1", "properties": {"privateIPAllocationMethod":
+ "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},
+ "privateIPAddressVersion": "IPv4"}}], "enableIPForwarding": false}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['470']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"d838a197-56d9-4cb0-bea1-dddc813c8448\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"fc2c198b-03ac-492e-be59-1cabd52b1d0a\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"d838a197-56d9-4cb0-bea1-dddc813c8448\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fc2c198b-03ac-492e-be59-1cabd52b1d0a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\
\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\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5dd6316-e682-4444-86e6-e23a6ea41c1e?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a976c81e-5eb2-4564-b5f1-dad782f99090?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1663']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:41 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2276,22 +2284,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5dd6316-e682-4444-86e6-e23a6ea41c1e?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a976c81e-5eb2-4564-b5f1-dad782f99090?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:11 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2304,30 +2312,30 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"d838a197-56d9-4cb0-bea1-dddc813c8448\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"fc2c198b-03ac-492e-be59-1cabd52b1d0a\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"d838a197-56d9-4cb0-bea1-dddc813c8448\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"fc2c198b-03ac-492e-be59-1cabd52b1d0a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\
\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\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
@@ -2335,8 +2343,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1663']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:11 GMT']
- etag: [W/"d838a197-56d9-4cb0-bea1-dddc813c8448"]
+ date: ['Mon, 16 Oct 2017 21:31:14 GMT']
+ etag: [W/"fc2c198b-03ac-492e-be59-1cabd52b1d0a"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2349,12 +2357,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -2364,47 +2372,45 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:11 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:16 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "properties": {"enableAcceleratedNetworking":
- true, "ipConfigurations": [{"name": "ipconfig1", "properties": {"loadBalancerInboundNatRules":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"},
+ body: 'b''{"location": "westus", "properties": {"dnsSettings": {"internalDnsNameLabel":
+ "test", "dnsServers": ["100.1.2.3"]}, "enableAcceleratedNetworking": true, "ipConfigurations":
+ [{"name": "ipconfig1", "properties": {"privateIPAllocationMethod": "Static",
+ "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},
+ "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule1"},
{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/rule2"}],
- "privateIPAddress": "10.0.0.15", "privateIPAddressVersion": "IPv4", "publicIPAddress":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},
- "privateIPAllocationMethod": "Static", "loadBalancerBackendAddressPools": [{"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool"},
+ "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/mylbbepool"},
{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap1"},
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2"}]}}],
- "enableIPForwarding": true, "dnsSettings": {"internalDnsNameLabel": "test",
- "dnsServers": ["100.1.2.3"]}}}'''
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/loadBalancers/mylb/backendAddressPools/bap2"}],
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},
+ "privateIPAddress": "10.0.0.15"}}], "enableIPForwarding": true}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['2010']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"21dc9985-06f8-41f9-bdd6-713326ab3dbb\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e48c5e09-1b4b-4788-b1af-c9df079ae978\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"21dc9985-06f8-41f9-bdd6-713326ab3dbb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e48c5e09-1b4b-4788-b1af-c9df079ae978\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"publicIPAddress\": {\r\n \"id\": \"\
@@ -2421,45 +2427,45 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"100.1.2.3\"\r\
\n ],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\"\
- : \"test\",\r\n \"internalFqdn\": \"test.scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
- ,\r\n \"internalDomainNameSuffix\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ : \"test\",\r\n \"internalFqdn\": \"test.o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
+ ,\r\n \"internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": true,\r\n \"enableIPForwarding\"\
: true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c762bb7e-db7f-469f-aeb8-c2677b24bc60?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c9032a3e-e503-48b0-9104-114696bd75ec?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['3541']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:11 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:16 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-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c762bb7e-db7f-469f-aeb8-c2677b24bc60?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c9032a3e-e503-48b0-9104-114696bd75ec?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:42 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2472,23 +2478,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"21dc9985-06f8-41f9-bdd6-713326ab3dbb\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e48c5e09-1b4b-4788-b1af-c9df079ae978\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"21dc9985-06f8-41f9-bdd6-713326ab3dbb\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e48c5e09-1b4b-4788-b1af-c9df079ae978\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Static\",\r\n \"publicIPAddress\": {\r\n \"id\": \"\
@@ -2505,16 +2511,16 @@ interactions:
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"100.1.2.3\"\r\
\n ],\r\n \"appliedDnsServers\": [],\r\n \"internalDnsNameLabel\"\
- : \"test\",\r\n \"internalFqdn\": \"test.scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
- ,\r\n \"internalDomainNameSuffix\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ : \"test\",\r\n \"internalFqdn\": \"test.o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
+ ,\r\n \"internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": true,\r\n \"enableIPForwarding\"\
: true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['3541']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:42 GMT']
- etag: [W/"21dc9985-06f8-41f9-bdd6-713326ab3dbb"]
+ date: ['Mon, 16 Oct 2017 21:31:47 GMT']
+ etag: [W/"e48c5e09-1b4b-4788-b1af-c9df079ae978"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2527,12 +2533,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -2542,7 +2548,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:48 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -2551,76 +2557,76 @@ interactions:
- request:
body: 'b''{"location": "westus", "properties": {"networkSecurityGroup": {"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"},
- "ipConfigurations": [{"name": "ipconfig1", "properties": {"privateIPAllocationMethod":
- "Dynamic", "privateIPAddressVersion": "IPv4", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}}}],
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": []}}}'''
+ "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "ipconfig1",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},
+ "privateIPAddressVersion": "IPv4"}}], "enableIPForwarding": false}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['704']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"9c424af5-430b-4b2e-b49e-e2358938d022\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"68b557e4-1617-4c95-b69b-d9a1e1ddf2f2\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"9c424af5-430b-4b2e-b49e-e2358938d022\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"68b557e4-1617-4c95-b69b-d9a1e1ddf2f2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\
\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\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ad17610-2efc-42fc-a05a-2caed0fc777e?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c3ff67fe-12db-4491-8728-e898f2c3df09?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1917']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:31: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-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8ad17610-2efc-42fc-a05a-2caed0fc777e?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c3ff67fe-12db-4491-8728-e898f2c3df09?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:14 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:18 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2633,30 +2639,30 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"9c424af5-430b-4b2e-b49e-e2358938d022\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"68b557e4-1617-4c95-b69b-d9a1e1ddf2f2\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"9c424af5-430b-4b2e-b49e-e2358938d022\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"68b557e4-1617-4c95-b69b-d9a1e1ddf2f2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\
\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\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
@@ -2665,8 +2671,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1917']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:13 GMT']
- etag: [W/"9c424af5-430b-4b2e-b49e-e2358938d022"]
+ date: ['Mon, 16 Oct 2017 21:32:19 GMT']
+ etag: [W/"68b557e4-1617-4c95-b69b-d9a1e1ddf2f2"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2679,12 +2685,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -2694,7 +2700,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:13 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:20 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -2703,31 +2709,31 @@ interactions:
- request:
body: 'b''{"location": "westus", "properties": {"networkSecurityGroup": {"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"},
- "ipConfigurations": [{"name": "ipconfig1", "properties": {"privateIPAllocationMethod":
- "Dynamic", "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"}}}],
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": []}}}'''
+ "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "ipconfig1",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},
+ "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"}}}],
+ "enableIPForwarding": false}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['933']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -2736,46 +2742,46 @@ 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\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/96612d39-593b-4199-8998-8591bdbfbc31?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d3aa21ae-8cd8-49f8-b16d-50af4c5119d0?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['2183']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:14 GMT']
+ date: ['Mon, 16 Oct 2017 21:32: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-ms-ratelimit-remaining-subscription-writes: ['1191']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/96612d39-593b-4199-8998-8591bdbfbc31?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d3aa21ae-8cd8-49f8-b16d-50af4c5119d0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:44 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2788,23 +2794,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -2813,7 +2819,7 @@ 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\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
@@ -2822,8 +2828,8 @@ interactions:
cache-control: [no-cache]
content-length: ['2183']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:44 GMT']
- etag: [W/"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95"]
+ date: ['Mon, 16 Oct 2017 21:32:52 GMT']
+ etag: [W/"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2836,52 +2842,53 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkInterfaces?api-version=2017-09-01
response:
- body: {string: '{"value":[{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"203b582d-9c2c-47b9-ac9a-73f15afcb5d5\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3dc97c95-7ab5-4442-aa09-425802b1c155","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"203b582d-9c2c-47b9-ac9a-73f15afcb5d5\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"svv2dj5dm3bulpurpqjvqqvwla.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-31-6B-12","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Compute/virtualMachines/vm1"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"618713ef-62a7-406d-9933-faf40e275775\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"511612db-158b-47a8-964c-10126b73559e","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"618713ef-62a7-406d-9933-faf40e275775\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.9","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"svv2dj5dm3bulpurpqjvqqvwla.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-36-76-C5","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Compute/virtualMachines/vm2"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm3VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm3VMNic","etag":"W/\"a583e1d8-de46-4fb3-85a4-74f8a3f55ef2\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"82e7f0ae-1ee2-4f90-a712-446fe7ceafdf","ipConfigurations":[{"name":"ipconfigvm3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3","etag":"W/\"a583e1d8-de46-4fb3-85a4-74f8a3f55ef2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"svv2dj5dm3bulpurpqjvqqvwla.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-36-7A-6B","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Compute/virtualMachines/vm3"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"d41833d3-58f8-4f8f-b019-52fdf47628da\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"998770fc-5228-41de-88f1-55ba89d7466c","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"d41833d3-58f8-4f8f-b019-52fdf47628da\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ugdiu3a0e0ouhncsmawj1y4ssc.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-35-E3-75","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Compute/virtualMachines/vm1"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"1678beb5-012e-4d49-b12e-6f95e092b8ce\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"57d73c53-567d-428e-939f-d83666111971","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"1678beb5-012e-4d49-b12e-6f95e092b8ce\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.9","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ugdiu3a0e0ouhncsmawj1y4ssc.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-36-36-A8","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Compute/virtualMachines/vm2"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"201c8c76-a3b1-4db4-89f6-38fe39e40931\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ac0cd376-3576-4ada-913f-c12d80531e11","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"201c8c76-a3b1-4db4-89f6-38fe39e40931\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"4tuxhjjygiduha35fwsqkvjiog.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-36-38-0C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachines/vm1"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm2VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm2VMNic","etag":"W/\"52cd2033-5124-4896-9928-8bec152e6823\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"73cb1ec9-af9a-40fa-9836-b6c2fc5dcf93","ipConfigurations":[{"name":"ipconfigvm2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2","etag":"W/\"52cd2033-5124-4896-9928-8bec152e6823\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"4tuxhjjygiduha35fwsqkvjiog.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-37-3D-DA","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachines/vm2"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm3VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm3VMNic","etag":"W/\"745883f1-e3bb-4e53-9792-65d00b5a85a0\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"de154830-4a68-4fd4-b694-36fdc851469a","ipConfigurations":[{"name":"ipconfigvm3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3","etag":"W/\"745883f1-e3bb-4e53-9792-65d00b5a85a0\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"4tuxhjjygiduha35fwsqkvjiog.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-35-E6-E8","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachines/vm3"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"95aa723b-71ca-411d-8baa-154011c14f8f\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d4ba757f-c4ed-43f7-a678-82f2213046e8","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"95aa723b-71ca-411d-8baa-154011c14f8f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"cli-test-nic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic","etag":"W/\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"c44a1f0e-e63d-457e-9723-18aaccb29359","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1","etag":"W/\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource_otq1_/providers/Microsoft.Network/networkInterfaces/nic1","etag":"W/\"4ac032d4-89c0-4251-bacb-c75e56dcd796\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"1469f2a1-6ee9-4905-b197-a43b07d6e283","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource_otq1_/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1","etag":"W/\"4ac032d4-89c0-4251-bacb-c75e56dcd796\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.50","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource_otq1_/providers/Microsoft.Network/publicIPAddresses/publicip2"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource_otq1_/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource_otq1_/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource_otq1_/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource_otq1_/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource_otq1_/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"lmazuel-msiVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkInterfaces/lmazuel-msiVMNic","etag":"W/\"01154b75-40c9-471e-bbef-d0e3e55f2bf9\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6aaa6663-2de1-4717-830a-e6f5450d5ec2","ipConfigurations":[{"name":"ipconfiglmazuel-msi","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkInterfaces/lmazuel-msiVMNic/ipConfigurations/ipconfiglmazuel-msi","etag":"W/\"01154b75-40c9-471e-bbef-d0e3e55f2bf9\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/publicIPAddresses/lmazuel-msiPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/virtualNetworks/lmazuel-msiVNET/subnets/lmazuel-msiSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ssdqwuf2yulutdwlknaouahwzb.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-32-EC-F8","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Compute/virtualMachines/lmazuel-msi"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"sdk-test-mVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","etag":"W/\"3a812f90-52a9-4e85-9406-5b17f6f6ae74\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f9a82a10-2a79-4ec0-a7e4-aa9f0669f948","ipConfigurations":[{"name":"ipconfigsdk-test-m","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic/ipConfigurations/ipconfigsdk-test-m","etag":"W/\"3a812f90-52a9-4e85-9406-5b17f6f6ae74\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"sdk-test-umVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","etag":"W/\"4bd4908c-c9f2-4d14-add1-12d4cb142d71\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2d30a3d3-b59d-446a-801d-d8c7a620334a","ipConfigurations":[{"name":"ipconfigsdk-test-um","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic/ipConfigurations/ipconfigsdk-test-um","etag":"W/\"4bd4908c-c9f2-4d14-add1-12d4cb142d71\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm98770952395a0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Network/networkInterfaces/nicvm98770952395a0","etag":"W/\"bee986e0-91c4-439e-bc28-e22f11af3bf0\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8ce0b618-ef90-4dc1-ad6c-b3b3d7acd4dc","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Network/networkInterfaces/nicvm98770952395a0/ipConfigurations/primary","etag":"W/\"bee986e0-91c4-439e-bc28-e22f11af3bf0\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Network/publicIPAddresses/abc4152"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Network/virtualNetworks/vnet3b113294929d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ejrs2gej0aquhglqplxduwkkmc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-19-F1-EF","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Compute/virtualMachines/vm987"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm352199f65934e","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Network/networkInterfaces/nicvm352199f65934e","etag":"W/\"0465b2e2-3d69-4ee9-8459-ad14230dc2d3\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"aa91801a-e33e-453e-9e8e-aca048f78d18","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Network/networkInterfaces/nicvm352199f65934e/ipConfigurations/primary","etag":"W/\"0465b2e2-3d69-4ee9-8459-ad14230dc2d3\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Network/publicIPAddresses/abc7672"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Network/virtualNetworks/vnetaf607829e49b/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"df2zyx0ilquetjic1cyojl3z3c.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-14-78-99","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Compute/virtualMachines/vm3521"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm1e282865e","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/networkInterfaces/nicjavavm1e282865e","etag":"W/\"ca1d4df5-1500-4421-bb89-26b3ffcaf6bc\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f5a27c78-3b5d-450e-92cf-8e66219af67b","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/networkInterfaces/nicjavavm1e282865e/ipConfigurations/primary","etag":"W/\"ca1d4df5-1500-4421-bb89-26b3ffcaf6bc\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/virtualNetworks/vnet7e9631105505/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"xhllblm3ufwu5pwctt253banwe.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-12-AA-59","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmcc8931117","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/networkInterfaces/nicjavavmcc8931117","etag":"W/\"f08369a6-84a2-4edf-9e98-db6a9d475d7f\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"12fc3a09-a50c-4670-a142-d9fd4d0d17f9","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/networkInterfaces/nicjavavmcc8931117/ipConfigurations/primary","etag":"W/\"f08369a6-84a2-4edf-9e98-db6a9d475d7f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/virtualNetworks/vnet138990755b5e/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-12-3D-DF","enableAcceleratedNetworking":false,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm476969061","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2525/providers/Microsoft.Network/networkInterfaces/nicjavavm476969061","etag":"W/\"160498fa-e3f1-4aa2-8e9a-1840f91c28bb\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1397d768-aadd-4bbe-ac90-3d0620dd974f","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2525/providers/Microsoft.Network/networkInterfaces/nicjavavm476969061/ipConfigurations/primary","etag":"W/\"160498fa-e3f1-4aa2-8e9a-1840f91c28bb\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2525/providers/Microsoft.Network/virtualNetworks/vnet6c8506221f13/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"5yiduexkrs4ercohbdfqdxlzyc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1B-2E-57","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2525/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm4c785897c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Network/networkInterfaces/nicjavavm4c785897c","etag":"W/\"905153da-c31f-446c-93d0-30f784911391\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f348fb0b-1d26-4ed1-8b4f-0f2729c6e064","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Network/networkInterfaces/nicjavavm4c785897c/ipConfigurations/primary","etag":"W/\"905153da-c31f-446c-93d0-30f784911391\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Network/virtualNetworks/vneta66890089119/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"stukkfqehu5u3np3xfzaxtvlve.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1B-CA-42","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm83e379558","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3029/providers/Microsoft.Network/networkInterfaces/nicjavavm83e379558","etag":"W/\"896260bb-90ca-4d37-898c-a537803fc12f\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"32a8d567-3b88-4c55-b566-12dd87909e9f","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3029/providers/Microsoft.Network/networkInterfaces/nicjavavm83e379558/ipConfigurations/primary","etag":"W/\"896260bb-90ca-4d37-898c-a537803fc12f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3029/providers/Microsoft.Network/virtualNetworks/vnet6c306640dde2/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"cfowfcpf0o0ulg4whmtj3024ig.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-13-F4-8E","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3029/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm4de36016f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3186/providers/Microsoft.Network/networkInterfaces/nicjavavm4de36016f","etag":"W/\"53ea4b7f-ff34-4684-9c5f-8b335a42266f\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5f511068-64bf-4fa2-98e4-c8961eac9b7c","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3186/providers/Microsoft.Network/networkInterfaces/nicjavavm4de36016f/ipConfigurations/primary","etag":"W/\"53ea4b7f-ff34-4684-9c5f-8b335a42266f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3186/providers/Microsoft.Network/virtualNetworks/vnet99579892e854/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"t1hwtehmlosuhlqfxkhiohd1wa.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1B-29-68","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3186/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmf2f398302","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3563/providers/Microsoft.Network/networkInterfaces/nicjavavmf2f398302","etag":"W/\"29a12541-036a-4457-bf90-7b0c8646fb22\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"912ad8a9-5e1c-4e00-84ea-0640e0a0cc31","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3563/providers/Microsoft.Network/networkInterfaces/nicjavavmf2f398302/ipConfigurations/primary","etag":"W/\"29a12541-036a-4457-bf90-7b0c8646fb22\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3563/providers/Microsoft.Network/virtualNetworks/vnet60c703070efe/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"1ilvfaweihrepgcsewnvm4xzcc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-12-EB-04","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3563/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm46c88641d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Network/networkInterfaces/nicjavavm46c88641d","etag":"W/\"33abc5b3-fb46-4ba6-ab2f-973e8d8890ad\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ff50e729-8beb-4be3-a0f5-c2bfa38cf190","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Network/networkInterfaces/nicjavavm46c88641d/ipConfigurations/primary","etag":"W/\"33abc5b3-fb46-4ba6-ab2f-973e8d8890ad\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Network/virtualNetworks/vnetabf007224bda/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"rgmidip3exyehpcyopzdnfteed.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-15-D8-E6","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm54c860019","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4715/providers/Microsoft.Network/networkInterfaces/nicjavavm54c860019","etag":"W/\"472d6e12-beef-48f8-a036-06111de85804\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"268ea4f1-0512-48a7-a6c8-a9a99375a539","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4715/providers/Microsoft.Network/networkInterfaces/nicjavavm54c860019/ipConfigurations/primary","etag":"W/\"472d6e12-beef-48f8-a036-06111de85804\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4715/providers/Microsoft.Network/virtualNetworks/vnet1d4572532142/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"1o3uoap1sk4etjrr0vrrvwegyb.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-15-D2-C8","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4715/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmd8476554d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5333/providers/Microsoft.Network/networkInterfaces/nicjavavmd8476554d","etag":"W/\"6a1edc1a-be52-4123-9030-eb08d2371cb9\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"498f7de0-a45f-4801-97cf-c551a4bfc670","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5333/providers/Microsoft.Network/networkInterfaces/nicjavavmd8476554d/ipConfigurations/primary","etag":"W/\"6a1edc1a-be52-4123-9030-eb08d2371cb9\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5333/providers/Microsoft.Network/virtualNetworks/vnet7791659363b4/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"dccqwgjbf1cehlaekc3k4nq4zc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-4E-DB","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5333/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm39e565117","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/networkInterfaces/nicjavavm39e565117","etag":"W/\"c2848c84-6a7d-4e33-885f-ac1fb46046be\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"53f6d1a6-ad67-415a-bbf7-890b4615a001","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/networkInterfaces/nicjavavm39e565117/ipConfigurations/primary","etag":"W/\"c2848c84-6a7d-4e33-885f-ac1fb46046be\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/virtualNetworks/vnetc949007407f8/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-17-48-B7","enableAcceleratedNetworking":false,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavma8221083d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/networkInterfaces/nicjavavma8221083d","etag":"W/\"53aa2390-b833-42ce-bd0f-a6f074a5b1d3\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c397d915-1727-46ec-9e3a-d7a42f33c49d","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/networkInterfaces/nicjavavma8221083d/ipConfigurations/primary","etag":"W/\"53aa2390-b833-42ce-bd0f-a6f074a5b1d3\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/virtualNetworks/vnetcfb988796f25/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"qtlp1lbdhoeevihwzbswf2jovc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-4F-F7","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm39976319b","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Network/networkInterfaces/nicjavavm39976319b","etag":"W/\"1be2f059-d280-46f0-bf34-b92e31e7d7a6\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5e7c6e5e-e273-43a2-8d23-39716d176dc8","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Network/networkInterfaces/nicjavavm39976319b/ipConfigurations/primary","etag":"W/\"1be2f059-d280-46f0-bf34-b92e31e7d7a6\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Network/virtualNetworks/vnet5cd82119a1d0/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"swp5iwmayxbe1pacsmad0og1ha.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-14-58-EB","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm85b55897f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Network/networkInterfaces/nicjavavm85b55897f","etag":"W/\"2cee5397-17a9-46bd-ba60-8cff079aa381\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"358e0453-cfbb-4085-b613-f23bd7d4a201","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Network/networkInterfaces/nicjavavm85b55897f/ipConfigurations/primary","etag":"W/\"2cee5397-17a9-46bd-ba60-8cff079aa381\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Network/virtualNetworks/vnet71899620e679/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"0sonj5vk0nhuroqarrcpsmsefa.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-40-47","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm661119155","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8703/providers/Microsoft.Network/networkInterfaces/nicjavavm661119155","etag":"W/\"bd80ebe0-90e6-422c-ae91-d0eee392aaab\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"04f2f0df-4010-4af6-b240-d057017b1ef5","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8703/providers/Microsoft.Network/networkInterfaces/nicjavavm661119155/ipConfigurations/primary","etag":"W/\"bd80ebe0-90e6-422c-ae91-d0eee392aaab\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8703/providers/Microsoft.Network/virtualNetworks/vnet8ee4743959ac/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"jcqmu14qqmhe3g3zzwhj3ih4oe.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-18-41-B7","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8703/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm68f106789","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8982/providers/Microsoft.Network/networkInterfaces/nicjavavm68f106789","etag":"W/\"66843e24-7d50-474a-a137-5d20b9d7b027\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7f4b7444-5a77-428f-b7ea-e63b6ceee2be","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8982/providers/Microsoft.Network/networkInterfaces/nicjavavm68f106789/ipConfigurations/primary","etag":"W/\"66843e24-7d50-474a-a137-5d20b9d7b027\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8982/providers/Microsoft.Network/virtualNetworks/vnetcb7899590df5/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"mavk15ezuw1u5ewbs2k5v4ccig.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-13-53-B7","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8982/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmb2429596e","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9183/providers/Microsoft.Network/networkInterfaces/nicjavavmb2429596e","etag":"W/\"d6fbbd64-7903-45eb-a3f1-61da28b1f7af\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b844b5e2-7fa4-49a2-8864-205eb5999fb8","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9183/providers/Microsoft.Network/networkInterfaces/nicjavavmb2429596e/ipConfigurations/primary","etag":"W/\"d6fbbd64-7903-45eb-a3f1-61da28b1f7af\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9183/providers/Microsoft.Network/virtualNetworks/vnet27f9376021c4/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"bplkdx1db32ubg4cr0t1g4blfd.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-15-DE-7C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9183/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmaf169667e","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3106/providers/Microsoft.Network/networkInterfaces/nicjavavmaf169667e","etag":"W/\"bce20a09-1278-4165-bb38-cf92b81c5511\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7b97f6de-c5d9-4e9c-bf82-43356cc852c4","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3106/providers/Microsoft.Network/networkInterfaces/nicjavavmaf169667e/ipConfigurations/primary","etag":"W/\"bce20a09-1278-4165-bb38-cf92b81c5511\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3106/providers/Microsoft.Network/virtualNetworks/vnet5e479625bfba/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"bhofr3fn1ycuheyfideiakidlf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-15-85-51","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3106/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm2e714975c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3256/providers/Microsoft.Network/networkInterfaces/nicjavavm2e714975c","etag":"W/\"684fb7c6-ee4a-49b6-a7e9-7c1e7e60ebe7\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a042912e-dd98-45ef-b966-23e784b153f3","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3256/providers/Microsoft.Network/networkInterfaces/nicjavavm2e714975c/ipConfigurations/primary","etag":"W/\"684fb7c6-ee4a-49b6-a7e9-7c1e7e60ebe7\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3256/providers/Microsoft.Network/virtualNetworks/vnet5d4449478ad9/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"it43xzg4lviehmaprptvqplcoa.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1B-53-CE","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3256/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmefd36064f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6444/providers/Microsoft.Network/networkInterfaces/nicjavavmefd36064f","etag":"W/\"4ff9549e-9bf1-41f0-b271-cd43ca3fbfcd\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"4c76fa73-c74b-4ec4-aaa4-641ff494cd6a","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6444/providers/Microsoft.Network/networkInterfaces/nicjavavmefd36064f/ipConfigurations/primary","etag":"W/\"4ff9549e-9bf1-41f0-b271-cd43ca3fbfcd\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6444/providers/Microsoft.Network/virtualNetworks/vnet5b551590acc7/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ke3oxymjaj1ude2c2db3go2vfb.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1B-5E-82","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6444/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm1ad847173","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6976/providers/Microsoft.Network/networkInterfaces/nicjavavm1ad847173","etag":"W/\"5466a329-673e-48e5-82ee-0c68a83a72f6\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"47553ed5-435b-4258-895d-b35049dead92","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6976/providers/Microsoft.Network/networkInterfaces/nicjavavm1ad847173/ipConfigurations/primary","etag":"W/\"5466a329-673e-48e5-82ee-0c68a83a72f6\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6976/providers/Microsoft.Network/virtualNetworks/vnet732873763691/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"bqcd3jcqqdtetpc4hbkwxt1h2e.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-16-2C-1C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6976/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmaaa950432","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8304/providers/Microsoft.Network/networkInterfaces/nicjavavmaaa950432","etag":"W/\"3a226a2e-e205-4900-be55-1619d529c166\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d6a531fb-c0bb-4a22-ad50-0cf79a0cc9a8","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8304/providers/Microsoft.Network/networkInterfaces/nicjavavmaaa950432/ipConfigurations/primary","etag":"W/\"3a226a2e-e205-4900-be55-1619d529c166\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8304/providers/Microsoft.Network/virtualNetworks/vnet7ba4503663c3/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"iql0w1jqy5detmp1svnxwraxua.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-E9-E2","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8304/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm99c45138c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9214/providers/Microsoft.Network/networkInterfaces/nicjavavm99c45138c","etag":"W/\"933d1169-3133-4eba-8905-1e7c114e0b0b\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e3690a79-45ce-4df6-8ddc-1746d4f7cb06","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9214/providers/Microsoft.Network/networkInterfaces/nicjavavm99c45138c/ipConfigurations/primary","etag":"W/\"933d1169-3133-4eba-8905-1e7c114e0b0b\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9214/providers/Microsoft.Network/virtualNetworks/vnet32363813bcc2/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"3zgbl1lnbpbe5ozzj3dqivf3pc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-13-96-C1","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9214/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmdb2027529","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9764/providers/Microsoft.Network/networkInterfaces/nicjavavmdb2027529","etag":"W/\"b6e7b39a-b260-40ed-b5d7-1d4df8ae1651\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"29810f2d-4d75-4851-afd5-e91af859a624","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9764/providers/Microsoft.Network/networkInterfaces/nicjavavmdb2027529/ipConfigurations/primary","etag":"W/\"b6e7b39a-b260-40ed-b5d7-1d4df8ae1651\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9764/providers/Microsoft.Network/virtualNetworks/vnet828137293111/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ywc1c42ppsdenmcr1mrtt0ytja.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-13-07-20","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9764/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvm330417655","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/networkInterfaces/nicchashvm330417655","etag":"W/\"f91f0482-f054-4923-b80d-945d88f7f7bf\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"21ee8748-5502-4ad5-bd84-850e3b9f13e8","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/networkInterfaces/nicchashvm330417655/ipConfigurations/primary","etag":"W/\"f91f0482-f054-4923-b80d-945d88f7f7bf\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/virtualNetworks/vnetf99444542c46/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-75-95-9B","enableAcceleratedNetworking":false,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvm87c477632","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/networkInterfaces/nicchashvm87c477632","etag":"W/\"527f4e6c-1b6a-45b2-aaab-dbae93128901\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"4bb010fa-2094-4379-9ea4-f3c22532085a","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/networkInterfaces/nicchashvm87c477632/ipConfigurations/primary","etag":"W/\"527f4e6c-1b6a-45b2-aaab-dbae93128901\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/virtualNetworks/vnet14077957b15c/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"4fd14pdkvw0exkyfod30no4u1g.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-75-9C-BD","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Compute/virtualMachines/chashvm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvm6d7706674","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/networkInterfaces/nicchashvm6d7706674","etag":"W/\"c9c155b8-e1e8-4cc6-b363-6764371415da\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"730571b8-d1d8-47c9-a338-5a339a3fb60f","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/networkInterfaces/nicchashvm6d7706674/ipConfigurations/primary","etag":"W/\"c9c155b8-e1e8-4cc6-b363-6764371415da\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/virtualNetworks/vnet7b646225df2a/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"0sz2ljqq3suenalzyy5xmhgbuf.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-72-E8-5D","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Compute/virtualMachines/chashvm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvm9b8313727","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/networkInterfaces/nicchashvm9b8313727","etag":"W/\"e90662c0-43a0-4870-9fe4-06071e2e6894\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6dc10087-fc00-479b-9749-3467747b624c","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/networkInterfaces/nicchashvm9b8313727/ipConfigurations/primary","etag":"W/\"e90662c0-43a0-4870-9fe4-06071e2e6894\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/virtualNetworks/vnetcd136980737d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-71-8D-56","enableAcceleratedNetworking":false,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"yugangw2-11VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-11VMNic","etag":"W/\"721ba211-1743-48c4-9ae3-efe81fab2e7f\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"073af51b-ddbd-4abf-b558-a7063a6fed9f","ipConfigurations":[{"name":"ipconfigyugangw2-11","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-11VMNic/ipConfigurations/ipconfigyugangw2-11","etag":"W/\"721ba211-1743-48c4-9ae3-efe81fab2e7f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/publicIPAddresses/yugangw2-11PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/virtualNetworks/yugangw2-winVNET/subnets/yugangw2-winSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"2nvosd4210gefja03wbpbb4puh.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-73-F6-AD","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Compute/virtualMachines/yugangw2-11"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"yugangw2-vm-cmdVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-vm-cmdVMNic","etag":"W/\"81731538-49fa-42e2-bc88-d82813e22475\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2076ded8-0932-4c7b-b339-612667d55249","ipConfigurations":[{"name":"ipconfigyugangw2-vm-cmd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-vm-cmdVMNic/ipConfigurations/ipconfigyugangw2-vm-cmd","etag":"W/\"81731538-49fa-42e2-bc88-d82813e22475\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/publicIPAddresses/yugangw2-vm-cmdPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/virtualNetworks/yugangw2-winVNET/subnets/yugangw2-winSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"2nvosd4210gefja03wbpbb4puh.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-70-D8-6E","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/YUGANGW2/providers/Microsoft.Compute/virtualMachines/yugangw2-vm-cmd"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"yugangw2-winVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-winVMNic","etag":"W/\"3d458eca-2cb8-4de1-9a0f-1a7be305459b\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"68e68164-2ef4-49a8-8e59-e6fb4314d0f1","ipConfigurations":[{"name":"ipconfigyugangw2-win","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-winVMNic/ipConfigurations/ipconfigyugangw2-win","etag":"W/\"3d458eca-2cb8-4de1-9a0f-1a7be305459b\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/publicIPAddresses/yugangw2-winPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/virtualNetworks/yugangw2-winVNET/subnets/yugangw2-winSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"2nvosd4210gefja03wbpbb4puh.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-74-4F-2B","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Compute/virtualMachines/yugangw2-win"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicextvm719417512836","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1480/providers/Microsoft.Network/networkInterfaces/nicextvm719417512836","etag":"W/\"73882519-b7cd-4602-8044-2b17fbace8c9\"","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b7f69626-f093-446b-ad43-4a46c54fb34b","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1480/providers/Microsoft.Network/networkInterfaces/nicextvm719417512836/ipConfigurations/primary","etag":"W/\"73882519-b7cd-4602-8044-2b17fbace8c9\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1480/providers/Microsoft.Network/virtualNetworks/vnet97f39307cc1f/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"mdlfek1w5xpenbhpxw42tf2ekg.cx.internal.cloudapp.net"},"macAddress":"00-0D-3A-03-7B-A7","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1480/providers/Microsoft.Compute/virtualMachines/extvm7194"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicextvm2624b0362328","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4331/providers/Microsoft.Network/networkInterfaces/nicextvm2624b0362328","etag":"W/\"adc5d316-cdf2-4274-a144-75653b35b9da\"","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b69fee6-9e33-43cd-a574-245491d58db3","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4331/providers/Microsoft.Network/networkInterfaces/nicextvm2624b0362328/ipConfigurations/primary","etag":"W/\"adc5d316-cdf2-4274-a144-75653b35b9da\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4331/providers/Microsoft.Network/virtualNetworks/vnet74895359ae39/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"h4xn50qk0pauzojs5tcrypty5e.cx.internal.cloudapp.net"},"macAddress":"00-0D-3A-00-1C-70","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4331/providers/Microsoft.Compute/virtualMachines/extvm2624"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicextvm4741c4241300","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5713/providers/Microsoft.Network/networkInterfaces/nicextvm4741c4241300","etag":"W/\"537a23ee-1515-415d-9b8b-86e594ade63b\"","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6bb9e629-ed9a-4d0a-9ab7-c8256c9eea97","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5713/providers/Microsoft.Network/networkInterfaces/nicextvm4741c4241300/ipConfigurations/primary","etag":"W/\"537a23ee-1515-415d-9b8b-86e594ade63b\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5713/providers/Microsoft.Network/virtualNetworks/vnet8368528351d6/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"tmd3bnuxlmhu1ehje2tyat5qsb.cx.internal.cloudapp.net"},"macAddress":"00-0D-3A-04-0F-B7","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5713/providers/Microsoft.Compute/virtualMachines/extvm4741"}},"type":"Microsoft.Network/networkInterfaces"}]}'}
+ body: {string: '{"value":[{"name":"cli-test-nic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic","etag":"W/\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"559b2eb3-7d7a-4c9e-a295-f359e33cc57b","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1","etag":"W/\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.15","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"sdk-test-mVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","etag":"W/\"3a812f90-52a9-4e85-9406-5b17f6f6ae74\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f9a82a10-2a79-4ec0-a7e4-aa9f0669f948","ipConfigurations":[{"name":"ipconfigsdk-test-m","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic/ipConfigurations/ipconfigsdk-test-m","etag":"W/\"3a812f90-52a9-4e85-9406-5b17f6f6ae74\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"sdk-test-umVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","etag":"W/\"4bd4908c-c9f2-4d14-add1-12d4cb142d71\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2d30a3d3-b59d-446a-801d-d8c7a620334a","ipConfigurations":[{"name":"ipconfigsdk-test-um","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic/ipConfigurations/ipconfigsdk-test-um","etag":"W/\"4bd4908c-c9f2-4d14-add1-12d4cb142d71\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-nic/providers/Microsoft.Network/networkInterfaces/nic1","etag":"W/\"2077e941-4cfb-4fb6-94d1-79bd2aa0a28e\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"d5211111-6019-4bce-8a29-7e505025385b","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-nic/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1","etag":"W/\"2077e941-4cfb-4fb6-94d1-79bd2aa0a28e\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-nic/providers/Microsoft.Network/publicIPAddresses/pip1"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-nic/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"xi0rlf2tf5felnzhh22kacx11d.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":true,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm362eba72807b3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/networkInterfaces/nicvm362eba72807b3","etag":"W/\"eab6ec05-428a-4cce-9d8b-6a80e334ac25\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7152f1e5-7f40-4da2-a813-356dd81ab6bb","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/networkInterfaces/nicvm362eba72807b3/ipConfigurations/primary","etag":"W/\"eab6ec05-428a-4cce-9d8b-6a80e334ac25\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/publicIPAddresses/abc1636"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/virtualNetworks/vnet86360253914e/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"kptrn52vggpuno1r1bjtdjdgsc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-11-31-6C","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Compute/virtualMachines/vm362"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm474364773742a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/networkInterfaces/nicvm474364773742a","etag":"W/\"67373c41-9b81-4f8b-a788-244dcdbeebdb\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"932b2f09-ec7e-4997-93a1-23bb7ca6a2bb","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/networkInterfaces/nicvm474364773742a/ipConfigurations/primary","etag":"W/\"67373c41-9b81-4f8b-a788-244dcdbeebdb\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/virtualNetworks/netInternalMinimum5987/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"rkdjzpmahwvuvp1ggupv4h5aqg.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-E6-E4","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm4743"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm97805f239599b","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/networkInterfaces/nicvm97805f239599b","etag":"W/\"b89cdb9d-7ca1-4331-a2f4-618d7cda9914\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"95e828b1-5855-49df-ac6a-7885686620ac","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/networkInterfaces/nicvm97805f239599b/ipConfigurations/primary","etag":"W/\"b89cdb9d-7ca1-4331-a2f4-618d7cda9914\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/virtualNetworks/netInternalMinimum5987/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"rkdjzpmahwvuvp1ggupv4h5aqg.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-EA-CE","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm9780"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicvm8384638d557215","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/networkInterfaces/nicvm8384638d557215","etag":"W/\"038b2845-1e92-44ea-8460-a8606d454bc1\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e6918c5e-71b2-4dbd-9209-8998e41e7a1f","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/networkInterfaces/nicvm8384638d557215/ipConfigurations/primary","etag":"W/\"038b2845-1e92-44ea-8460-a8606d454bc1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/publicIPAddresses/vm838463"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/virtualNetworks/vnet657526e160/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ju4f2zmltleefn0gqe4jilzdlf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-A3-68","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Compute/virtualMachines/vm838463"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmf5f438587","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Network/networkInterfaces/nicjavavmf5f438587","etag":"W/\"7850c530-7e4a-41a9-b68a-0a3ab0ed00bc\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1364340c-81e0-4459-aca5-0ee1019f8520","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Network/networkInterfaces/nicjavavmf5f438587/ipConfigurations/primary","etag":"W/\"7850c530-7e4a-41a9-b68a-0a3ab0ed00bc\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Network/virtualNetworks/vnete6855148cf09/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"brkvscvy5qbupjfvq1fxk2jpch.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-17-93-C9","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm06e415802","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/networkInterfaces/nicjavavm06e415802","etag":"W/\"53299fd9-0267-48a2-9e1e-74453d00d16d\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ed0b7f3d-807c-45c8-84c6-b2d49c22318f","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/networkInterfaces/nicjavavm06e415802/ipConfigurations/primary","etag":"W/\"53299fd9-0267-48a2-9e1e-74453d00d16d\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/virtualNetworks/vnet86d46742e82d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"o2edplxigh3evm3w2oyjmqlcuc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-18-13-0D","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavma6661870b","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/networkInterfaces/nicjavavma6661870b","etag":"W/\"125b6796-7a61-47e0-8755-44a4e2d82d11\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0af523a8-1e14-4444-8f0e-d7805ff37a0e","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/networkInterfaces/nicjavavma6661870b/ipConfigurations/primary","etag":"W/\"125b6796-7a61-47e0-8755-44a4e2d82d11\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/virtualNetworks/vnetcc1886655d8d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-17-95-BF","enableAcceleratedNetworking":false,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm1ec07269a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Network/networkInterfaces/nicjavavm1ec07269a","etag":"W/\"7833f0ba-97d9-4d10-b9db-9abea1152332\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bff981f5-fc87-4a0b-be54-0be1cde8e93a","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Network/networkInterfaces/nicjavavm1ec07269a/ipConfigurations/primary","etag":"W/\"7833f0ba-97d9-4d10-b9db-9abea1152332\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Network/virtualNetworks/vnet00645459b370/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"e452qlq0oaiufgs4hbbf5j5ymc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-59-83","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm795777211","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Network/networkInterfaces/nicjavavm795777211","etag":"W/\"e083d943-9a7d-417a-b702-eeb0d528cf41\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0a965e86-7bc3-4c3a-a1af-063354a10150","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Network/networkInterfaces/nicjavavm795777211/ipConfigurations/primary","etag":"W/\"e083d943-9a7d-417a-b702-eeb0d528cf41\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Network/virtualNetworks/vnet989337179668/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"rh1glimipkmerco0sbwaoz3yic.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-18-1C-04","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm22f123750","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Network/networkInterfaces/nicjavavm22f123750","etag":"W/\"8ba4aacd-1f51-40f9-861c-073b408a09f4\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5c5c2217-6f2a-4def-b0c9-d5a9db5cee24","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Network/networkInterfaces/nicjavavm22f123750/ipConfigurations/primary","etag":"W/\"8ba4aacd-1f51-40f9-861c-073b408a09f4\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Network/virtualNetworks/vnet09c4165988ae/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"e13fjukkjvce3jbmo43cbtzh5d.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-5F-02","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavma5f654570","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Network/networkInterfaces/nicjavavma5f654570","etag":"W/\"275d23f8-e93b-40f2-ae38-025d609fc2c4\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"87e31d89-558e-49d2-86cb-b1936da2a599","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Network/networkInterfaces/nicjavavma5f654570/ipConfigurations/primary","etag":"W/\"275d23f8-e93b-40f2-ae38-025d609fc2c4\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Network/virtualNetworks/vnetb7d67209574b/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"yesipi5abx1u5prpsftwu33umf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-18-13-63","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm59203494a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Network/networkInterfaces/nicjavavm59203494a","etag":"W/\"1b26ac85-d15a-47d2-981c-a4414f75dd13\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bd3f112a-0036-4a22-bb7a-4cc1c3d272dc","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Network/networkInterfaces/nicjavavm59203494a/ipConfigurations/primary","etag":"W/\"1b26ac85-d15a-47d2-981c-a4414f75dd13\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Network/virtualNetworks/vneta38537952ceb/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"3p4ibikhl0yupf3aqr2cwupduc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-54-92","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm4d9535936","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Network/networkInterfaces/nicjavavm4d9535936","etag":"W/\"a70e6cbd-832b-4066-a58a-b6ef94d598ac\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7da6ebe5-e306-41f8-a0b0-4adeda37162a","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Network/networkInterfaces/nicjavavm4d9535936/ipConfigurations/primary","etag":"W/\"a70e6cbd-832b-4066-a58a-b6ef94d598ac\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Network/virtualNetworks/vnet98106873b8f8/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"f0s5r5yq2r5eleoq0eobniem1f.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm611242549","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Network/networkInterfaces/nicjavavm611242549","etag":"W/\"a0cd2f11-53d8-4504-bfc9-315e68b0f58e\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2c0ec2b8-1990-4c8b-9ccb-2519d6d74878","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Network/networkInterfaces/nicjavavm611242549/ipConfigurations/primary","etag":"W/\"a0cd2f11-53d8-4504-bfc9-315e68b0f58e\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Network/virtualNetworks/vnetcca23231b7dd/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"f4binujo5a4elfxbiplbuk5q3d.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-12-6E-5B","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavmf12032758","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Network/networkInterfaces/nicjavavmf12032758","etag":"W/\"8987de64-2182-447a-a87f-8cbbc26e8811\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9b960946-c971-4711-b146-24598ac26ffc","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Network/networkInterfaces/nicjavavmf12032758/ipConfigurations/primary","etag":"W/\"8987de64-2182-447a-a87f-8cbbc26e8811\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Network/virtualNetworks/vnet2ea21762a3e4/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"5q2xzvewpwzedkghc5azpghwbb.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-1A-7B-DF","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicjavavm96c778970","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Network/networkInterfaces/nicjavavm96c778970","etag":"W/\"437f5e83-e24f-4eda-ab39-81f1f70de81d\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"519ca00e-8d7e-4550-9a4c-735ebca89559","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Network/networkInterfaces/nicjavavm96c778970/ipConfigurations/primary","etag":"W/\"437f5e83-e24f-4eda-ab39-81f1f70de81d\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Network/virtualNetworks/vnetcfe85935c2bc/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"dlib1kj5c3mepd1gmr5x1fldsc.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-12-E1-CB","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Compute/virtualMachines/javavm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"wilx-vmVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic","etag":"W/\"b8466ccf-91d6-46dd-bb5a-8aa7bdb905b6\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fd3e9c1a-49eb-42c6-9517-8700854725ef","ipConfigurations":[{"name":"ipconfigwilx-vm","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic/ipConfigurations/ipconfigwilx-vm","etag":"W/\"b8466ccf-91d6-46dd-bb5a-8aa7bdb905b6\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.1.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/publicIPAddresses/wilx-vmPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet/subnets/wilxsubnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-10-78-1E","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"ni16343f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkInterfaces/ni16343f","etag":"W/\"10d794c6-e50d-40a2-a55e-ec2560f30de0\"","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1e769d73-e3b0-45e3-af1d-5443c2d46794","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkInterfaces/ni16343f/ipConfigurations/primary","etag":"W/\"10d794c6-e50d-40a2-a55e-ec2560f30de0\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/publicIPAddresses/pip11994164"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/virtualNetworks/vnet2388336427/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"tfwi2pb5pmnebhgiot3syxwphc.ex.internal.cloudapp.net"},"macAddress":"00-0D-3A-60-0D-BD","enableAcceleratedNetworking":false,"enableIPForwarding":true,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkSecurityGroups/nsg16343f"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vm9112041195"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nic110031c4861","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkInterfaces/nic110031c4861","etag":"W/\"ece154b0-211d-404d-9b9d-6c60676619a1\"","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bd4b6d75-7c99-43d6-909b-90b9cae1bc22","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkInterfaces/nic110031c4861/ipConfigurations/primary","etag":"W/\"ece154b0-211d-404d-9b9d-6c60676619a1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/virtualNetworks/net16343f/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"iqtdgvcob1xuxbrgto12jswsnc.ex.internal.cloudapp.net"},"macAddress":"00-0D-3A-61-6F-75","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vmf0d9052296"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvm554088348","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvm554088348","etag":"W/\"f648c08e-5e04-4106-911c-f85a776c32aa\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"cab10dd9-ba1d-429c-9021-06524cee3d1f","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvm554088348/ipConfigurations/primary","etag":"W/\"f648c08e-5e04-4106-911c-f85a776c32aa\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnet71196243ad42/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"macAddress":"00-0D-3A-72-2D-45","enableAcceleratedNetworking":false,"enableIPForwarding":false},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicchashvmc6f32569d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvmc6f32569d","etag":"W/\"de906c4b-3bfc-45e9-9ea7-a6090eb88e2b\"","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"98b959db-a4ba-45bf-8065-36fa3cde535d","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvmc6f32569d/ipConfigurations/primary","etag":"W/\"de906c4b-3bfc-45e9-9ea7-a6090eb88e2b\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnetd8a95145370f/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"cfqqcgohyjxuvlglb3v404heyb.jx.internal.cloudapp.net"},"macAddress":"00-0D-3A-71-45-D1","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Compute/virtualMachines/chashvm"}},"type":"Microsoft.Network/networkInterfaces"},{"name":"nicextvm420f1015027","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Network/networkInterfaces/nicextvm420f1015027","etag":"W/\"adba533e-4808-479a-a0be-43953cc86892\"","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e94c3073-d107-452a-be01-196e74463dd5","ipConfigurations":[{"name":"primary","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Network/networkInterfaces/nicextvm420f1015027/ipConfigurations/primary","etag":"W/\"adba533e-4808-479a-a0be-43953cc86892\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Network/virtualNetworks/vnetb6c70989836d/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"sa0dagx0xeduziygxdd2qpjeia.cx.internal.cloudapp.net"},"macAddress":"00-0D-3A-03-81-17","enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Compute/virtualMachines/extvm420"}},"type":"Microsoft.Network/networkInterfaces"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['79460']
+ content-length: ['37850']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:45 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:53 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
- x-ms-original-request-ids: [a85ac2b6-fa29-4e9f-90d9-7288bea80d0f, 72c1eb88-62c5-4034-a509-fb7f0b1b1eba,
- 6b431329-0931-4fdb-b0b7-ae41a8db2d69, 06a05b22-ef63-40a7-8722-f224fa437725]
+ x-ms-original-request-ids: [eba86548-2a33-43a2-9994-3a1d992ae3d8, 89ce88ca-b0ce-4e18-b138-c8adc997b04a,
+ 1ce09aa7-12e5-443b-a5f8-947368f9e9df, 6de8dd26-a6e7-4ba1-bf76-e7732cbbb7cb,
+ 444edfa3-25bd-44e7-a42a-747610736147]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-nic\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\",\r\
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\",\r\
\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\"\
: \"ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n\
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \
@@ -2892,7 +2899,7 @@ interactions:
\ \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n\
\ ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\
\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\"\
- : \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\r\n },\r\n\
+ : \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\r\n },\r\n\
\ \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\
@@ -2901,7 +2908,7 @@ interactions:
cache-control: [no-cache]
content-length: ['2372']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:45 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2914,23 +2921,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -2939,7 +2946,7 @@ 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\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
@@ -2948,8 +2955,8 @@ interactions:
cache-control: [no-cache]
content-length: ['2183']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:46 GMT']
- etag: [W/"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95"]
+ date: ['Mon, 16 Oct 2017 21:32:54 GMT']
+ etag: [W/"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2962,23 +2969,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -2987,7 +2994,7 @@ 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\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/mynsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
@@ -2996,8 +3003,8 @@ interactions:
cache-control: [no-cache]
content-length: ['2183']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:46 GMT']
- etag: [W/"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95"]
+ date: ['Mon, 16 Oct 2017 21:32:55 GMT']
+ etag: [W/"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3006,38 +3013,39 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"etag": "W/\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic",
- "location": "westus", "properties": {"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg"},
- "enableAcceleratedNetworking": false, "resourceGuid": "c44a1f0e-e63d-457e-9723-18aaccb29359",
- "dnsSettings": {"appliedDnsServers": [], "internalDnsNameLabel": "noodle", "internalDomainNameSuffix":
- "scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net"}, "enableIPForwarding":
- true, "ipConfigurations": [{"name": "ipconfig1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1",
- "etag": "W/\\"d1fa3834-d0e5-4e65-bf3b-6fbe3159bd95\\"", "properties": {"primary":
- true, "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},
+ body: 'b''{"etag": "W/\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic",
+ "properties": {"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg"},
+ "dnsSettings": {"internalDomainNameSuffix": "o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net",
+ "appliedDnsServers": [], "internalDnsNameLabel": "noodle"}, "enableAcceleratedNetworking":
+ false, "ipConfigurations": [{"etag": "W/\\"ee55694c-8e28-4d9f-a5bd-c1a52ea9a027\\"",
+ "name": "ipconfig1", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "privateIPAddressVersion": "IPv4", "provisioningState": "Succeeded", "primary":
+ true, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},
"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},
- "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded", "privateIPAddress":
- "10.0.0.15"}}], "provisioningState": "Succeeded"}}'''
+ "privateIPAddress": "10.0.0.15"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1"}],
+ "enableIPForwarding": true, "resourceGuid": "559b2eb3-7d7a-4c9e-a295-f359e33cc57b",
+ "provisioningState": "Succeeded"}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['1830']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -3046,47 +3054,47 @@ 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 \"\
- internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
- ,\r\n \"internalDomainNameSuffix\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
+ ,\r\n \"internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: true,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9639bd0d-9cf1-4009-995c-4544ea7de1ef?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/494b8937-f458-4b3a-b8cd-089439d0a1d7?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['2313']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:47 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:56 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-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9639bd0d-9cf1-4009-995c-4544ea7de1ef?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/494b8937-f458-4b3a-b8cd-089439d0a1d7?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:16 GMT']
+ date: ['Mon, 16 Oct 2017 21:33:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3099,23 +3107,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -3124,8 +3132,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 \"\
- internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
- ,\r\n \"internalDomainNameSuffix\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
+ ,\r\n \"internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: true,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
@@ -3134,8 +3142,8 @@ interactions:
cache-control: [no-cache]
content-length: ['2313']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:17 GMT']
- etag: [W/"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514"]
+ date: ['Mon, 16 Oct 2017 21:33:26 GMT']
+ etag: [W/"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3148,23 +3156,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -3173,8 +3181,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 \"\
- internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
- ,\r\n \"internalDomainNameSuffix\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDnsNameLabel\": \"noodle\",\r\n \"internalFqdn\": \"noodle.o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
+ ,\r\n \"internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: true,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
@@ -3183,8 +3191,8 @@ interactions:
cache-control: [no-cache]
content-length: ['2313']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:17 GMT']
- etag: [W/"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514"]
+ date: ['Mon, 16 Oct 2017 21:33:27 GMT']
+ etag: [W/"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3193,39 +3201,40 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"etag": "W/\\"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic",
- "location": "westus", "properties": {"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg"},
- "enableAcceleratedNetworking": false, "resourceGuid": "c44a1f0e-e63d-457e-9723-18aaccb29359",
- "dnsSettings": {"appliedDnsServers": [], "internalFqdn": "noodle.scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net",
- "internalDnsNameLabel": "doodle", "internalDomainNameSuffix": "scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net",
- "dnsServers": []}, "enableIPForwarding": false, "ipConfigurations": [{"name":
- "ipconfig1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1",
- "etag": "W/\\"1c1ba8ab-f60c-4f6b-911f-4c9aae3e3514\\"", "properties": {"primary":
- true, "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},
+ body: 'b''{"etag": "W/\\"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic",
+ "properties": {"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg"},
+ "dnsSettings": {"internalDomainNameSuffix": "o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net",
+ "internalFqdn": "noodle.o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net",
+ "appliedDnsServers": [], "internalDnsNameLabel": "doodle", "dnsServers": []},
+ "enableAcceleratedNetworking": false, "ipConfigurations": [{"etag": "W/\\"c2c9893a-f92d-4cc6-bf95-27b6f805bc9f\\"",
+ "name": "ipconfig1", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "privateIPAddressVersion": "IPv4", "provisioningState": "Succeeded", "primary":
+ true, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/publicIPAddresses/publicip1"},
"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet"},
- "privateIPAllocationMethod": "Dynamic", "provisioningState": "Succeeded", "privateIPAddress":
- "10.0.0.15"}}], "provisioningState": "Succeeded"}}'''
+ "privateIPAddress": "10.0.0.15"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1"}],
+ "enableIPForwarding": false, "resourceGuid": "559b2eb3-7d7a-4c9e-a295-f359e33cc57b",
+ "provisioningState": "Succeeded"}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['1927']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"aec8bb3c-26df-4010-9c79-1e7c58ab7619\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"b745eca7-3581-4446-a0f7-6532d5abad75\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"aec8bb3c-26df-4010-9c79-1e7c58ab7619\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b745eca7-3581-4446-a0f7-6532d5abad75\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -3234,18 +3243,18 @@ 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 \"\
- internalDnsNameLabel\": \"doodle\",\r\n \"internalFqdn\": \"doodle.scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
- ,\r\n \"internalDomainNameSuffix\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDnsNameLabel\": \"doodle\",\r\n \"internalFqdn\": \"doodle.o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
+ ,\r\n \"internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/876d03a8-4e42-4b7a-bbec-61a66d53e189?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/97fb9355-d0ab-4511-ba7e-3dbf4764dd34?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['2314']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:18 GMT']
+ date: ['Mon, 16 Oct 2017 21:33:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3259,22 +3268,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/876d03a8-4e42-4b7a-bbec-61a66d53e189?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/97fb9355-d0ab-4511-ba7e-3dbf4764dd34?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:48 GMT']
+ date: ['Mon, 16 Oct 2017 21:33:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3287,23 +3296,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-test-nic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic\"\
- ,\r\n \"etag\": \"W/\\\"aec8bb3c-26df-4010-9c79-1e7c58ab7619\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"b745eca7-3581-4446-a0f7-6532d5abad75\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"c44a1f0e-e63d-457e-9723-18aaccb29359\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"559b2eb3-7d7a-4c9e-a295-f359e33cc57b\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"aec8bb3c-26df-4010-9c79-1e7c58ab7619\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"b745eca7-3581-4446-a0f7-6532d5abad75\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
@@ -3312,8 +3321,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 \"\
- internalDnsNameLabel\": \"doodle\",\r\n \"internalFqdn\": \"doodle.scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
- ,\r\n \"internalDomainNameSuffix\": \"scgkvm5mbpnufkrbznntsghljf.dx.internal.cloudapp.net\"\
+ internalDnsNameLabel\": \"doodle\",\r\n \"internalFqdn\": \"doodle.o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
+ ,\r\n \"internalDomainNameSuffix\": \"o2mayw1sc1lexpj5hrtrmx1etb.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkSecurityGroups/myothernsg\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
@@ -3322,8 +3331,8 @@ interactions:
cache-control: [no-cache]
content-length: ['2314']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:48 GMT']
- etag: [W/"aec8bb3c-26df-4010-9c79-1e7c58ab7619"]
+ date: ['Mon, 16 Oct 2017 21:33:58 GMT']
+ etag: [W/"b745eca7-3581-4446-a0f7-6532d5abad75"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3336,25 +3345,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces/cli-test-nic?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ee578ba-d702-4430-bfa8-b03e76d337a9?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af71d722-e7d8-4254-9cc7-77c3fc2a9f50?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 00:15:48 GMT']
+ date: ['Mon, 16 Oct 2017 21:34:00 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9ee578ba-d702-4430-bfa8-b03e76d337a9?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/af71d722-e7d8-4254-9cc7-77c3fc2a9f50?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3365,22 +3374,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ee578ba-d702-4430-bfa8-b03e76d337a9?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af71d722-e7d8-4254-9cc7-77c3fc2a9f50?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:59 GMT']
+ date: ['Mon, 16 Oct 2017 21:34:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3393,12 +3402,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nic list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_scenario000001/providers/Microsoft.Network/networkInterfaces?api-version=2017-09-01
@@ -3408,7 +3417,7 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:00 GMT']
+ date: ['Mon, 16 Oct 2017 21:34:12 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -3419,13 +3428,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_scenario000001?api-version=2017-05-10
@@ -3434,11 +3443,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 00:16:00 GMT']
+ date: ['Mon, 16 Oct 2017 21:34:13 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTklDOjVGU0NFTkFSSU9YQkFCM09QU0gzVVZTUFc0UDJMR3w5QzUzMDhBMjI1NDJEMEZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTklDOjVGU0NFTkFSSU9EUlVHSFdDWDZBRDNMU0pXRks2Q3wxMUZBRjdGNUE3NkNEMkVELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_convenience_commands.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_convenience_commands.yaml
index 7e801f8d777..efe0b90f630 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_convenience_commands.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_convenience_commands.yaml
@@ -1,70 +1,1118 @@
interactions:
+- request:
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001","name":"cli_nic_convenience_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:41:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001","name":"cli_nic_convenience_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:41:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Connection: [close]
+ Host: [raw.githubusercontent.com]
+ User-Agent: [Python-urllib/3.5]
+ method: GET
+ uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
+ response:
+ body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\
+ ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\
+ :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\
+ type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\
+ CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\
+ :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\
+ \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\
+ ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \
+ \ \"version\":\"latest\"\n },\n \"Debian\":{\n\
+ \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\
+ ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \
+ \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\
+ ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.2\"\
+ ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\
+ \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\
+ \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \
+ \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \
+ \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \
+ \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \
+ \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\
+ ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\
+ \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\
+ :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\
+ offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \
+ \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\
+ :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\
+ offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\
+ \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\
+ :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\
+ offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \
+ \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\
+ :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\
+ offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \
+ \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\
+ }\n"}
+ headers:
+ accept-ranges: [bytes]
+ access-control-allow-origin: ['*']
+ cache-control: [max-age=300]
+ connection: [close]
+ content-length: ['2235']
+ content-security-policy: [default-src 'none'; style-src 'unsafe-inline'; sandbox]
+ content-type: [text/plain; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:41:52 GMT']
+ etag: ['"d6824855d13e27c5258a680eb60f635d088fd05e"']
+ expires: ['Fri, 13 Oct 2017 22:46:52 GMT']
+ source-age: ['115']
+ 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: [8c3eed2b400937eb32bc0a949b6c44d61db9630b]
+ x-frame-options: [deny]
+ x-geo-block-list: ['']
+ x-github-request-id: ['96CA:2F95F:585268:62FA99:59E140BD']
+ x-served-by: [cache-sea1022-SEA]
+ x-timer: ['S1507934513.553154,VS0,VE0']
+ x-xss-protection: [1; mode=block]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:41:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"properties": {"parameters": {}, "mode": "Incremental", "template":
+ {"outputs": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "parameters": {}, "resources": [{"dependsOn": [], "name": "conveniencevm1VNET",
+ "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "type": "Microsoft.Network/virtualNetworks",
+ "properties": {"subnets": [{"name": "conveniencevm1Subnet", "properties": {"addressPrefix":
+ "10.0.0.0/24"}}], "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}}, {"dependsOn":
+ [], "name": "conveniencevm1NSG", "location": "westus", "apiVersion": "2015-06-15",
+ "tags": {}, "type": "Microsoft.Network/networkSecurityGroups", "properties":
+ {"securityRules": [{"name": "default-allow-ssh", "properties": {"access": "Allow",
+ "sourceAddressPrefix": "*", "priority": 1000, "sourcePortRange": "*", "destinationAddressPrefix":
+ "*", "destinationPortRange": "22", "protocol": "Tcp", "direction": "Inbound"}}]}},
+ {"dependsOn": [], "name": "conveniencevm1PublicIP", "location": "westus", "apiVersion":
+ "2017-09-01", "tags": {}, "type": "Microsoft.Network/publicIPAddresses", "properties":
+ {"publicIPAllocationMethod": "dynamic"}}, {"dependsOn": ["Microsoft.Network/virtualNetworks/conveniencevm1VNET",
+ "Microsoft.Network/networkSecurityGroups/conveniencevm1NSG", "Microsoft.Network/publicIpAddresses/conveniencevm1PublicIP"],
+ "name": "conveniencevm1VMNic", "location": "westus", "apiVersion": "2015-06-15",
+ "tags": {}, "type": "Microsoft.Network/networkInterfaces", "properties": {"networkSecurityGroup":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},
+ "ipConfigurations": [{"name": "ipconfigconveniencevm1", "properties": {"privateIPAllocationMethod":
+ "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"}}}]}},
+ {"dependsOn": ["Microsoft.Network/networkInterfaces/conveniencevm1VMNic"], "name":
+ "conveniencevm1", "location": "westus", "apiVersion": "2017-03-30", "tags":
+ {}, "type": "Microsoft.Compute/virtualMachines", "properties": {"osProfile":
+ {"adminPassword": "aBcD1234!@#$", "adminUsername": "myusername", "computerName":
+ "conveniencevm1"}, "hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile":
+ {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"}]},
+ "storageProfile": {"imageReference": {"version": "latest", "publisher": "Canonical",
+ "sku": "16.04-LTS", "offer": "UbuntuServer"}, "osDisk": {"managedDisk": {"storageAccountType":
+ null}, "name": null, "createOption": "fromImage", "caching": null}}}}], "variables":
+ {}, "contentVersion": "1.0.0.0"}}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['3345']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","name":"vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","properties":{"templateHash":"3349348483206636840","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-13T22:41:55.3955644Z","duration":"PT1.0609549S","correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","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_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"conveniencevm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"conveniencevm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"conveniencevm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"conveniencevm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"conveniencevm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"conveniencevm1"}]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/operationStatuses/08586936723711510213?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['2833']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:41:55 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A42%3A03Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:42:03 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A42%3A14Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3659']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:42:14 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A42%3A25Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['39803']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:42:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936723711510213?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:42:25 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A42%3A35Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"926c4568-e5d6-4e93-8a3a-8362a3ca1862","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/926c4568-e5d6-4e93-8a3a-8362a3ca1862/ticks/636435313343941206","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"11e19965-2533-4916-940e-e6a86de89ff4","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:14.3941206Z","submissionTimestamp":"2017-10-13T22:42:29.9134647Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"4f78e315-8b0b-4d2d-b94b-a8f83c334abe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/4f78e315-8b0b-4d2d-b94b-a8f83c334abe/ticks/636435313316619062","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6c38c185-179e-43a4-9cec-d2cbecbc83c7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:11.6619062Z","submissionTimestamp":"2017-10-13T22:42:29.8476508Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['46612']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:42:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A42%3A45Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"35072bba-b245-49d5-acf0-a5b10e073e66","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/35072bba-b245-49d5-acf0-a5b10e073e66/ticks/636435313431935027","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"statusCode":"Created","serviceRequestId":"dff52a05-d04b-40df-9e4d-b9bcef69445c","responseBody":"{\"name\":\"conveniencevm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"70dd4f2f-1c1d-4f77-89ea-20f65e1ce000\",\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:23.1935027Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"c8b8ad42-9c06-4c05-8dc0-b80c1410c625","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/c8b8ad42-9c06-4c05-8dc0-b80c1410c625/ticks/636435313421578937","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"},\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:22.1578937Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"926c4568-e5d6-4e93-8a3a-8362a3ca1862","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/926c4568-e5d6-4e93-8a3a-8362a3ca1862/ticks/636435313343941206","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"11e19965-2533-4916-940e-e6a86de89ff4","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:14.3941206Z","submissionTimestamp":"2017-10-13T22:42:29.9134647Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"4f78e315-8b0b-4d2d-b94b-a8f83c334abe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/4f78e315-8b0b-4d2d-b94b-a8f83c334abe/ticks/636435313316619062","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6c38c185-179e-43a4-9cec-d2cbecbc83c7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:11.6619062Z","submissionTimestamp":"2017-10-13T22:42:29.8476508Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['56621']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:42:46 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936723711510213?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:42:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A42%3A56Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"918acefe-aaf1-4b4c-bb9d-56395c70118b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/918acefe-aaf1-4b4c-bb9d-56395c70118b/ticks/636435313560097008","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Created","serviceRequestId":"9f86f8b4-7ae8-468a-b6f5-dfd0ffa49826"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:36.0097008Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"cc3f826c-7d39-4f19-b6cc-87209f924751","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/cc3f826c-7d39-4f19-b6cc-87209f924751/ticks/636435313498178716","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:29.8178716Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"35072bba-b245-49d5-acf0-a5b10e073e66","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/35072bba-b245-49d5-acf0-a5b10e073e66/ticks/636435313431935027","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"statusCode":"Created","serviceRequestId":"dff52a05-d04b-40df-9e4d-b9bcef69445c","responseBody":"{\"name\":\"conveniencevm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"70dd4f2f-1c1d-4f77-89ea-20f65e1ce000\",\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:23.1935027Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"c8b8ad42-9c06-4c05-8dc0-b80c1410c625","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/c8b8ad42-9c06-4c05-8dc0-b80c1410c625/ticks/636435313421578937","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"},\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:22.1578937Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"926c4568-e5d6-4e93-8a3a-8362a3ca1862","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/926c4568-e5d6-4e93-8a3a-8362a3ca1862/ticks/636435313343941206","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"11e19965-2533-4916-940e-e6a86de89ff4","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:14.3941206Z","submissionTimestamp":"2017-10-13T22:42:29.9134647Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"4f78e315-8b0b-4d2d-b94b-a8f83c334abe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/4f78e315-8b0b-4d2d-b94b-a8f83c334abe/ticks/636435313316619062","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6c38c185-179e-43a4-9cec-d2cbecbc83c7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:11.6619062Z","submissionTimestamp":"2017-10-13T22:42:29.8476508Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['63709']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:42:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A43%3A06Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"918acefe-aaf1-4b4c-bb9d-56395c70118b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/918acefe-aaf1-4b4c-bb9d-56395c70118b/ticks/636435313560097008","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Created","serviceRequestId":"9f86f8b4-7ae8-468a-b6f5-dfd0ffa49826"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:36.0097008Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"cc3f826c-7d39-4f19-b6cc-87209f924751","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/cc3f826c-7d39-4f19-b6cc-87209f924751/ticks/636435313498178716","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:29.8178716Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"35072bba-b245-49d5-acf0-a5b10e073e66","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/35072bba-b245-49d5-acf0-a5b10e073e66/ticks/636435313431935027","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"statusCode":"Created","serviceRequestId":"dff52a05-d04b-40df-9e4d-b9bcef69445c","responseBody":"{\"name\":\"conveniencevm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"70dd4f2f-1c1d-4f77-89ea-20f65e1ce000\",\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:23.1935027Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"c8b8ad42-9c06-4c05-8dc0-b80c1410c625","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/c8b8ad42-9c06-4c05-8dc0-b80c1410c625/ticks/636435313421578937","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"},\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:22.1578937Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"926c4568-e5d6-4e93-8a3a-8362a3ca1862","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/926c4568-e5d6-4e93-8a3a-8362a3ca1862/ticks/636435313343941206","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"11e19965-2533-4916-940e-e6a86de89ff4","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:14.3941206Z","submissionTimestamp":"2017-10-13T22:42:29.9134647Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"4f78e315-8b0b-4d2d-b94b-a8f83c334abe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/4f78e315-8b0b-4d2d-b94b-a8f83c334abe/ticks/636435313316619062","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6c38c185-179e-43a4-9cec-d2cbecbc83c7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:11.6619062Z","submissionTimestamp":"2017-10-13T22:42:29.8476508Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['63709']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A43%3A17Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0ad2a494-d4f6-4a83-87d4-3abccb3809b7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/0ad2a494-d4f6-4a83-87d4-3abccb3809b7/ticks/636435313717964087","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7acbbabe-9e1a-4ef9-9d68-e6c30167eebf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:51.7964087Z","submissionTimestamp":"2017-10-13T22:43:09.799321Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"918acefe-aaf1-4b4c-bb9d-56395c70118b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/918acefe-aaf1-4b4c-bb9d-56395c70118b/ticks/636435313560097008","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Created","serviceRequestId":"9f86f8b4-7ae8-468a-b6f5-dfd0ffa49826"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:36.0097008Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"cc3f826c-7d39-4f19-b6cc-87209f924751","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/cc3f826c-7d39-4f19-b6cc-87209f924751/ticks/636435313498178716","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:29.8178716Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"35072bba-b245-49d5-acf0-a5b10e073e66","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/35072bba-b245-49d5-acf0-a5b10e073e66/ticks/636435313431935027","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"statusCode":"Created","serviceRequestId":"dff52a05-d04b-40df-9e4d-b9bcef69445c","responseBody":"{\"name\":\"conveniencevm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"70dd4f2f-1c1d-4f77-89ea-20f65e1ce000\",\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:23.1935027Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"c8b8ad42-9c06-4c05-8dc0-b80c1410c625","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/c8b8ad42-9c06-4c05-8dc0-b80c1410c625/ticks/636435313421578937","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"},\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:22.1578937Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"926c4568-e5d6-4e93-8a3a-8362a3ca1862","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/926c4568-e5d6-4e93-8a3a-8362a3ca1862/ticks/636435313343941206","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"11e19965-2533-4916-940e-e6a86de89ff4","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:14.3941206Z","submissionTimestamp":"2017-10-13T22:42:29.9134647Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"4f78e315-8b0b-4d2d-b94b-a8f83c334abe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/4f78e315-8b0b-4d2d-b94b-a8f83c334abe/ticks/636435313316619062","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6c38c185-179e-43a4-9cec-d2cbecbc83c7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:11.6619062Z","submissionTimestamp":"2017-10-13T22:42:29.8476508Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['67157']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936723711510213?api-version=2017-05-10
+ response:
+ body: {string: '{"status":"Running"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['20']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:26 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A43%3A27Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"9761a493-b730-4e5a-bb14-2be9b00f8554","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/9761a493-b730-4e5a-bb14-2be9b00f8554/ticks/636435313879055677","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a45b018c-9d16-4e7a-8e7d-9ce7790318d1","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:43:07.9055677Z","submissionTimestamp":"2017-10-13T22:43:20.4657245Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0ad2a494-d4f6-4a83-87d4-3abccb3809b7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/0ad2a494-d4f6-4a83-87d4-3abccb3809b7/ticks/636435313717964087","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7acbbabe-9e1a-4ef9-9d68-e6c30167eebf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:51.7964087Z","submissionTimestamp":"2017-10-13T22:43:09.799321Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"918acefe-aaf1-4b4c-bb9d-56395c70118b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/918acefe-aaf1-4b4c-bb9d-56395c70118b/ticks/636435313560097008","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Created","serviceRequestId":"9f86f8b4-7ae8-468a-b6f5-dfd0ffa49826"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:36.0097008Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"cc3f826c-7d39-4f19-b6cc-87209f924751","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/cc3f826c-7d39-4f19-b6cc-87209f924751/ticks/636435313498178716","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:29.8178716Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"35072bba-b245-49d5-acf0-a5b10e073e66","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/35072bba-b245-49d5-acf0-a5b10e073e66/ticks/636435313431935027","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"statusCode":"Created","serviceRequestId":"dff52a05-d04b-40df-9e4d-b9bcef69445c","responseBody":"{\"name\":\"conveniencevm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"70dd4f2f-1c1d-4f77-89ea-20f65e1ce000\",\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:23.1935027Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"c8b8ad42-9c06-4c05-8dc0-b80c1410c625","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/c8b8ad42-9c06-4c05-8dc0-b80c1410c625/ticks/636435313421578937","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"},\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:22.1578937Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"926c4568-e5d6-4e93-8a3a-8362a3ca1862","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/926c4568-e5d6-4e93-8a3a-8362a3ca1862/ticks/636435313343941206","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"11e19965-2533-4916-940e-e6a86de89ff4","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:14.3941206Z","submissionTimestamp":"2017-10-13T22:42:29.9134647Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"4f78e315-8b0b-4d2d-b94b-a8f83c334abe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/4f78e315-8b0b-4d2d-b94b-a8f83c334abe/ticks/636435313316619062","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6c38c185-179e-43a4-9cec-d2cbecbc83c7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:11.6619062Z","submissionTimestamp":"2017-10-13T22:42:29.8476508Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['70606']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A43%3A38Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"9761a493-b730-4e5a-bb14-2be9b00f8554","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/9761a493-b730-4e5a-bb14-2be9b00f8554/ticks/636435313879055677","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a45b018c-9d16-4e7a-8e7d-9ce7790318d1","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:43:07.9055677Z","submissionTimestamp":"2017-10-13T22:43:20.4657245Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0ad2a494-d4f6-4a83-87d4-3abccb3809b7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/0ad2a494-d4f6-4a83-87d4-3abccb3809b7/ticks/636435313717964087","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7acbbabe-9e1a-4ef9-9d68-e6c30167eebf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:51.7964087Z","submissionTimestamp":"2017-10-13T22:43:09.799321Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"918acefe-aaf1-4b4c-bb9d-56395c70118b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/918acefe-aaf1-4b4c-bb9d-56395c70118b/ticks/636435313560097008","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Created","serviceRequestId":"9f86f8b4-7ae8-468a-b6f5-dfd0ffa49826"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:36.0097008Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"cc3f826c-7d39-4f19-b6cc-87209f924751","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/cc3f826c-7d39-4f19-b6cc-87209f924751/ticks/636435313498178716","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:29.8178716Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"35072bba-b245-49d5-acf0-a5b10e073e66","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/35072bba-b245-49d5-acf0-a5b10e073e66/ticks/636435313431935027","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"statusCode":"Created","serviceRequestId":"dff52a05-d04b-40df-9e4d-b9bcef69445c","responseBody":"{\"name\":\"conveniencevm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"70dd4f2f-1c1d-4f77-89ea-20f65e1ce000\",\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:23.1935027Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"c8b8ad42-9c06-4c05-8dc0-b80c1410c625","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/c8b8ad42-9c06-4c05-8dc0-b80c1410c625/ticks/636435313421578937","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"},\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:22.1578937Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"926c4568-e5d6-4e93-8a3a-8362a3ca1862","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/926c4568-e5d6-4e93-8a3a-8362a3ca1862/ticks/636435313343941206","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"11e19965-2533-4916-940e-e6a86de89ff4","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:14.3941206Z","submissionTimestamp":"2017-10-13T22:42:29.9134647Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"4f78e315-8b0b-4d2d-b94b-a8f83c334abe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/4f78e315-8b0b-4d2d-b94b-a8f83c334abe/ticks/636435313316619062","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6c38c185-179e-43a4-9cec-d2cbecbc83c7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:11.6619062Z","submissionTimestamp":"2017-10-13T22:42:29.8476508Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['70606']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:37 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202017-09-02T06%3A43%3A48Z%20and%20correlationId%20eq%20%27f262be21-5f87-427a-82a8-6a2f93bb1dff%27
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"02b11d26-c34b-4f14-a5a8-cce13b3b92cc","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/02b11d26-c34b-4f14-a5a8-cce13b3b92cc/ticks/636435314079290639","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7fcb7fe7-c2dc-415a-ba1f-76f45abbbcd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:43:27.9290639Z","submissionTimestamp":"2017-10-13T22:43:39.6136803Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"9761a493-b730-4e5a-bb14-2be9b00f8554","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/9761a493-b730-4e5a-bb14-2be9b00f8554/ticks/636435313879055677","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a45b018c-9d16-4e7a-8e7d-9ce7790318d1","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:43:07.9055677Z","submissionTimestamp":"2017-10-13T22:43:20.4657245Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0ad2a494-d4f6-4a83-87d4-3abccb3809b7","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/0ad2a494-d4f6-4a83-87d4-3abccb3809b7/ticks/636435313717964087","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7acbbabe-9e1a-4ef9-9d68-e6c30167eebf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:51.7964087Z","submissionTimestamp":"2017-10-13T22:43:09.799321Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"918acefe-aaf1-4b4c-bb9d-56395c70118b","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/918acefe-aaf1-4b4c-bb9d-56395c70118b/ticks/636435313560097008","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"properties":{"statusCode":"Created","serviceRequestId":"9f86f8b4-7ae8-468a-b6f5-dfd0ffa49826"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:36.0097008Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"cc3f826c-7d39-4f19-b6cc-87209f924751","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"133cd34c-a7e9-43cc-8b30-cae2b76be4e4","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1/events/cc3f826c-7d39-4f19-b6cc-87209f924751/ticks/636435313498178716","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91d1f1a9-7e55-4032-9950-154dc8edcdb9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Microsoft.Compute/virtualMachines/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:29.8178716Z","submissionTimestamp":"2017-10-13T22:42:50.3002455Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"35072bba-b245-49d5-acf0-a5b10e073e66","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/35072bba-b245-49d5-acf0-a5b10e073e66/ticks/636435313431935027","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"statusCode":"Created","serviceRequestId":"dff52a05-d04b-40df-9e4d-b9bcef69445c","responseBody":"{\"name\":\"conveniencevm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"70dd4f2f-1c1d-4f77-89ea-20f65e1ce000\",\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\",\"etag\":\"W/\\\"6a4cb1fd-efbf-4f24-984a-19e3a0d09295\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:23.1935027Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"c8b8ad42-9c06-4c05-8dc0-b80c1410c625","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"05af2c53-ce63-4657-8f7e-39004e2de676","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/events/c8b8ad42-9c06-4c05-8dc0-b80c1410c625/ticks/636435313421578937","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c9cdba0a-7496-452f-8fc4-ce339ffe871b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Microsoft.Network/networkInterfaces/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"},\"ipConfigurations\":[{\"name\":\"ipconfigconveniencevm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:22.1578937Z","submissionTimestamp":"2017-10-13T22:42:40.1376137Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"926c4568-e5d6-4e93-8a3a-8362a3ca1862","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/926c4568-e5d6-4e93-8a3a-8362a3ca1862/ticks/636435313343941206","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"11e19965-2533-4916-940e-e6a86de89ff4","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:14.3941206Z","submissionTimestamp":"2017-10-13T22:42:29.9134647Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"4f78e315-8b0b-4d2d-b94b-a8f83c334abe","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/4f78e315-8b0b-4d2d-b94b-a8f83c334abe/ticks/636435313316619062","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6c38c185-179e-43a4-9cec-d2cbecbc83c7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:11.6619062Z","submissionTimestamp":"2017-10-13T22:42:29.8476508Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"26b59ed5-3011-4157-aa27-fca93c05d74a","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/26b59ed5-3011-4157-aa27-fca93c05d74a/ticks/636435313276110502","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f08a4c44-0f13-4e9a-924b-dd873666e2d4","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:07.6110502Z","submissionTimestamp":"2017-10-13T22:42:19.9685073Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"0054af9c-08a5-49d9-afed-b98e438ffc85","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/0054af9c-08a5-49d9-afed-b98e438ffc85/ticks/636435313248109130","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"statusCode":"Created","serviceRequestId":"adb3faa4-1e4c-4bb6-a4fd-eca3c86e5616","responseBody":"{\"name\":\"conveniencevm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\",\"etag\":\"W/\\\"cbbd33c2-98f4-4191-a537-476819d8ef38\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8f55605-c687-4c95-971d-e6af1e5c712b\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:04.810913Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"1b30eb74-8b4f-4440-8830-8b75577fd6d1","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/1b30eb74-8b4f-4440-8830-8b75577fd6d1/ticks/636435313231757307","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"statusCode":"Created","serviceRequestId":"a2c5bc08-5338-4ac9-a46b-bc3ad11e5f16","responseBody":"{\"name\":\"conveniencevm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"68604fb5-be10-4d2f-99cb-873c1addae05\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"ab4e7cdd-4ae2-43af-88a3-f0f4ff2a626c\\\"\",\"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":"2017-10-13T22:42:03.1757307Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"bad5e0fa-b146-434a-8b21-88bad41c93c8","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/bad5e0fa-b146-434a-8b21-88bad41c93c8/ticks/636435313223905280","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"statusCode":"Created","serviceRequestId":"73411668-bbf1-418f-93b9-93df98811de3","responseBody":"{\"name\":\"conveniencevm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47d14d35-3850-4fe5-bcfb-b20998cbc22e\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\",\"etag\":\"W/\\\"2eb3bb25-bd5e-45d7-b4f1-4b6434d25c79\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:42:02.390528Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"53166a5b-dbda-43ef-9a3c-38b23c88cddb","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP/events/11f38e0c-e3a4-4081-bbd4-3dc9398cf5d7/ticks/636435313219477787","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d3cedd1-07c3-4f3f-abed-a13500fc8af2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Microsoft.Network/publicIPAddresses/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":\"dynamic\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.9477787Z","submissionTimestamp":"2017-10-13T22:42:20.7259753Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b304b880-9145-4d97-b5d0-eef8f0f564f6","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0adc4c1d-6ae7-4ee3-bd45-768abf203df6","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG/events/b304b880-9145-4d97-b5d0-eef8f0f564f6/ticks/636435313218772876","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"95c8ac49-0b47-4d49-908e-d879c7cd6745","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Microsoft.Network/networkSecurityGroups/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"access\":\"Allow\",\"sourceAddressPrefix\":\"*\",\"priority\":1000,\"sourcePortRange\":\"*\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"protocol\":\"Tcp\",\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.8772876Z","submissionTimestamp":"2017-10-13T22:42:20.0372295Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"24982aa1-40bf-4a9f-b866-22b298f9dded","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a852bb-9a44-4d56-90e3-473e5c77d0a9","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/events/24982aa1-40bf-4a9f-b866-22b298f9dded/ticks/636435313212967702","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"88764277-abb7-4e06-9ba3-117897daa985","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Microsoft.Network/virtualNetworks/write"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"subnets\":[{\"name\":\"conveniencevm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}],\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:42:01.2967702Z","submissionTimestamp":"2017-10-13T22:42:19.9317557Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"5de8488f-ee62-4dbb-963d-72ddc71e7dce","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/5de8488f-ee62-4dbb-963d-72ddc71e7dce/ticks/636435313157322987","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-13T22:41:55.7322987Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1507931345","nbf":"1507931345","exp":"1507935245","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2VgYFhTJLS/b1LHBZEf7VeZWNl+BCx+0+WSq9DntmPPP1U5vl8A","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"sEftVDUIJUKuGsx7Sj0XAA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","description":"","eventDataId":"b1b063f1-2895-4f95-91a8-8604fb41d7f0","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b44301e2-b067-11e7-bbfc-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI/events/b1b063f1-2895-4f95-91a8-8604fb41d7f0/ticks/636435313129197946","level":"Informational","resourceGroupName":"cli_nic_convenience_test000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-13T22:41:52.9197946Z","submissionTimestamp":"2017-10-13T22:42:10.0937669Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['74034']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:48 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [97c075ec-9cce-11e7-877a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Compute/virtualMachines/conveniencevm1?api-version=2017-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586936723711510213?api-version=2017-05-10
response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"4676051d-b3e6-45bb-aea0-b3d07be066d3\"\
+ body: {string: '{"status":"Succeeded"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Resources/deployments/vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","name":"vm_deploy_6QrJoIcIjspxJuHBntibtMTG1I0LoMqI","properties":{"templateHash":"3349348483206636840","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-13T22:43:27.6528198Z","duration":"PT1M33.3182103S","correlationId":"f262be21-5f87-427a-82a8-6a2f93bb1dff","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_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"conveniencevm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"conveniencevm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"conveniencevm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"conveniencevm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"conveniencevm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"conveniencevm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3955']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 computemanagementclient/3.0.1 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1?api-version=2017-03-30&$expand=instanceView
+ response:
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"09f44e4b-5cbd-4375-bd12-50b7e915a81e\"\
,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
\ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"conveniencevm1_OsDisk_1_22a209a5b3214e9ebf1a5a3faad3b5df\"\
+ \ \"name\": \"conveniencevm1_OsDisk_1_27b5989bd54444ef8b5e81da688b8b74\"\
,\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_nic_convenience_test/providers/Microsoft.Compute/disks/conveniencevm1_OsDisk_1_22a209a5b3214e9ebf1a5a3faad3b5df\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/disks/conveniencevm1_OsDisk_1_27b5989bd54444ef8b5e81da688b8b74\"\
\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
: []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"conveniencevm1\"\
,\r\n \"adminUsername\": \"myusername\",\r\n \"linuxConfiguration\"\
: {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
\ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\
+ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\
+ }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\
+ : {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.18\",\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\": \"2017-10-13T22:43:57+00:00\"\r\n }\r\n \
+ \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\
+ \ [\r\n {\r\n \"name\": \"conveniencevm1_OsDisk_1_27b5989bd54444ef8b5e81da688b8b74\"\
+ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\
+ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\
+ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \
+ \ \"time\": \"2017-10-13T22:42:37.8590513+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\": \"2017-10-13T22:43:25.6040583+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_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1\"\
+ ,\r\n \"name\": \"conveniencevm1\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2976']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43: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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"conveniencevm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\
+ ,\r\n \"etag\": \"W/\\\"27d885e2-edb7-41aa-a2e8-4e1c8951fe46\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70dd4f2f-1c1d-4f77-89ea-20f65e1ce000\"\
+ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigconveniencevm1\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\"\
+ ,\r\n \"etag\": \"W/\\\"27d885e2-edb7-41aa-a2e8-4e1c8951fe46\\\"\"\
+ ,\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_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/virtualNetworks/conveniencevm1VNET/subnets/conveniencevm1Subnet\"\
+ \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\": \"gvg3cr0qhdsu5ph1wiezrs4cfg.dx.internal.cloudapp.net\"\
+ \r\n },\r\n \"macAddress\": \"00-0D-3A-34-83-C6\",\r\n \"enableAcceleratedNetworking\"\
+ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"\
+ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1\"\
+ \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
+ \n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['2605']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:57 GMT']
+ etag: [W/"27d885e2-edb7-41aa-a2e8-4e1c8951fe46"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"conveniencevm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/publicIPAddresses/conveniencevm1PublicIP\"\
+ ,\r\n \"etag\": \"W/\\\"dd7b3330-a54c-4ac6-a02a-2d2d0b8e7a93\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e8f55605-c687-4c95-971d-e6af1e5c712b\"\
+ ,\r\n \"ipAddress\": \"104.42.198.191\",\r\n \"publicIPAddressVersion\"\
+ : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\"\
+ : 4,\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/ipConfigurations/ipconfigconveniencevm1\"\
+ \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
+ \n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1023']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43:58 GMT']
+ etag: [W/"dd7b3330-a54c-4ac6-a02a-2d2d0b8e7a93"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 computemanagementclient/3.0.1 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1?api-version=2017-03-30
+ response:
+ body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"09f44e4b-5cbd-4375-bd12-50b7e915a81e\"\
+ ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
+ \ \"name\": \"conveniencevm1_OsDisk_1_27b5989bd54444ef8b5e81da688b8b74\"\
+ ,\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_nic_convenience_test000001/providers/Microsoft.Compute/disks/conveniencevm1_OsDisk_1_27b5989bd54444ef8b5e81da688b8b74\"\
+ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
+ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"conveniencevm1\"\
+ ,\r\n \"adminUsername\": \"myusername\",\r\n \"linuxConfiguration\"\
+ : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
+ \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
+ :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\
}]},\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_nic_convenience_test/providers/Microsoft.Compute/virtualMachines/conveniencevm1\"\
+ tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Compute/virtualMachines/conveniencevm1\"\
,\r\n \"name\": \"conveniencevm1\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07: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]
- content-length: ['1657']
+ cache-control: [no-cache]
+ content-length: ['1792']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:43: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [980308da-9cce-11e7-bcf0-a0b3ccf7272a]
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/effectiveNetworkSecurityGroups?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/effectiveNetworkSecurityGroups?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"networkSecurityGroup\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"\
\r\n },\r\n \"association\": {\r\n \"networkInterface\":\
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\
\r\n }\r\n },\r\n \"effectiveSecurityRules\": [\r\n \
\ {\r\n \"name\": \"securityRules/default-allow-ssh\",\r\n \
\ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"0-65535\"\
@@ -86,35 +1134,33 @@ interactions:
sourceAddressPrefixes\": [\r\n \"VirtualNetwork\"\r\n \
\ ],\r\n \"destinationAddressPrefixes\": [\r\n \"VirtualNetwork\"\
\r\n ],\r\n \"expandedSourceAddressPrefix\": [\r\n \
- \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\",\r\n \
- \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n ],\r\
- \n \"expandedDestinationAddressPrefix\": [\r\n \"10.0.0.0/16\"\
- ,\r\n \"168.63.129.16/32\",\r\n \"10.0.0.0/16\",\r\n\
- \ \"168.63.129.16/32\"\r\n ],\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\"\
- : \"Inbound\"\r\n },\r\n {\r\n \"name\": \"defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
+ \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n \
+ \ ],\r\n \"expandedDestinationAddressPrefix\": [\r\n \"\
+ 10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n ],\r\n \
+ \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \
+ \ \"direction\": \"Inbound\"\r\n },\r\n {\r\n \"\
+ name\": \"defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \
+ \ \"protocol\": \"All\",\r\n \"sourcePortRange\": \"0-65535\"\
+ ,\r\n \"destinationPortRange\": \"0-65535\",\r\n \"sourcePortRanges\"\
+ : [\r\n \"0-65535\"\r\n ],\r\n \"destinationPortRanges\"\
+ : [\r\n \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
+ : \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\"\
+ ,\r\n \"sourceAddressPrefixes\": [\r\n \"AzureLoadBalancer\"\
+ \r\n ],\r\n \"destinationAddressPrefixes\": [\r\n \
+ \ \"0.0.0.0/0\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
+ : [\r\n \"168.63.129.16/32\"\r\n ],\r\n \"access\"\
+ : \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\"\
+ : \"Inbound\"\r\n },\r\n {\r\n \"name\": \"defaultSecurityRules/DenyAllInBound\"\
,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\": \"\
0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
\ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n ],\r\n\
\ \"destinationPortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n\
- \ \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \"sourceAddressPrefixes\"\
- : [\r\n \"AzureLoadBalancer\"\r\n ],\r\n \"destinationAddressPrefixes\"\
- : [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
- : [\r\n \"168.63.129.16/32\",\r\n \"168.63.129.16/32\"\
- \r\n ],\r\n \"access\": \"Allow\",\r\n \"priority\"\
- : 65001,\r\n \"direction\": \"Inbound\"\r\n },\r\n \
- \ {\r\n \"name\": \"defaultSecurityRules/DenyAllInBound\",\r\n \
- \ \"protocol\": \"All\",\r\n \"sourcePortRange\": \"0-65535\"\
- ,\r\n \"destinationPortRange\": \"0-65535\",\r\n \"sourcePortRanges\"\
- : [\r\n \"0-65535\"\r\n ],\r\n \"destinationPortRanges\"\
- : [\r\n \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
- : \"0.0.0.0/0\",\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\"\
- ,\r\n \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\
- \n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"access\": \"Deny\",\r\n\
- \ \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n\
- \ },\r\n {\r\n \"name\": \"defaultSecurityRules/AllowVnetOutBound\"\
+ \ ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\",\r\n \
+ \ \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \"sourceAddressPrefixes\"\
+ : [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"destinationAddressPrefixes\"\
+ : [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"access\":\
+ \ \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\":\
+ \ \"Inbound\"\r\n },\r\n {\r\n \"name\": \"defaultSecurityRules/AllowVnetOutBound\"\
,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\": \"\
0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
\ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n ],\r\n\
@@ -124,21 +1170,20 @@ interactions:
sourceAddressPrefixes\": [\r\n \"VirtualNetwork\"\r\n \
\ ],\r\n \"destinationAddressPrefixes\": [\r\n \"VirtualNetwork\"\
\r\n ],\r\n \"expandedSourceAddressPrefix\": [\r\n \
- \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\",\r\n \
- \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n ],\r\
- \n \"expandedDestinationAddressPrefix\": [\r\n \"10.0.0.0/16\"\
- ,\r\n \"168.63.129.16/32\",\r\n \"10.0.0.0/16\",\r\n\
- \ \"168.63.129.16/32\"\r\n ],\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\"\
- : \"Outbound\"\r\n },\r\n {\r\n \"name\": \"defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\": \"\
- 0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n ],\r\n\
- \ \"destinationPortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\",\r\n \
- \ \"destinationAddressPrefix\": \"Internet\",\r\n \"sourceAddressPrefixes\"\
- : [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"destinationAddressPrefixes\"\
- : [\r\n \"Internet\"\r\n ],\r\n \"expandedDestinationAddressPrefix\"\
+ \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n \
+ \ ],\r\n \"expandedDestinationAddressPrefix\": [\r\n \"\
+ 10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n ],\r\n \
+ \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \
+ \ \"direction\": \"Outbound\"\r\n },\r\n {\r\n \
+ \ \"name\": \"defaultSecurityRules/AllowInternetOutBound\",\r\n \"\
+ protocol\": \"All\",\r\n \"sourcePortRange\": \"0-65535\",\r\n \
+ \ \"destinationPortRange\": \"0-65535\",\r\n \"sourcePortRanges\"\
+ : [\r\n \"0-65535\"\r\n ],\r\n \"destinationPortRanges\"\
+ : [\r\n \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
+ : \"0.0.0.0/0\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\
+ \n \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\n\
+ \ ],\r\n \"destinationAddressPrefixes\": [\r\n \
+ \ \"Internet\"\r\n ],\r\n \"expandedDestinationAddressPrefix\"\
: [\r\n \"1.0.0.0/8\",\r\n \"2.0.0.0/7\",\r\n \
\ \"4.0.0.0/6\",\r\n \"8.0.0.0/7\",\r\n \"11.0.0.0/8\"\
,\r\n \"12.0.0.0/6\",\r\n \"16.0.0.0/5\",\r\n \
@@ -175,42 +1220,6 @@ interactions:
\ \"198.24.0.0/13\",\r\n \"198.32.0.0/11\",\r\n \
\ \"198.64.0.0/10\",\r\n \"198.128.0.0/9\",\r\n \
\ \"199.0.0.0/8\",\r\n \"200.0.0.0/5\",\r\n \"208.0.0.0/4\"\
- ,\r\n \"1.0.0.0/8\",\r\n \"2.0.0.0/7\",\r\n \
- \ \"4.0.0.0/6\",\r\n \"8.0.0.0/7\",\r\n \"11.0.0.0/8\"\
- ,\r\n \"12.0.0.0/6\",\r\n \"16.0.0.0/5\",\r\n \
- \ \"24.0.0.0/8\",\r\n \"25.25.0.0/16\",\r\n \"\
- 25.26.0.0/15\",\r\n \"25.132.0.0/14\",\r\n \"25.136.0.0/14\"\
- ,\r\n \"25.140.0.0/15\",\r\n \"25.240.0.0/14\",\r\n\
- \ \"26.0.0.0/7\",\r\n \"28.0.0.0/6\",\r\n \
- \ \"32.0.0.0/3\",\r\n \"64.0.0.0/3\",\r\n \"96.0.0.0/6\"\
- ,\r\n \"100.0.0.0/10\",\r\n \"100.128.0.0/9\",\r\n \
- \ \"101.0.0.0/8\",\r\n \"102.0.0.0/7\",\r\n \
- \ \"104.0.0.0/5\",\r\n \"112.0.0.0/5\",\r\n \"120.0.0.0/6\"\
- ,\r\n \"124.0.0.0/7\",\r\n \"126.0.0.0/8\",\r\n \
- \ \"128.0.0.0/3\",\r\n \"160.0.0.0/5\",\r\n \"\
- 168.0.0.0/8\",\r\n \"169.0.0.0/9\",\r\n \"169.128.0.0/10\"\
- ,\r\n \"169.192.0.0/11\",\r\n \"169.224.0.0/12\",\r\n\
- \ \"169.240.0.0/13\",\r\n \"169.248.0.0/14\",\r\n \
- \ \"169.252.0.0/15\",\r\n \"169.255.0.0/16\",\r\n \
- \ \"170.0.0.0/7\",\r\n \"172.0.0.0/12\",\r\n \
- \ \"172.32.0.0/11\",\r\n \"172.64.0.0/10\",\r\n \"172.128.0.0/9\"\
- ,\r\n \"173.0.0.0/8\",\r\n \"174.0.0.0/7\",\r\n \
- \ \"176.0.0.0/4\",\r\n \"192.0.0.0/23\",\r\n \
- \ \"192.0.3.0/24\",\r\n \"192.0.4.0/22\",\r\n \"192.0.8.0/21\"\
- ,\r\n \"192.0.16.0/20\",\r\n \"192.0.32.0/19\",\r\n\
- \ \"192.0.64.0/18\",\r\n \"192.0.128.0/17\",\r\n \
- \ \"192.1.0.0/16\",\r\n \"192.2.0.0/15\",\r\n \
- \ \"192.4.0.0/14\",\r\n \"192.8.0.0/13\",\r\n \"192.16.0.0/12\"\
- ,\r\n \"192.32.0.0/11\",\r\n \"192.64.0.0/10\",\r\n\
- \ \"192.128.0.0/11\",\r\n \"192.160.0.0/13\",\r\n \
- \ \"192.169.0.0/16\",\r\n \"192.170.0.0/15\",\r\n \
- \ \"192.172.0.0/14\",\r\n \"192.176.0.0/12\",\r\n \
- \ \"192.192.0.0/10\",\r\n \"193.0.0.0/8\",\r\n \
- \ \"194.0.0.0/7\",\r\n \"196.0.0.0/7\",\r\n \"198.0.0.0/12\"\
- ,\r\n \"198.16.0.0/15\",\r\n \"198.20.0.0/14\",\r\n\
- \ \"198.24.0.0/13\",\r\n \"198.32.0.0/11\",\r\n \
- \ \"198.64.0.0/10\",\r\n \"198.128.0.0/9\",\r\n \
- \ \"199.0.0.0/8\",\r\n \"200.0.0.0/5\",\r\n \"208.0.0.0/4\"\
\r\n ],\r\n \"access\": \"Allow\",\r\n \"priority\"\
: 65001,\r\n \"direction\": \"Outbound\"\r\n },\r\n \
\ {\r\n \"name\": \"defaultSecurityRules/DenyAllOutBound\",\r\n\
@@ -262,38 +1271,38 @@ interactions:
199.0.0.0/8\",\r\n \"200.0.0.0/5\",\r\n \"208.0.0.0/4\"\r\
\n ]\r\n }\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:04 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/78d830b0-d5dd-4d71-9411-25022f77b277?api-version=2017-09-01']
- 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]
- content-length: ['13615']
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ cache-control: [no-cache]
+ content-length: ['11051']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:44:07 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a73ec460-4a23-42fc-b5d7-3e7dde782e22?api-version=2017-09-01']
+ 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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [980308da-9cce-11e7-bcf0-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/78d830b0-d5dd-4d71-9411-25022f77b277?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a73ec460-4a23-42fc-b5d7-3e7dde782e22?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"networkSecurityGroup\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkSecurityGroups/conveniencevm1NSG\"\
\r\n },\r\n \"association\": {\r\n \"networkInterface\":\
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic\"\
\r\n }\r\n },\r\n \"effectiveSecurityRules\": [\r\n \
\ {\r\n \"name\": \"securityRules/default-allow-ssh\",\r\n \
\ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"0-65535\"\
@@ -315,35 +1324,33 @@ interactions:
sourceAddressPrefixes\": [\r\n \"VirtualNetwork\"\r\n \
\ ],\r\n \"destinationAddressPrefixes\": [\r\n \"VirtualNetwork\"\
\r\n ],\r\n \"expandedSourceAddressPrefix\": [\r\n \
- \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\",\r\n \
- \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n ],\r\
- \n \"expandedDestinationAddressPrefix\": [\r\n \"10.0.0.0/16\"\
- ,\r\n \"168.63.129.16/32\",\r\n \"10.0.0.0/16\",\r\n\
- \ \"168.63.129.16/32\"\r\n ],\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\"\
- : \"Inbound\"\r\n },\r\n {\r\n \"name\": \"defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
+ \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n \
+ \ ],\r\n \"expandedDestinationAddressPrefix\": [\r\n \"\
+ 10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n ],\r\n \
+ \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \
+ \ \"direction\": \"Inbound\"\r\n },\r\n {\r\n \"\
+ name\": \"defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \
+ \ \"protocol\": \"All\",\r\n \"sourcePortRange\": \"0-65535\"\
+ ,\r\n \"destinationPortRange\": \"0-65535\",\r\n \"sourcePortRanges\"\
+ : [\r\n \"0-65535\"\r\n ],\r\n \"destinationPortRanges\"\
+ : [\r\n \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
+ : \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\"\
+ ,\r\n \"sourceAddressPrefixes\": [\r\n \"AzureLoadBalancer\"\
+ \r\n ],\r\n \"destinationAddressPrefixes\": [\r\n \
+ \ \"0.0.0.0/0\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
+ : [\r\n \"168.63.129.16/32\"\r\n ],\r\n \"access\"\
+ : \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\"\
+ : \"Inbound\"\r\n },\r\n {\r\n \"name\": \"defaultSecurityRules/DenyAllInBound\"\
,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\": \"\
0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
\ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n ],\r\n\
\ \"destinationPortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n\
- \ \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \"sourceAddressPrefixes\"\
- : [\r\n \"AzureLoadBalancer\"\r\n ],\r\n \"destinationAddressPrefixes\"\
- : [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
- : [\r\n \"168.63.129.16/32\",\r\n \"168.63.129.16/32\"\
- \r\n ],\r\n \"access\": \"Allow\",\r\n \"priority\"\
- : 65001,\r\n \"direction\": \"Inbound\"\r\n },\r\n \
- \ {\r\n \"name\": \"defaultSecurityRules/DenyAllInBound\",\r\n \
- \ \"protocol\": \"All\",\r\n \"sourcePortRange\": \"0-65535\"\
- ,\r\n \"destinationPortRange\": \"0-65535\",\r\n \"sourcePortRanges\"\
- : [\r\n \"0-65535\"\r\n ],\r\n \"destinationPortRanges\"\
- : [\r\n \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
- : \"0.0.0.0/0\",\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\"\
- ,\r\n \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\
- \n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"access\": \"Deny\",\r\n\
- \ \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n\
- \ },\r\n {\r\n \"name\": \"defaultSecurityRules/AllowVnetOutBound\"\
+ \ ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\",\r\n \
+ \ \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \"sourceAddressPrefixes\"\
+ : [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"destinationAddressPrefixes\"\
+ : [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"access\":\
+ \ \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\":\
+ \ \"Inbound\"\r\n },\r\n {\r\n \"name\": \"defaultSecurityRules/AllowVnetOutBound\"\
,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\": \"\
0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
\ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n ],\r\n\
@@ -353,21 +1360,20 @@ interactions:
sourceAddressPrefixes\": [\r\n \"VirtualNetwork\"\r\n \
\ ],\r\n \"destinationAddressPrefixes\": [\r\n \"VirtualNetwork\"\
\r\n ],\r\n \"expandedSourceAddressPrefix\": [\r\n \
- \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\",\r\n \
- \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n ],\r\
- \n \"expandedDestinationAddressPrefix\": [\r\n \"10.0.0.0/16\"\
- ,\r\n \"168.63.129.16/32\",\r\n \"10.0.0.0/16\",\r\n\
- \ \"168.63.129.16/32\"\r\n ],\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\"\
- : \"Outbound\"\r\n },\r\n {\r\n \"name\": \"defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\": \"\
- 0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n ],\r\n\
- \ \"destinationPortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\",\r\n \
- \ \"destinationAddressPrefix\": \"Internet\",\r\n \"sourceAddressPrefixes\"\
- : [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"destinationAddressPrefixes\"\
- : [\r\n \"Internet\"\r\n ],\r\n \"expandedDestinationAddressPrefix\"\
+ \ \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n \
+ \ ],\r\n \"expandedDestinationAddressPrefix\": [\r\n \"\
+ 10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n ],\r\n \
+ \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \
+ \ \"direction\": \"Outbound\"\r\n },\r\n {\r\n \
+ \ \"name\": \"defaultSecurityRules/AllowInternetOutBound\",\r\n \"\
+ protocol\": \"All\",\r\n \"sourcePortRange\": \"0-65535\",\r\n \
+ \ \"destinationPortRange\": \"0-65535\",\r\n \"sourcePortRanges\"\
+ : [\r\n \"0-65535\"\r\n ],\r\n \"destinationPortRanges\"\
+ : [\r\n \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
+ : \"0.0.0.0/0\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\
+ \n \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\n\
+ \ ],\r\n \"destinationAddressPrefixes\": [\r\n \
+ \ \"Internet\"\r\n ],\r\n \"expandedDestinationAddressPrefix\"\
: [\r\n \"1.0.0.0/8\",\r\n \"2.0.0.0/7\",\r\n \
\ \"4.0.0.0/6\",\r\n \"8.0.0.0/7\",\r\n \"11.0.0.0/8\"\
,\r\n \"12.0.0.0/6\",\r\n \"16.0.0.0/5\",\r\n \
@@ -404,42 +1410,6 @@ interactions:
\ \"198.24.0.0/13\",\r\n \"198.32.0.0/11\",\r\n \
\ \"198.64.0.0/10\",\r\n \"198.128.0.0/9\",\r\n \
\ \"199.0.0.0/8\",\r\n \"200.0.0.0/5\",\r\n \"208.0.0.0/4\"\
- ,\r\n \"1.0.0.0/8\",\r\n \"2.0.0.0/7\",\r\n \
- \ \"4.0.0.0/6\",\r\n \"8.0.0.0/7\",\r\n \"11.0.0.0/8\"\
- ,\r\n \"12.0.0.0/6\",\r\n \"16.0.0.0/5\",\r\n \
- \ \"24.0.0.0/8\",\r\n \"25.25.0.0/16\",\r\n \"\
- 25.26.0.0/15\",\r\n \"25.132.0.0/14\",\r\n \"25.136.0.0/14\"\
- ,\r\n \"25.140.0.0/15\",\r\n \"25.240.0.0/14\",\r\n\
- \ \"26.0.0.0/7\",\r\n \"28.0.0.0/6\",\r\n \
- \ \"32.0.0.0/3\",\r\n \"64.0.0.0/3\",\r\n \"96.0.0.0/6\"\
- ,\r\n \"100.0.0.0/10\",\r\n \"100.128.0.0/9\",\r\n \
- \ \"101.0.0.0/8\",\r\n \"102.0.0.0/7\",\r\n \
- \ \"104.0.0.0/5\",\r\n \"112.0.0.0/5\",\r\n \"120.0.0.0/6\"\
- ,\r\n \"124.0.0.0/7\",\r\n \"126.0.0.0/8\",\r\n \
- \ \"128.0.0.0/3\",\r\n \"160.0.0.0/5\",\r\n \"\
- 168.0.0.0/8\",\r\n \"169.0.0.0/9\",\r\n \"169.128.0.0/10\"\
- ,\r\n \"169.192.0.0/11\",\r\n \"169.224.0.0/12\",\r\n\
- \ \"169.240.0.0/13\",\r\n \"169.248.0.0/14\",\r\n \
- \ \"169.252.0.0/15\",\r\n \"169.255.0.0/16\",\r\n \
- \ \"170.0.0.0/7\",\r\n \"172.0.0.0/12\",\r\n \
- \ \"172.32.0.0/11\",\r\n \"172.64.0.0/10\",\r\n \"172.128.0.0/9\"\
- ,\r\n \"173.0.0.0/8\",\r\n \"174.0.0.0/7\",\r\n \
- \ \"176.0.0.0/4\",\r\n \"192.0.0.0/23\",\r\n \
- \ \"192.0.3.0/24\",\r\n \"192.0.4.0/22\",\r\n \"192.0.8.0/21\"\
- ,\r\n \"192.0.16.0/20\",\r\n \"192.0.32.0/19\",\r\n\
- \ \"192.0.64.0/18\",\r\n \"192.0.128.0/17\",\r\n \
- \ \"192.1.0.0/16\",\r\n \"192.2.0.0/15\",\r\n \
- \ \"192.4.0.0/14\",\r\n \"192.8.0.0/13\",\r\n \"192.16.0.0/12\"\
- ,\r\n \"192.32.0.0/11\",\r\n \"192.64.0.0/10\",\r\n\
- \ \"192.128.0.0/11\",\r\n \"192.160.0.0/13\",\r\n \
- \ \"192.169.0.0/16\",\r\n \"192.170.0.0/15\",\r\n \
- \ \"192.172.0.0/14\",\r\n \"192.176.0.0/12\",\r\n \
- \ \"192.192.0.0/10\",\r\n \"193.0.0.0/8\",\r\n \
- \ \"194.0.0.0/7\",\r\n \"196.0.0.0/7\",\r\n \"198.0.0.0/12\"\
- ,\r\n \"198.16.0.0/15\",\r\n \"198.20.0.0/14\",\r\n\
- \ \"198.24.0.0/13\",\r\n \"198.32.0.0/11\",\r\n \
- \ \"198.64.0.0/10\",\r\n \"198.128.0.0/9\",\r\n \
- \ \"199.0.0.0/8\",\r\n \"200.0.0.0/5\",\r\n \"208.0.0.0/4\"\
\r\n ],\r\n \"access\": \"Allow\",\r\n \"priority\"\
: 65001,\r\n \"direction\": \"Outbound\"\r\n },\r\n \
\ {\r\n \"name\": \"defaultSecurityRules/DenyAllOutBound\",\r\n\
@@ -491,33 +1461,33 @@ interactions:
199.0.0.0/8\",\r\n \"200.0.0.0/5\",\r\n \"208.0.0.0/4\"\r\
\n ]\r\n }\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:35 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/78d830b0-d5dd-4d71-9411-25022f77b277?api-version=2017-09-01']
- 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]
- content-length: ['13615']
+ cache-control: [no-cache]
+ content-length: ['11051']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:44:38 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a73ec460-4a23-42fc-b5d7-3e7dde782e22?api-version=2017-09-01']
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [aef524ec-9cce-11e7-99d5-a0b3ccf7272a]
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/effectiveRouteTable?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_nic_convenience_test000001/providers/Microsoft.Network/networkInterfaces/conveniencevm1VMNic/effectiveRouteTable?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"source\": \"Default\"\
,\r\n \"state\": \"Active\",\r\n \"addressPrefix\": [\r\n \
@@ -539,33 +1509,33 @@ interactions:
: [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"nextHopType\": \"\
None\",\r\n \"nextHopIpAddress\": []\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:42 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/6af82b79-9bda-4e88-b9b5-111175242351?api-version=2017-09-01']
- 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]
+ cache-control: [no-cache]
content-length: ['1163']
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:44:46 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a843fe1b-3f6c-4f92-86e7-2e3b14082cff?api-version=2017-09-01']
+ 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-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [aef524ec-9cce-11e7-99d5-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/6af82b79-9bda-4e88-b9b5-111175242351?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a843fe1b-3f6c-4f92-86e7-2e3b14082cff?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"source\": \"Default\"\
,\r\n \"state\": \"Active\",\r\n \"addressPrefix\": [\r\n \
@@ -587,16 +1557,43 @@ interactions:
: [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"nextHopType\": \"\
None\",\r\n \"nextHopIpAddress\": []\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:12 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/6af82b79-9bda-4e88-b9b5-111175242351?api-version=2017-09-01']
- 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]
+ cache-control: [no-cache]
content-length: ['1163']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 22:45:16 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a843fe1b-3f6c-4f92-86e7-2e3b14082cff?api-version=2017-09-01']
+ 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]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_nic_convenience_test000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 22:45:18 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZOSUM6NUZDT05WRU5JRU5DRTo1RlRFU1RUQ09OVVAyRUdDVlZLV0tMTnxEQTFFNzQ5M0E5Mzg0QTk4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_stack.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_stack.yaml
new file mode 100644
index 00000000000..61add373fb7
--- /dev/null
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_stack.yaml
@@ -0,0 +1,32 @@
+interactions:
+- request:
+ body: '{"tags": {"use": "az-test"}, "location": "local"}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['49']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_stack_scenario000001?api-version=2017-05-10
+ response:
+ body: {string: '{"error":{"code":"LocationNotAvailableForResourceGroup","message":"The
+ provided location ''local'' is not available for resource group. List of available
+ regions is ''centralus,eastasia,southeastasia,eastus,eastus2,westus,westus2,northcentralus,southcentralus,westcentralus,northeurope,westeurope,japaneast,japanwest,brazilsouth,australiasoutheast,australiaeast,westindia,southindia,centralindia,canadacentral,canadaeast,uksouth,ukwest,koreacentral,koreasouth,eastus2euap,centraluseuap''."}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['487']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 21:06:37 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-failure-cause: [gateway]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 400, message: Bad Request}
+version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_subresources.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_subresources.yaml
index 792bacea680..a24548ec4ee 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_subresources.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nic_subresources.yaml
@@ -1,1346 +1,1370 @@
interactions:
- request:
- body: null
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5da636e4-9cce-11e7-9011-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource?api-version=2017-05-10
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource","name":"cli_test_nic_subresource","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001","name":"cli_test_nic_subresource000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:08:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:19 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['238']
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001","name":"cli_test_nic_subresource000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:08:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"},
- "name": "subnet1"}], "dhcpOptions": {}, "addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}}, "tags": {}, "location": "westus"}'
+ body: '{"tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]},
+ "subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"}, "name": "subnet1"}],
+ "dhcpOptions": {}}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['205']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5dc2eba4-9cce-11e7-9fbc-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"ee0fb3b8-57c5-4098-bbbd-a034f19510db\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"30e78528-53a0-4762-b18f-5235434cff53\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"2850fed4-938e-48b3-b033-df89c6fa3fef\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"54b68135-bc3e-4662-bd44-dc81a97430ea\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"ee0fb3b8-57c5-4098-bbbd-a034f19510db\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ ,\r\n \"etag\": \"W/\\\"30e78528-53a0-4762-b18f-5235434cff53\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5f24c6ef-5537-4f0a-aa25-e562ff45b1fd?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['1140']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:21 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e737160-1431-41d4-9b58-73667b584dc5?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1230']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:08:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5dc2eba4-9cce-11e7-9fbc-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5f24c6ef-5537-4f0a-aa25-e562ff45b1fd?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e737160-1431-41d4-9b58-73667b584dc5?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:24 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:08: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5dc2eba4-9cce-11e7-9fbc-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"abf44988-5a65-4f87-99eb-cfb41892ae60\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"307a15b8-7437-4a27-b4ec-aae8b27311cc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"2850fed4-938e-48b3-b033-df89c6fa3fef\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"54b68135-bc3e-4662-bd44-dc81a97430ea\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"abf44988-5a65-4f87-99eb-cfb41892ae60\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ ,\r\n \"etag\": \"W/\\\"307a15b8-7437-4a27-b4ec-aae8b27311cc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:24 GMT']
- ETag: [W/"abf44988-5a65-4f87-99eb-cfb41892ae60"]
- 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]
- content-length: ['1142']
+ cache-control: [no-cache]
+ content-length: ['1232']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:08:55 GMT']
+ etag: [W/"307a15b8-7437-4a27-b4ec-aae8b27311cc"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [6096089e-9cce-11e7-bc7c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource","name":"cli_test_nic_subresource","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:25 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['238']
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001","name":"cli_test_nic_subresource000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:08:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"dnsSettings": {"dnsServers": []}, "ipConfigurations":
- [{"properties": {"privateIPAddressVersion": "IPv4", "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "privateIPAllocationMethod": "Dynamic"}, "name": "ipconfig1"}], "enableIPForwarding":
- false}, "location": "westus"}'
+ body: 'b''{"properties": {"enableIPForwarding": false, "ipConfigurations": [{"properties":
+ {"privateIPAddressVersion": "IPv4", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "privateIPAllocationMethod": "Dynamic"}, "name": "ipconfig1"}], "dnsSettings":
+ {"dnsServers": []}}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['423']
+ Content-Length: ['468']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [60b7a054-9cce-11e7-ab27-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\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\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/12277612-8a0f-4112-ba15-0a8e85a81222?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['1502']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:26 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1185']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cf779d52-405a-4613-979f-37ac2b9e796d?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:08:57 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [60b7a054-9cce-11e7-ab27-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/12277612-8a0f-4112-ba15-0a8e85a81222?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cf779d52-405a-4613-979f-37ac2b9e796d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:56 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:09: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [60b7a054-9cce-11e7-ab27-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\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\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:56 GMT']
- ETag: [W/"5632dfbb-b30a-46a9-a8eb-99b5f06288c0"]
- 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]
- content-length: ['1502']
+ cache-control: [no-cache]
+ content-length: ['1637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:09:28 GMT']
+ etag: [W/"7fb00ab8-ddd3-4889-ab60-16b93ec8c812"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [73669a74-9cce-11e7-8caa-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\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\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:56 GMT']
- ETag: [W/"5632dfbb-b30a-46a9-a8eb-99b5f06288c0"]
- 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]
- content-length: ['1502']
+ cache-control: [no-cache]
+ content-length: ['1637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:09:28 GMT']
+ etag: [W/"7fb00ab8-ddd3-4889-ab60-16b93ec8c812"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [739fb5da-9cce-11e7-8189-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\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\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:57 GMT']
- ETag: [W/"5632dfbb-b30a-46a9-a8eb-99b5f06288c0"]
- 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]
- content-length: ['1502']
+ cache-control: [no-cache]
+ content-length: ['1637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:09:28 GMT']
+ etag: [W/"7fb00ab8-ddd3-4889-ab60-16b93ec8c812"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [73c370d2-9cce-11e7-9200-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\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\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:57 GMT']
- ETag: [W/"5632dfbb-b30a-46a9-a8eb-99b5f06288c0"]
- 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]
- content-length: ['1502']
+ cache-control: [no-cache]
+ content-length: ['1637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:09:30 GMT']
+ etag: [W/"7fb00ab8-ddd3-4889-ab60-16b93ec8c812"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"privateIPAddress": "10.0.0.4", "subnet":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion":
- "IPv4", "primary": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\"", "name": "ipconfig1"},
- {"properties": {"privateIPAddressVersion": "IPv4", "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "primary": true, "privateIPAllocationMethod": "Dynamic"}, "name": "ipconfig2"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"5632dfbb-b30a-46a9-a8eb-99b5f06288c0\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"7fb00ab8-ddd3-4889-ab60-16b93ec8c812\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "provisioningState": "Succeeded", "primary": false, "privateIPAddress":
+ "10.0.0.4", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "privateIPAllocationMethod": "Dynamic"}, "name": "ipconfig1"}, {"properties":
+ {"privateIPAddressVersion": "IPv4", "primary": true, "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "privateIPAllocationMethod": "Dynamic"}, "name": "ipconfig2"}], "dnsSettings":
+ {"dnsServers": [], "internalDomainNameSuffix": "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net",
+ "appliedDnsServers": []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926",
+ "enableAcceleratedNetworking": false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1510']
+ Content-Length: ['1690']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [73ed4748-9cce-11e7-9c48-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig2\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
\ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/85f7e352-0148-49a7-9496-f98faf365d9b?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06: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]
- content-length: ['2279']
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0ccf4e5d-c4c1-4259-acf4-373bece890ad?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['2504']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:09:29 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-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [73ed4748-9cce-11e7-9c48-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/85f7e352-0148-49a7-9496-f98faf365d9b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0ccf4e5d-c4c1-4259-acf4-373bece890ad?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:10:00 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [73ed4748-9cce-11e7-9c48-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig2\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
\ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:28 GMT']
- ETag: [W/"14a8a74a-92b9-4ece-be20-5af626825f5b"]
- 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]
- content-length: ['2279']
+ cache-control: [no-cache]
+ content-length: ['2504']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:10:00 GMT']
+ etag: [W/"bd261ece-7578-49cf-a9c9-cbdcbf75df9b"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [863b4530-9cce-11e7-854a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig2\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"14a8a74a-92b9-4ece-be20-5af626825f5b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
\ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:28 GMT']
- ETag: [W/"14a8a74a-92b9-4ece-be20-5af626825f5b"]
- 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]
- content-length: ['2279']
+ cache-control: [no-cache]
+ content-length: ['2504']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:10:01 GMT']
+ etag: [W/"bd261ece-7578-49cf-a9c9-cbdcbf75df9b"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"privateIPAddress": "10.0.0.5", "subnet":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion":
- "IPv4", "primary": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2",
- "etag": "W/\"14a8a74a-92b9-4ece-be20-5af626825f5b\"", "name": "ipconfig2"},
- {"properties": {"privateIPAddress": "10.0.0.4", "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion":
- "IPv4", "primary": true}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"14a8a74a-92b9-4ece-be20-5af626825f5b\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"14a8a74a-92b9-4ece-be20-5af626825f5b\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2",
+ "etag": "W/\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "provisioningState": "Succeeded", "primary": false, "privateIPAddress":
+ "10.0.0.5", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "privateIPAllocationMethod": "Dynamic"}, "name": "ipconfig2"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"bd261ece-7578-49cf-a9c9-cbdcbf75df9b\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "provisioningState": "Succeeded", "primary": true, "privateIPAddress":
+ "10.0.0.4", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "privateIPAllocationMethod": "Dynamic"}, "name": "ipconfig1"}], "dnsSettings":
+ {"dnsServers": [], "internalDomainNameSuffix": "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net",
+ "appliedDnsServers": []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926",
+ "enableAcceleratedNetworking": false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1815']
+ Content-Length: ['2040']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [86570f6e-9cce-11e7-ab41-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
\ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3f5ddef5-4cf6-4731-9619-3c28e92cdc39?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07: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]
- content-length: ['2279']
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/253dfa12-ecb6-49ea-83be-2f7823c9e5a4?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['2504']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:10: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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [86570f6e-9cce-11e7-ab41-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3f5ddef5-4cf6-4731-9619-3c28e92cdc39?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/253dfa12-ecb6-49ea-83be-2f7823c9e5a4?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:59 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:10:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [86570f6e-9cce-11e7-ab41-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
\ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:58 GMT']
- ETag: [W/"c496fb87-8975-436f-99d0-8cfb3dc70807"]
- 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]
- content-length: ['2279']
+ cache-control: [no-cache]
+ content-length: ['2504']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:10:33 GMT']
+ etag: [W/"c66fce7d-3a20-448e-8124-b16f6c6680f2"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [98bf7506-9cce-11e7-9c64-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n },\r\n {\r\n \"name\": \"ipconfig2\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
- ,\r\n \"etag\": \"W/\\\"c496fb87-8975-436f-99d0-8cfb3dc70807\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig2\"\
+ ,\r\n \"etag\": \"W/\\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": false,\r\n \"privateIPAddressVersion\"\
: \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
\ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:59 GMT']
- ETag: [W/"c496fb87-8975-436f-99d0-8cfb3dc70807"]
- 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]
- content-length: ['2279']
+ cache-control: [no-cache]
+ content-length: ['2504']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:10:35 GMT']
+ etag: [W/"c66fce7d-3a20-448e-8124-b16f6c6680f2"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"privateIPAddress": "10.0.0.4", "subnet":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "privateIPAddressVersion":
- "IPv4", "primary": true}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"c496fb87-8975-436f-99d0-8cfb3dc70807\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"c496fb87-8975-436f-99d0-8cfb3dc70807\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"c66fce7d-3a20-448e-8124-b16f6c6680f2\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "provisioningState": "Succeeded", "primary": true, "privateIPAddress":
+ "10.0.0.4", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "privateIPAllocationMethod": "Dynamic"}, "name": "ipconfig1"}], "dnsSettings":
+ {"dnsServers": [], "internalDomainNameSuffix": "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net",
+ "appliedDnsServers": []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926",
+ "enableAcceleratedNetworking": false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1193']
+ Content-Length: ['1328']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [98e6b2ec-9cce-11e7-b8de-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"3ba2aab3-4d5c-4d72-902f-a20e77a0f401\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"ae685ff8-4423-4ca8-b559-566cca6f9cdf\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"3ba2aab3-4d5c-4d72-902f-a20e77a0f401\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"ae685ff8-4423-4ca8-b559-566cca6f9cdf\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\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\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/712f9cc8-dfb1-4a37-91fe-ec29711302e3?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:07:59 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]
- content-length: ['1502']
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/269c6a40-8044-4e4e-b0eb-e79cb335b9c2?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:10: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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [98e6b2ec-9cce-11e7-b8de-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/712f9cc8-dfb1-4a37-91fe-ec29711302e3?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/269c6a40-8044-4e4e-b0eb-e79cb335b9c2?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:29 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [98e6b2ec-9cce-11e7-b8de-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"3ba2aab3-4d5c-4d72-902f-a20e77a0f401\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"ae685ff8-4423-4ca8-b559-566cca6f9cdf\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"3ba2aab3-4d5c-4d72-902f-a20e77a0f401\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"ae685ff8-4423-4ca8-b559-566cca6f9cdf\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\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\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:29 GMT']
- ETag: [W/"3ba2aab3-4d5c-4d72-902f-a20e77a0f401"]
- 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]
- content-length: ['1502']
+ cache-control: [no-cache]
+ content-length: ['1637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:05 GMT']
+ etag: [W/"ae685ff8-4423-4ca8-b559-566cca6f9cdf"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ab4ad934-9cce-11e7-8ec4-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource","name":"cli_test_nic_subresource","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:30 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['238']
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001","name":"cli_test_nic_subresource000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"},
- "name": "subnet2"}], "dhcpOptions": {}, "addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}}, "tags": {}, "location": "westus"}'
+ body: '{"tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]},
+ "subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"}, "name": "subnet2"}],
+ "dhcpOptions": {}}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['205']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ab6f5794-9cce-11e7-a38a-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2\"\
- ,\r\n \"etag\": \"W/\\\"a067417d-05e5-4b4b-84c5-349dc6a9a95c\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
+ ,\r\n \"etag\": \"W/\\\"29d8603d-6896-4b6b-810d-77d963818a9b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"6de0540d-2c3e-487d-adb1-32a0bcafe2fd\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"f504af42-aa2b-4c87-a6cd-508f867ec9dc\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet2\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2\"\
- ,\r\n \"etag\": \"W/\\\"a067417d-05e5-4b4b-84c5-349dc6a9a95c\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2\"\
+ ,\r\n \"etag\": \"W/\\\"29d8603d-6896-4b6b-810d-77d963818a9b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/810a83be-144e-4ffe-a42f-e6472d60594f?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['1140']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:31 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d99411dc-a4f6-4d73-a7b4-c8786ea1c16a?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1230']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ab6f5794-9cce-11e7-a38a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/810a83be-144e-4ffe-a42f-e6472d60594f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d99411dc-a4f6-4d73-a7b4-c8786ea1c16a?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:10 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ab6f5794-9cce-11e7-a38a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2\"\
- ,\r\n \"etag\": \"W/\\\"6e368cf1-4b12-4fbb-ab48-94f233c61f3f\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
+ ,\r\n \"etag\": \"W/\\\"425f3bc3-9599-477d-afb1-1967ff990b04\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"6de0540d-2c3e-487d-adb1-32a0bcafe2fd\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"f504af42-aa2b-4c87-a6cd-508f867ec9dc\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet2\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2\"\
- ,\r\n \"etag\": \"W/\\\"6e368cf1-4b12-4fbb-ab48-94f233c61f3f\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2\"\
+ ,\r\n \"etag\": \"W/\\\"425f3bc3-9599-477d-afb1-1967ff990b04\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:35 GMT']
- ETag: [W/"6e368cf1-4b12-4fbb-ab48-94f233c61f3f"]
- 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]
- content-length: ['1142']
+ cache-control: [no-cache]
+ content-length: ['1232']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:11 GMT']
+ etag: [W/"425f3bc3-9599-477d-afb1-1967ff990b04"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ae74e1e8-9cce-11e7-afd7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource","name":"cli_test_nic_subresource","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['238']
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001","name":"cli_test_nic_subresource000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:12 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic",
- "idleTimeoutInMinutes": 4, "publicIPAddressVersion": "IPv4"}, "sku": {"name":
- "Basic"}}'
+ body: '{"sku": {"name": "Basic"}, "properties": {"publicIPAllocationMethod": "Dynamic",
+ "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['164']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [aea8570c-9cce-11e7-8da7-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"publicip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
- ,\r\n \"etag\": \"W/\\\"1128e7f9-3ff6-4d39-8f57-8a322fc8b76f\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"publicip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
+ ,\r\n \"etag\": \"W/\\\"accce8df-cba6-4f16-95a4-f2795ae223b6\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"cbcd6a6c-7218-41fd-b8cc-57a684f679b8\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"97b4a95b-5b95-4a73-991e-75650e4d83a5\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/6d499422-3351-446e-9dc6-19b68ea3c088?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['602']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ea45b7d-c6ca-4bff-9d81-1cc58174d241?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['647']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:13 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [aea8570c-9cce-11e7-8da7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6d499422-3351-446e-9dc6-19b68ea3c088?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ea45b7d-c6ca-4bff-9d81-1cc58174d241?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:40 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:16 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [aea8570c-9cce-11e7-8da7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"publicip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
- ,\r\n \"etag\": \"W/\\\"f28d3e4a-ff39-4a28-8425-3b9147b3e4cf\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"publicip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
+ ,\r\n \"etag\": \"W/\\\"5da7bb99-3f76-4f4d-9b11-c3a204031a6d\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"cbcd6a6c-7218-41fd-b8cc-57a684f679b8\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"97b4a95b-5b95-4a73-991e-75650e4d83a5\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:41 GMT']
- ETag: [W/"f28d3e4a-ff39-4a28-8425-3b9147b3e4cf"]
- 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]
- content-length: ['603']
+ cache-control: [no-cache]
+ content-length: ['648']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:16 GMT']
+ etag: [W/"5da7bb99-3f76-4f4d-9b11-c3a204031a6d"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b1d03c62-9cce-11e7-a225-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"publicip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
- ,\r\n \"etag\": \"W/\\\"f28d3e4a-ff39-4a28-8425-3b9147b3e4cf\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"publicip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
+ ,\r\n \"etag\": \"W/\\\"5da7bb99-3f76-4f4d-9b11-c3a204031a6d\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"cbcd6a6c-7218-41fd-b8cc-57a684f679b8\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"97b4a95b-5b95-4a73-991e-75650e4d83a5\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:41 GMT']
- ETag: [W/"f28d3e4a-ff39-4a28-8425-3b9147b3e4cf"]
- 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]
- content-length: ['603']
+ cache-control: [no-cache]
+ content-length: ['648']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:17 GMT']
+ etag: [W/"5da7bb99-3f76-4f4d-9b11-c3a204031a6d"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b2316d9e-9cce-11e7-98bb-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource","name":"cli_test_nic_subresource","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:42 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['238']
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001","name":"cli_test_nic_subresource000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b25724ae-9cce-11e7-ac8f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_nic_subresource%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_nic_subresource000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2017-05-10
response:
body: {string: '{"value":[]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:42 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:18 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"parameters": {}, "mode": "Incremental", "template": {"parameters":
- {}, "outputs": {"loadBalancer": {"value": "[reference(''lb1'')]", "type": "object"}},
- "contentVersion": "1.0.0.0", "resources": [{"dependsOn": [], "properties": {"publicIPAllocationMethod":
- "Dynamic"}, "apiVersion": "2017-09-01", "name": "PublicIPlb1", "type": "Microsoft.Network/publicIPAddresses",
- "sku": {"name": "Basic"}, "tags": {}, "location": "westus"}, {"dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"],
- "properties": {"frontendIPConfigurations": [{"properties": {"publicIPAddress":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
- "name": "LoadBalancerFrontEnd"}], "backendAddressPools": [{"name": "lb1bepool"}]},
- "apiVersion": "2017-09-01", "name": "lb1", "type": "Microsoft.Network/loadBalancers",
- "sku": {"name": "Basic"}, "tags": {}, "location": "westus"}], "variables": {},
- "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"}}}'
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"contentVersion":
+ "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "variables": {}, "parameters": {}, "resources": [{"tags": {}, "name": "PublicIPlb1",
+ "apiVersion": "2017-09-01", "sku": {"name": "Basic"}, "properties": {"publicIPAllocationMethod":
+ "Dynamic"}, "type": "Microsoft.Network/publicIPAddresses", "dependsOn": [],
+ "location": "westus"}, {"tags": {}, "name": "lb1", "apiVersion": "2017-09-01",
+ "sku": {"name": "Basic"}, "properties": {"backendAddressPools": [{"name": "lb1bepool"}],
+ "frontendIPConfigurations": [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
+ "name": "LoadBalancerFrontEnd"}]}, "type": "Microsoft.Network/loadBalancers",
+ "dependsOn": ["Microsoft.Network/publicIpAddresses/PublicIPlb1"], "location":
+ "westus"}], "outputs": {"loadBalancer": {"value": "[reference(\''lb1\'')]",
+ "type": "object"}}}, "parameters": {}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1100']
+ Content-Length: ['1145']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b3048bf4-9cce-11e7-9a60-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Resources/deployments/lb_deploy_qitSIsjsvFpkAwqgo8lNXfELlVJRc8S9","name":"lb_deploy_qitSIsjsvFpkAwqgo8lNXfELlVJRc8S9","properties":{"templateHash":"3585905575792711751","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:08:45.6888251Z","duration":"PT0.7238043S","correlationId":"0b2e7a68-43f3-48eb-bad4-fa318f302455","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}'}
- headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cli_test_nic_subresource/providers/Microsoft.Resources/deployments/lb_deploy_qitSIsjsvFpkAwqgo8lNXfELlVJRc8S9/operationStatuses/08586958271605126042?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['1170']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:08:44 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Resources/deployments/lb_deploy_z9iaPRQo0DgdS8IqgpKdU4SGrxDV0PWB","name":"lb_deploy_z9iaPRQo0DgdS8IqgpKdU4SGrxDV0PWB","properties":{"templateHash":"15437082496746131176","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T22:11:20.2018653Z","duration":"PT0.599723S","correlationId":"0fc6f5ac-6281-4633-971e-8db4858251ee","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001/providers/Microsoft.Resources/deployments/lb_deploy_z9iaPRQo0DgdS8IqgpKdU4SGrxDV0PWB/operationStatuses/08586934150058754784?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['1305']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:19 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 201, message: Created}
- request:
@@ -1348,174 +1372,174 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b3048bf4-9cce-11e7-9a60-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958271605126042?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934150058754784?api-version=2017-05-10
response:
body: {string: '{"status":"Succeeded"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:15 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['22']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [b3048bf4-9cce-11e7-9a60-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Resources/deployments/lb_deploy_qitSIsjsvFpkAwqgo8lNXfELlVJRc8S9","name":"lb_deploy_qitSIsjsvFpkAwqgo8lNXfELlVJRc8S9","properties":{"templateHash":"3585905575792711751","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:09:13.7155697Z","duration":"PT28.7505489S","correlationId":"0b2e7a68-43f3-48eb-bad4-fa318f302455","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"1fc0c039-b415-47b3-9a25-e066512faef7\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"1fc0c039-b415-47b3-9a25-e066512faef7\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:15 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['2654']
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Resources/deployments/lb_deploy_z9iaPRQo0DgdS8IqgpKdU4SGrxDV0PWB","name":"lb_deploy_z9iaPRQo0DgdS8IqgpKdU4SGrxDV0PWB","properties":{"templateHash":"15437082496746131176","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T22:11:32.0536682Z","duration":"PT12.4515259S","correlationId":"0fc6f5ac-6281-4633-971e-8db4858251ee","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"ec073910-efd2-4690-820c-d50d2e9293ab","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"f7737640-d56f-4ae3-976a-58dba078daeb\"","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"f7737640-d56f-4ae3-976a-58dba078daeb\"","properties":{"provisioningState":"Succeeded"}}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3015']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c6ba99ee-9cce-11e7-ad51-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"1fc0c039-b415-47b3-9a25-e066512faef7\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"f7737640-d56f-4ae3-976a-58dba078daeb\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"1fc0c039-b415-47b3-9a25-e066512faef7\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"f7737640-d56f-4ae3-976a-58dba078daeb\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
- : [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"1fc0c039-b415-47b3-9a25-e066512faef7\\\"\"\
+ : [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"f7737640-d56f-4ae3-976a-58dba078daeb\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\"\
: [],\r\n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\"\
: \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:16 GMT']
- ETag: [W/"1fc0c039-b415-47b3-9a25-e066512faef7"]
- 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]
- content-length: ['1766']
+ cache-control: [no-cache]
+ content-length: ['1946']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11:51 GMT']
+ etag: [W/"f7737640-d56f-4ae3-976a-58dba078daeb"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"probes": [], "provisioningState": "Succeeded", "resourceGuid":
- "7d36d94a-d7f1-4ec1-8a79-ae7a82283f57", "inboundNatRules": [{"properties": {"backendPort":
- 100, "enableFloatingIP": false, "frontendIPConfiguration": {"properties": {"provisioningState":
- "Succeeded", "privateIPAllocationMethod": "Dynamic", "publicIPAddress": {"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\"1fc0c039-b415-47b3-9a25-e066512faef7\"", "name": "LoadBalancerFrontEnd"},
- "protocol": "Tcp", "frontendPort": 100}, "name": "rule1"}], "outboundNatRules":
- [], "backendAddressPools": [{"properties": {"provisioningState": "Succeeded"},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool",
- "etag": "W/\"1fc0c039-b415-47b3-9a25-e066512faef7\"", "name": "lb1bepool"}],
- "inboundNatPools": [], "frontendIPConfigurations": [{"properties": {"provisioningState":
- "Succeeded", "privateIPAllocationMethod": "Dynamic", "publicIPAddress": {"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\"1fc0c039-b415-47b3-9a25-e066512faef7\"", "name": "LoadBalancerFrontEnd"}],
- "loadBalancingRules": []}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1",
- "location": "westus", "tags": {}, "sku": {"name": "Basic"}, "etag": "W/\"1fc0c039-b415-47b3-9a25-e066512faef7\""}'
+ body: 'b''{"etag": "W/\\"f7737640-d56f-4ae3-976a-58dba078daeb\\"", "tags": {},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1",
+ "sku": {"name": "Basic"}, "properties": {"provisioningState": "Succeeded", "frontendIPConfigurations":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
+ "etag": "W/\\"f7737640-d56f-4ae3-976a-58dba078daeb\\"", "properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic"}, "name":
+ "LoadBalancerFrontEnd"}], "inboundNatPools": [], "resourceGuid": "ec073910-efd2-4690-820c-d50d2e9293ab",
+ "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool",
+ "etag": "W/\\"f7737640-d56f-4ae3-976a-58dba078daeb\\"", "properties": {"provisioningState":
+ "Succeeded"}, "name": "lb1bepool"}], "probes": [], "outboundNatRules": [], "loadBalancingRules":
+ [], "inboundNatRules": [{"properties": {"backendPort": 100, "enableFloatingIP":
+ false, "protocol": "Tcp", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
+ "etag": "W/\\"f7737640-d56f-4ae3-976a-58dba078daeb\\"", "properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic"}, "name":
+ "LoadBalancerFrontEnd"}, "frontendPort": 100}, "name": "rule1"}]}, "location":
+ "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['2121']
+ Content-Length: ['2391']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c717491a-9cce-11e7-89ca-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/c30a5c74-9558-4917-b110-629b0e268814?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09: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]
- content-length: ['2842']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4cc37808-a20e-4272-92b7-4b642930b9fe?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['3157']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:11: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-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
@@ -1523,2550 +1547,2618 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c717491a-9cce-11e7-89ca-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c30a5c74-9558-4917-b110-629b0e268814?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4cc37808-a20e-4272-92b7-4b642930b9fe?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [c717491a-9cce-11e7-89ca-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:48 GMT']
- ETag: [W/"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb"]
- 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]
- content-length: ['2842']
+ cache-control: [no-cache]
+ content-length: ['3157']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12:22 GMT']
+ etag: [W/"ea5121a0-a24c-44ad-9afa-d3a59d3bb201"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [d9b21f9a-9cce-11e7-bcd4-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09:48 GMT']
- ETag: [W/"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb"]
- 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]
- content-length: ['2842']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"probes": [], "provisioningState": "Succeeded", "resourceGuid":
- "7d36d94a-d7f1-4ec1-8a79-ae7a82283f57", "inboundNatRules": [{"properties": {"provisioningState":
- "Succeeded", "frontendIPConfiguration": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "frontendPort": 100, "backendPort": 100, "enableFloatingIP": false, "idleTimeoutInMinutes":
- 4, "protocol": "Tcp"}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1",
- "etag": "W/\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\"", "name": "rule1"}, {"properties":
- {"backendPort": 200, "enableFloatingIP": false, "frontendIPConfiguration": {"properties":
- {"provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "publicIPAddress":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\"", "name": "LoadBalancerFrontEnd"},
- "protocol": "Tcp", "frontendPort": 200}, "name": "rule2"}], "outboundNatRules":
- [], "backendAddressPools": [{"properties": {"provisioningState": "Succeeded"},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool",
- "etag": "W/\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\"", "name": "lb1bepool"}],
- "inboundNatPools": [], "frontendIPConfigurations": [{"properties": {"provisioningState":
- "Succeeded", "privateIPAllocationMethod": "Dynamic", "publicIPAddress": {"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\"", "name": "LoadBalancerFrontEnd"}],
- "loadBalancingRules": []}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1",
- "location": "westus", "tags": {}, "sku": {"name": "Basic"}, "etag": "W/\"d6b26daa-2dd8-4808-8f45-2daad9d1bbeb\""}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['2761']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [d9d69df4-9cce-11e7-83c4-a0b3ccf7272a]
+ cache-control: [no-cache]
+ content-length: ['3157']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12:22 GMT']
+ etag: [W/"ea5121a0-a24c-44ad-9afa-d3a59d3bb201"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"etag": "W/\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\"", "tags": {},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1",
+ "sku": {"name": "Basic"}, "properties": {"provisioningState": "Succeeded", "frontendIPConfigurations":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
+ "etag": "W/\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\"", "properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic"}, "name":
+ "LoadBalancerFrontEnd"}], "inboundNatPools": [], "resourceGuid": "ec073910-efd2-4690-820c-d50d2e9293ab",
+ "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool",
+ "etag": "W/\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\"", "properties": {"provisioningState":
+ "Succeeded"}, "name": "lb1bepool"}], "probes": [], "outboundNatRules": [], "loadBalancingRules":
+ [], "inboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1",
+ "etag": "W/\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\"", "properties": {"provisioningState":
+ "Succeeded", "idleTimeoutInMinutes": 4, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "frontendPort": 100, "backendPort": 100, "enableFloatingIP": false, "protocol":
+ "Tcp"}, "name": "rule1"}, {"properties": {"backendPort": 200, "enableFloatingIP":
+ false, "protocol": "Tcp", "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
+ "etag": "W/\\"ea5121a0-a24c-44ad-9afa-d3a59d3bb201\\"", "properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic"}, "name":
+ "LoadBalancerFrontEnd"}, "frontendPort": 200}, "name": "rule2"}]}, "location":
+ "westus"}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['3121']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/80556f07-0c6c-47d9-aa5c-e4e62af06582?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:09: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]
- content-length: ['3868']
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bfbb3182-8643-44ac-b779-27396d034870?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['4318']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12:23 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-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [d9d69df4-9cce-11e7-83c4-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/80556f07-0c6c-47d9-aa5c-e4e62af06582?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bfbb3182-8643-44ac-b779-27396d034870?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12:53 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [d9d69df4-9cce-11e7-83c4-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:18 GMT']
- ETag: [W/"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00"]
- 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]
- content-length: ['3868']
+ cache-control: [no-cache]
+ content-length: ['4318']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12:53 GMT']
+ etag: [W/"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ec50d412-9cce-11e7-89d7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:19 GMT']
- ETag: [W/"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00"]
- 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]
- content-length: ['3868']
+ cache-control: [no-cache]
+ content-length: ['4318']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12:53 GMT']
+ etag: [W/"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ec7a5c62-9cce-11e7-8dac-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:19 GMT']
- ETag: [W/"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00"]
- 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]
- content-length: ['3868']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"probes": [], "provisioningState": "Succeeded", "resourceGuid":
- "7d36d94a-d7f1-4ec1-8a79-ae7a82283f57", "inboundNatRules": [{"properties": {"provisioningState":
- "Succeeded", "frontendIPConfiguration": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "frontendPort": 100, "backendPort": 100, "enableFloatingIP": false, "idleTimeoutInMinutes":
- 4, "protocol": "Tcp"}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1",
- "etag": "W/\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\"", "name": "rule1"}, {"properties":
- {"provisioningState": "Succeeded", "frontendIPConfiguration": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "frontendPort": 200, "backendPort": 200, "enableFloatingIP": false, "idleTimeoutInMinutes":
- 4, "protocol": "Tcp"}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2",
- "etag": "W/\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\"", "name": "rule2"}], "outboundNatRules":
- [], "backendAddressPools": [{"properties": {"provisioningState": "Succeeded"},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool",
- "etag": "W/\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\"", "name": "lb1bepool"},
- {"name": "bap1"}], "inboundNatPools": [], "frontendIPConfigurations": [{"properties":
- {"provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "publicIPAddress":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\"", "name": "LoadBalancerFrontEnd"}],
- "loadBalancingRules": []}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1",
- "location": "westus", "tags": {}, "sku": {"name": "Basic"}, "etag": "W/\"e26b815d-9be8-49a6-8ba1-7c14ad9c8e00\""}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['2707']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ec9da20a-9cce-11e7-b25f-a0b3ccf7272a]
+ cache-control: [no-cache]
+ content-length: ['4318']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12:54 GMT']
+ etag: [W/"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"etag": "W/\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\"", "tags": {},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1",
+ "sku": {"name": "Basic"}, "properties": {"provisioningState": "Succeeded", "frontendIPConfigurations":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
+ "etag": "W/\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\"", "properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic"}, "name":
+ "LoadBalancerFrontEnd"}], "inboundNatPools": [], "resourceGuid": "ec073910-efd2-4690-820c-d50d2e9293ab",
+ "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool",
+ "etag": "W/\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\"", "properties": {"provisioningState":
+ "Succeeded"}, "name": "lb1bepool"}, {"name": "bap1"}], "probes": [], "outboundNatRules":
+ [], "loadBalancingRules": [], "inboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1",
+ "etag": "W/\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\"", "properties": {"provisioningState":
+ "Succeeded", "idleTimeoutInMinutes": 4, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "frontendPort": 100, "backendPort": 100, "enableFloatingIP": false, "protocol":
+ "Tcp"}, "name": "rule1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2",
+ "etag": "W/\\"416f221d-4d62-4a8d-9a1b-1d9e2ab3466c\\"", "properties": {"provisioningState":
+ "Succeeded", "idleTimeoutInMinutes": 4, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "frontendPort": 200, "backendPort": 200, "enableFloatingIP": false, "protocol":
+ "Tcp"}, "name": "rule2"}]}, "location": "westus"}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['3067']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/c06c7a8b-14eb-461a-a1dd-6042ed4778b9?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10: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]
- content-length: ['4242']
- x-ms-ratelimit-remaining-subscription-writes: ['1191']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bfe581d-3b91-45eb-bfa5-6b0edba00de0?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['4737']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:12: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-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ec9da20a-9cce-11e7-b25f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c06c7a8b-14eb-461a-a1dd-6042ed4778b9?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bfe581d-3b91-45eb-bfa5-6b0edba00de0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13:25 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ec9da20a-9cce-11e7-b25f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:50 GMT']
- ETag: [W/"e2013ccb-9763-4022-a458-acad2f72a3ab"]
- 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]
- content-length: ['4242']
+ cache-control: [no-cache]
+ content-length: ['4737']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13:26 GMT']
+ etag: [W/"30afe038-07af-4990-98d4-d87646f0fd56"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [fefb6ac2-9cce-11e7-a924-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"e2013ccb-9763-4022-a458-acad2f72a3ab\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"30afe038-07af-4990-98d4-d87646f0fd56\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10:51 GMT']
- ETag: [W/"e2013ccb-9763-4022-a458-acad2f72a3ab"]
- 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]
- content-length: ['4242']
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"probes": [], "provisioningState": "Succeeded", "resourceGuid":
- "7d36d94a-d7f1-4ec1-8a79-ae7a82283f57", "inboundNatRules": [{"properties": {"provisioningState":
- "Succeeded", "frontendIPConfiguration": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "frontendPort": 100, "backendPort": 100, "enableFloatingIP": false, "idleTimeoutInMinutes":
- 4, "protocol": "Tcp"}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1",
- "etag": "W/\"e2013ccb-9763-4022-a458-acad2f72a3ab\"", "name": "rule1"}, {"properties":
- {"provisioningState": "Succeeded", "frontendIPConfiguration": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
- "frontendPort": 200, "backendPort": 200, "enableFloatingIP": false, "idleTimeoutInMinutes":
- 4, "protocol": "Tcp"}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2",
- "etag": "W/\"e2013ccb-9763-4022-a458-acad2f72a3ab\"", "name": "rule2"}], "outboundNatRules":
- [], "backendAddressPools": [{"properties": {"provisioningState": "Succeeded"},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool",
- "etag": "W/\"e2013ccb-9763-4022-a458-acad2f72a3ab\"", "name": "lb1bepool"},
- {"properties": {"provisioningState": "Succeeded"}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1",
- "etag": "W/\"e2013ccb-9763-4022-a458-acad2f72a3ab\"", "name": "bap1"}, {"name":
- "bap2"}], "inboundNatPools": [], "frontendIPConfigurations": [{"properties":
- {"provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "publicIPAddress":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
- "etag": "W/\"e2013ccb-9763-4022-a458-acad2f72a3ab\"", "name": "LoadBalancerFrontEnd"}],
- "loadBalancingRules": []}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1",
- "location": "westus", "tags": {}, "sku": {"name": "Basic"}, "etag": "W/\"e2013ccb-9763-4022-a458-acad2f72a3ab\""}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- Connection: [keep-alive]
- Content-Length: ['3007']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
- accept-language: [en-US]
- x-ms-client-request-id: [ff239340-9cce-11e7-833a-a0b3ccf7272a]
+ cache-control: [no-cache]
+ content-length: ['4737']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13:26 GMT']
+ etag: [W/"30afe038-07af-4990-98d4-d87646f0fd56"]
+ 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]
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"etag": "W/\\"30afe038-07af-4990-98d4-d87646f0fd56\\"", "tags": {},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1",
+ "sku": {"name": "Basic"}, "properties": {"provisioningState": "Succeeded", "frontendIPConfigurations":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd",
+ "etag": "W/\\"30afe038-07af-4990-98d4-d87646f0fd56\\"", "properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic"}, "name":
+ "LoadBalancerFrontEnd"}], "inboundNatPools": [], "resourceGuid": "ec073910-efd2-4690-820c-d50d2e9293ab",
+ "backendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool",
+ "etag": "W/\\"30afe038-07af-4990-98d4-d87646f0fd56\\"", "properties": {"provisioningState":
+ "Succeeded"}, "name": "lb1bepool"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1",
+ "etag": "W/\\"30afe038-07af-4990-98d4-d87646f0fd56\\"", "properties": {"provisioningState":
+ "Succeeded"}, "name": "bap1"}, {"name": "bap2"}], "probes": [], "outboundNatRules":
+ [], "loadBalancingRules": [], "inboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1",
+ "etag": "W/\\"30afe038-07af-4990-98d4-d87646f0fd56\\"", "properties": {"provisioningState":
+ "Succeeded", "idleTimeoutInMinutes": 4, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "frontendPort": 100, "backendPort": 100, "enableFloatingIP": false, "protocol":
+ "Tcp"}, "name": "rule1"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2",
+ "etag": "W/\\"30afe038-07af-4990-98d4-d87646f0fd56\\"", "properties": {"provisioningState":
+ "Succeeded", "idleTimeoutInMinutes": 4, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd"},
+ "frontendPort": 200, "backendPort": 200, "enableFloatingIP": false, "protocol":
+ "Tcp"}, "name": "rule2"}]}, "location": "westus"}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['3412']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/740ad937-f2cc-4853-a2db-60c2b66ffccc?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:10: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]
- content-length: ['4616']
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9964fe7a-385e-48e5-8173-5cced6e3d4b9?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['5156']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ff239340-9cce-11e7-833a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/740ad937-f2cc-4853-a2db-60c2b66ffccc?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9964fe7a-385e-48e5-8173-5cced6e3d4b9?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [ff239340-9cce-11e7-833a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:22 GMT']
- ETag: [W/"744d6782-b9d4-44ad-a507-3078cf2a38a2"]
- 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]
- content-length: ['4616']
+ cache-control: [no-cache]
+ content-length: ['5156']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13:57 GMT']
+ etag: [W/"216419b7-e8fb-4dd2-8a15-02419b6a65c7"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1194d168-9ccf-11e7-91d7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"7d36d94a-d7f1-4ec1-8a79-ae7a82283f57\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ec073910-efd2-4690-820c-d50d2e9293ab\"\
,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"\
- LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\
\r\n },\r\n \"inboundNatRules\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bap2\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [\r\n {\r\n \"\
- name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 100,\r\n \"backendPort\"\
: 100,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- ,\r\n \"etag\": \"W/\\\"744d6782-b9d4-44ad-a507-3078cf2a38a2\\\"\"\
+ \ {\r\n \"name\": \"rule2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ ,\r\n \"etag\": \"W/\\\"216419b7-e8fb-4dd2-8a15-02419b6a65c7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
+ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\
\r\n },\r\n \"frontendPort\": 200,\r\n \"backendPort\"\
: 200,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\
\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n },\r\n\
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:22 GMT']
- ETag: [W/"744d6782-b9d4-44ad-a507-3078cf2a38a2"]
- 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]
- content-length: ['4616']
+ cache-control: [no-cache]
+ content-length: ['5156']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13:57 GMT']
+ etag: [W/"216419b7-e8fb-4dd2-8a15-02419b6a65c7"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [11b5f3c8-9ccf-11e7-857f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"3ba2aab3-4d5c-4d72-902f-a20e77a0f401\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"ae685ff8-4423-4ca8-b559-566cca6f9cdf\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"3ba2aab3-4d5c-4d72-902f-a20e77a0f401\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"ae685ff8-4423-4ca8-b559-566cca6f9cdf\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\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\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:22 GMT']
- ETag: [W/"3ba2aab3-4d5c-4d72-902f-a20e77a0f401"]
- 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]
- content-length: ['1502']
+ cache-control: [no-cache]
+ content-length: ['1637']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13:59 GMT']
+ etag: [W/"ae685ff8-4423-4ca8-b559-566cca6f9cdf"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": [{"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"}],
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "static", "privateIPAddress":
- "10.0.0.15", "privateIPAddressVersion": "IPv4", "primary": true, "loadBalancerBackendAddressPools":
- [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}]},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"3ba2aab3-4d5c-4d72-902f-a20e77a0f401\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"3ba2aab3-4d5c-4d72-902f-a20e77a0f401\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"ae685ff8-4423-4ca8-b559-566cca6f9cdf\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"ae685ff8-4423-4ca8-b559-566cca6f9cdf\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"}],
+ "primary": true, "privateIPAddress": "10.0.0.15", "loadBalancerBackendAddressPools":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}],
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "static"}, "name":
+ "ipconfig1"}], "dnsSettings": {"dnsServers": [], "internalDomainNameSuffix":
+ "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net", "appliedDnsServers":
+ []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926", "enableAcceleratedNetworking":
+ false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1977']
+ Content-Length: ['2292']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [11d652b4-9ccf-11e7-a1f8-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"de3a1dfd-a474-4f09-bc5f-bb325492e09b\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"34cfc001-de81-4328-bc4a-76059502dc68\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"de3a1dfd-a474-4f09-bc5f-bb325492e09b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"34cfc001-de81-4328-bc4a-76059502dc68\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5da9c3b7-eed0-44c4-a8ef-78fa1ef796e9?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['2506']
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f7cdae1-973d-4a3f-ba4f-1a04cc3b3ec2?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:13:59 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-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [11d652b4-9ccf-11e7-a1f8-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5da9c3b7-eed0-44c4-a8ef-78fa1ef796e9?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f7cdae1-973d-4a3f-ba4f-1a04cc3b3ec2?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:53 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:14:29 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [11d652b4-9ccf-11e7-a1f8-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"de3a1dfd-a474-4f09-bc5f-bb325492e09b\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"34cfc001-de81-4328-bc4a-76059502dc68\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"de3a1dfd-a474-4f09-bc5f-bb325492e09b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"34cfc001-de81-4328-bc4a-76059502dc68\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:53 GMT']
- ETag: [W/"de3a1dfd-a474-4f09-bc5f-bb325492e09b"]
- 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]
- content-length: ['2506']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:14:29 GMT']
+ etag: [W/"34cfc001-de81-4328-bc4a-76059502dc68"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [245614d8-9ccf-11e7-ac85-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"de3a1dfd-a474-4f09-bc5f-bb325492e09b\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"34cfc001-de81-4328-bc4a-76059502dc68\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"de3a1dfd-a474-4f09-bc5f-bb325492e09b\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"34cfc001-de81-4328-bc4a-76059502dc68\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.15\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:53 GMT']
- ETag: [W/"de3a1dfd-a474-4f09-bc5f-bb325492e09b"]
- 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]
- content-length: ['2506']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:14:30 GMT']
+ etag: [W/"34cfc001-de81-4328-bc4a-76059502dc68"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": [{"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"}],
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static", "privateIPAddress":
- "10.0.0.50", "privateIPAddressVersion": "IPv4", "primary": true, "loadBalancerBackendAddressPools":
- [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}]},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"de3a1dfd-a474-4f09-bc5f-bb325492e09b\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"de3a1dfd-a474-4f09-bc5f-bb325492e09b\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"34cfc001-de81-4328-bc4a-76059502dc68\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"34cfc001-de81-4328-bc4a-76059502dc68\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"}],
+ "primary": true, "privateIPAddress": "10.0.0.50", "loadBalancerBackendAddressPools":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}],
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static"}, "name":
+ "ipconfig1"}], "dnsSettings": {"dnsServers": [], "internalDomainNameSuffix":
+ "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net", "appliedDnsServers":
+ []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926", "enableAcceleratedNetworking":
+ false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1977']
+ Content-Length: ['2292']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [247a9338-9ccf-11e7-a21c-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"0b9d0dfd-2165-480f-8097-5710e73550c5\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"0b9d0dfd-2165-480f-8097-5710e73550c5\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/08c13c89-2d76-4094-becf-694dbd50e0f7?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:11:54 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]
- content-length: ['2506']
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d91b7934-e429-41b2-b588-54c23be7a73a?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:14:31 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-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [247a9338-9ccf-11e7-a21c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08c13c89-2d76-4094-becf-694dbd50e0f7?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d91b7934-e429-41b2-b588-54c23be7a73a?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:24 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:15:01 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [247a9338-9ccf-11e7-a21c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"0b9d0dfd-2165-480f-8097-5710e73550c5\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"0b9d0dfd-2165-480f-8097-5710e73550c5\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:24 GMT']
- ETag: [W/"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc"]
- 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]
- content-length: ['2506']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:15:01 GMT']
+ etag: [W/"0b9d0dfd-2165-480f-8097-5710e73550c5"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [36e65db8-9ccf-11e7-a513-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"0b9d0dfd-2165-480f-8097-5710e73550c5\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"0b9d0dfd-2165-480f-8097-5710e73550c5\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:24 GMT']
- ETag: [W/"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc"]
- 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]
- content-length: ['2506']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:15:02 GMT']
+ etag: [W/"0b9d0dfd-2165-480f-8097-5710e73550c5"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": [{"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"}],
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static", "privateIPAddress":
- "10.0.0.50", "privateIPAddressVersion": "IPv4", "primary": true, "loadBalancerBackendAddressPools":
- [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}]},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"bcc5e52f-00fa-4a6f-8edf-45dbae7584fc\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"0b9d0dfd-2165-480f-8097-5710e73550c5\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"0b9d0dfd-2165-480f-8097-5710e73550c5\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"}],
+ "primary": true, "privateIPAddress": "10.0.0.50", "loadBalancerBackendAddressPools":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}],
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static"}, "name":
+ "ipconfig1"}], "dnsSettings": {"dnsServers": [], "internalDomainNameSuffix":
+ "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net", "appliedDnsServers":
+ []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926", "enableAcceleratedNetworking":
+ false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1800']
+ Content-Length: ['2070']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [37100d12-9ccf-11e7-8c20-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"2e5a4a01-7a51-4220-b0b7-69bbdee20410\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"b7889210-cfb2-4554-ae8e-87fdc4ce8a30\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"2e5a4a01-7a51-4220-b0b7-69bbdee20410\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"b7889210-cfb2-4554-ae8e-87fdc4ce8a30\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/284e7f6c-294f-4c32-94d9-73b3441556f1?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:25 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]
- content-length: ['2286']
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6e49cda-2f84-418b-b7f2-20097975a90b?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['2556']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:15: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-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [37100d12-9ccf-11e7-8c20-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/284e7f6c-294f-4c32-94d9-73b3441556f1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6e49cda-2f84-418b-b7f2-20097975a90b?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ body: {string: '{"error":{"code":"MultipleErrorsOccurred","message":"Multiple
+ error occurred: . Please see details.","details":[{"code":"ServerTimeout","message":"The
+ request timed out. Diagnostic information: timestamp ''20171016T221610Z'',
+ subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''fa6b12e9-bc40-4098-8062-5ebd623bcc28'',
+ request correlation id ''fa6b12e9-bc40-4098-8062-5ebd623bcc28''."},{"code":"ServerTimeout","message":"The
+ request timed out. Diagnostic information: timestamp ''20171016T221610Z'',
+ subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''fa6b12e9-bc40-4098-8062-5ebd623bcc28'',
+ request correlation id ''fa6b12e9-bc40-4098-8062-5ebd623bcc28''."},{"code":"ServerTimeout","message":"The
+ request timed out. Diagnostic information: timestamp ''20171016T221610Z'',
+ subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''fa6b12e9-bc40-4098-8062-5ebd623bcc28'',
+ request correlation id ''fa6b12e9-bc40-4098-8062-5ebd623bcc28''."},{"code":"ServerTimeout","message":"The
+ request timed out. Diagnostic information: timestamp ''20171016T221610Z'',
+ subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''fa6b12e9-bc40-4098-8062-5ebd623bcc28'',
+ request correlation id ''fa6b12e9-bc40-4098-8062-5ebd623bcc28''."}]}}'}
+ headers:
+ cache-control: [no-cache]
+ connection: [close]
+ content-length: ['1254']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:16:36 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-failure-cause: [gateway]
+ status: {code: 500, message: Internal Server Error}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12: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]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6e49cda-2f84-418b-b7f2-20097975a90b?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:16: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [37100d12-9ccf-11e7-8c20-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"2e5a4a01-7a51-4220-b0b7-69bbdee20410\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"b7889210-cfb2-4554-ae8e-87fdc4ce8a30\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"2e5a4a01-7a51-4220-b0b7-69bbdee20410\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"b7889210-cfb2-4554-ae8e-87fdc4ce8a30\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:55 GMT']
- ETag: [W/"2e5a4a01-7a51-4220-b0b7-69bbdee20410"]
- 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]
- content-length: ['2286']
+ cache-control: [no-cache]
+ content-length: ['2556']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:16:36 GMT']
+ etag: [W/"b7889210-cfb2-4554-ae8e-87fdc4ce8a30"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4966259c-9ccf-11e7-8ee7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"2e5a4a01-7a51-4220-b0b7-69bbdee20410\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"b7889210-cfb2-4554-ae8e-87fdc4ce8a30\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"2e5a4a01-7a51-4220-b0b7-69bbdee20410\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"b7889210-cfb2-4554-ae8e-87fdc4ce8a30\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:55 GMT']
- ETag: [W/"2e5a4a01-7a51-4220-b0b7-69bbdee20410"]
- 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]
- content-length: ['2286']
+ cache-control: [no-cache]
+ content-length: ['2556']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:16:37 GMT']
+ etag: [W/"b7889210-cfb2-4554-ae8e-87fdc4ce8a30"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": [{"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static", "privateIPAddress":
- "10.0.0.50", "privateIPAddressVersion": "IPv4", "primary": true, "loadBalancerBackendAddressPools":
- [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}]},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"2e5a4a01-7a51-4220-b0b7-69bbdee20410\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"2e5a4a01-7a51-4220-b0b7-69bbdee20410\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"b7889210-cfb2-4554-ae8e-87fdc4ce8a30\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"b7889210-cfb2-4554-ae8e-87fdc4ce8a30\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
+ "primary": true, "privateIPAddress": "10.0.0.50", "loadBalancerBackendAddressPools":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}],
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static"}, "name":
+ "ipconfig1"}], "dnsSettings": {"dnsServers": [], "internalDomainNameSuffix":
+ "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net", "appliedDnsServers":
+ []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926", "enableAcceleratedNetworking":
+ false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1977']
+ Content-Length: ['2292']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [498b8e78-9ccf-11e7-ac8d-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"01e5409e-102d-4e5f-a84d-747e67d260f2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"3592bf3e-1062-4616-acd6-55d1e8f105b8\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"01e5409e-102d-4e5f-a84d-747e67d260f2\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"3592bf3e-1062-4616-acd6-55d1e8f105b8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/28b5f668-9d39-4c77-b3f3-124b7fce256f?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:12:56 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]
- content-length: ['2506']
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6f6fcec0-3ce6-4723-8f34-20408450482b?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:16: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-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [498b8e78-9ccf-11e7-ac8d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/28b5f668-9d39-4c77-b3f3-124b7fce256f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6f6fcec0-3ce6-4723-8f34-20408450482b?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:26 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:17:07 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [498b8e78-9ccf-11e7-ac8d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"01e5409e-102d-4e5f-a84d-747e67d260f2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"3592bf3e-1062-4616-acd6-55d1e8f105b8\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"01e5409e-102d-4e5f-a84d-747e67d260f2\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"3592bf3e-1062-4616-acd6-55d1e8f105b8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:26 GMT']
- ETag: [W/"01e5409e-102d-4e5f-a84d-747e67d260f2"]
- 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]
- content-length: ['2506']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:17:07 GMT']
+ etag: [W/"3592bf3e-1062-4616-acd6-55d1e8f105b8"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5c047662-9ccf-11e7-bcea-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"01e5409e-102d-4e5f-a84d-747e67d260f2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"3592bf3e-1062-4616-acd6-55d1e8f105b8\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"01e5409e-102d-4e5f-a84d-747e67d260f2\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"3592bf3e-1062-4616-acd6-55d1e8f105b8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:27 GMT']
- ETag: [W/"01e5409e-102d-4e5f-a84d-747e67d260f2"]
- 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]
- content-length: ['2506']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:17:08 GMT']
+ etag: [W/"3592bf3e-1062-4616-acd6-55d1e8f105b8"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": [{"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static", "privateIPAddress":
- "10.0.0.50", "privateIPAddressVersion": "IPv4", "primary": true, "loadBalancerBackendAddressPools":
- [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}]},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"01e5409e-102d-4e5f-a84d-747e67d260f2\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"01e5409e-102d-4e5f-a84d-747e67d260f2\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"3592bf3e-1062-4616-acd6-55d1e8f105b8\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"3592bf3e-1062-4616-acd6-55d1e8f105b8\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
+ "primary": true, "privateIPAddress": "10.0.0.50", "loadBalancerBackendAddressPools":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"}],
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static"}, "name":
+ "ipconfig1"}], "dnsSettings": {"dnsServers": [], "internalDomainNameSuffix":
+ "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net", "appliedDnsServers":
+ []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926", "enableAcceleratedNetworking":
+ false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1797']
+ Content-Length: ['2067']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5c46941c-9ccf-11e7-921c-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"86166bb1-4d9e-4deb-92e8-f366b1e50ddb\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"438b99c2-7569-47d2-b0c7-d671713fa3e3\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"86166bb1-4d9e-4deb-92e8-f366b1e50ddb\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"438b99c2-7569-47d2-b0c7-d671713fa3e3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/478b6a99-6fa7-48ec-93ad-c62473ad2c34?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['2283']
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86ad307b-ca28-42cc-bc1f-c06ffce62ec1?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['2553']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:17:09 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-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5c46941c-9ccf-11e7-921c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/478b6a99-6fa7-48ec-93ad-c62473ad2c34?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86ad307b-ca28-42cc-bc1f-c06ffce62ec1?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:17:39 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5c46941c-9ccf-11e7-921c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"86166bb1-4d9e-4deb-92e8-f366b1e50ddb\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"438b99c2-7569-47d2-b0c7-d671713fa3e3\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"86166bb1-4d9e-4deb-92e8-f366b1e50ddb\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"438b99c2-7569-47d2-b0c7-d671713fa3e3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:58 GMT']
- ETag: [W/"86166bb1-4d9e-4deb-92e8-f366b1e50ddb"]
- 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]
- content-length: ['2283']
+ cache-control: [no-cache]
+ content-length: ['2553']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:17:39 GMT']
+ etag: [W/"438b99c2-7569-47d2-b0c7-d671713fa3e3"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [6eb4ee0c-9ccf-11e7-9ba3-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"86166bb1-4d9e-4deb-92e8-f366b1e50ddb\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"438b99c2-7569-47d2-b0c7-d671713fa3e3\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"86166bb1-4d9e-4deb-92e8-f366b1e50ddb\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"438b99c2-7569-47d2-b0c7-d671713fa3e3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13:58 GMT']
- ETag: [W/"86166bb1-4d9e-4deb-92e8-f366b1e50ddb"]
- 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]
- content-length: ['2283']
+ cache-control: [no-cache]
+ content-length: ['2553']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:17:39 GMT']
+ etag: [W/"438b99c2-7569-47d2-b0c7-d671713fa3e3"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": [{"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static", "privateIPAddress":
- "10.0.0.50", "privateIPAddressVersion": "IPv4", "primary": true, "loadBalancerBackendAddressPools":
- [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"}]},
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"86166bb1-4d9e-4deb-92e8-f366b1e50ddb\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"86166bb1-4d9e-4deb-92e8-f366b1e50ddb\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"438b99c2-7569-47d2-b0c7-d671713fa3e3\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"438b99c2-7569-47d2-b0c7-d671713fa3e3\\"", "properties": {"privateIPAddressVersion":
+ "IPv4", "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
+ "primary": true, "privateIPAddress": "10.0.0.50", "loadBalancerBackendAddressPools":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"}],
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "provisioningState": "Succeeded", "privateIPAllocationMethod": "Static"}, "name":
+ "ipconfig1"}], "dnsSettings": {"dnsServers": [], "internalDomainNameSuffix":
+ "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net", "appliedDnsServers":
+ []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926", "enableAcceleratedNetworking":
+ false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['1977']
+ Content-Length: ['2292']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [6eeaad7a-9ccf-11e7-ae6b-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"71d85e3b-ac1f-40ed-ba93-f07adefd35c6\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"0019d7f9-fe44-4975-ad9b-7c78290b8ab4\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"71d85e3b-ac1f-40ed-ba93-f07adefd35c6\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"0019d7f9-fe44-4975-ad9b-7c78290b8ab4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/14a3c8c8-8ad6-4fa3-b7e4-6de3245fb078?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:13: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]
- content-length: ['2506']
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7506d8d8-f614-434d-9467-8a77b67def99?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:17:41 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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [6eeaad7a-9ccf-11e7-ae6b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/14a3c8c8-8ad6-4fa3-b7e4-6de3245fb078?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7506d8d8-f614-434d-9467-8a77b67def99?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:29 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:18: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [6eeaad7a-9ccf-11e7-ae6b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"71d85e3b-ac1f-40ed-ba93-f07adefd35c6\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"0019d7f9-fe44-4975-ad9b-7c78290b8ab4\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"71d85e3b-ac1f-40ed-ba93-f07adefd35c6\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"0019d7f9-fe44-4975-ad9b-7c78290b8ab4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:29 GMT']
- ETag: [W/"71d85e3b-ac1f-40ed-ba93-f07adefd35c6"]
- 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]
- content-length: ['2506']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:18:11 GMT']
+ etag: [W/"0019d7f9-fe44-4975-ad9b-7c78290b8ab4"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [8178c8c0-9ccf-11e7-862b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"71d85e3b-ac1f-40ed-ba93-f07adefd35c6\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"0019d7f9-fe44-4975-ad9b-7c78290b8ab4\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"71d85e3b-ac1f-40ed-ba93-f07adefd35c6\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"0019d7f9-fe44-4975-ad9b-7c78290b8ab4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
- : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ : \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14:30 GMT']
- ETag: [W/"71d85e3b-ac1f-40ed-ba93-f07adefd35c6"]
- 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]
- content-length: ['2506']
+ cache-control: [no-cache]
+ content-length: ['2821']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:18:11 GMT']
+ etag: [W/"0019d7f9-fe44-4975-ad9b-7c78290b8ab4"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": [{"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "dynamic", "privateIPAddressVersion":
- "ipv4", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2"},
- "loadBalancerBackendAddressPools": [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"}],
- "primary": true}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"71d85e3b-ac1f-40ed-ba93-f07adefd35c6\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"71d85e3b-ac1f-40ed-ba93-f07adefd35c6\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"0019d7f9-fe44-4975-ad9b-7c78290b8ab4\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"0019d7f9-fe44-4975-ad9b-7c78290b8ab4\\"", "properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2"},
+ "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
+ "primary": true, "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"}],
+ "privateIPAddressVersion": "ipv4", "provisioningState": "Succeeded", "privateIPAllocationMethod":
+ "dynamic"}, "name": "ipconfig1"}], "dnsSettings": {"dnsServers": [], "internalDomainNameSuffix":
+ "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net", "appliedDnsServers":
+ []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926", "enableAcceleratedNetworking":
+ false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['2129']
+ Content-Length: ['2489']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [81a6495a-9ccf-11e7-a3aa-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"4ac032d4-89c0-4251-bacb-c75e56dcd796\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"4ac032d4-89c0-4251-bacb-c75e56dcd796\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3f3c9fbd-6ed4-46bd-a6cc-6966884b6731?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:14: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]
- content-length: ['2728']
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73789635-8f4b-49d8-b872-d5c94f37bf34?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['3088']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:18:12 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-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [81a6495a-9ccf-11e7-a3aa-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3f3c9fbd-6ed4-46bd-a6cc-6966884b6731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73789635-8f4b-49d8-b872-d5c94f37bf34?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:01 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:18: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [81a6495a-9ccf-11e7-a3aa-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"4ac032d4-89c0-4251-bacb-c75e56dcd796\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"4ac032d4-89c0-4251-bacb-c75e56dcd796\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:00 GMT']
- ETag: [W/"4ac032d4-89c0-4251-bacb-c75e56dcd796"]
- 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]
- content-length: ['2728']
+ cache-control: [no-cache]
+ content-length: ['3088']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:18:42 GMT']
+ etag: [W/"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [942c272c-9ccf-11e7-8812-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"4ac032d4-89c0-4251-bacb-c75e56dcd796\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"4ac032d4-89c0-4251-bacb-c75e56dcd796\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.50\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:01 GMT']
- ETag: [W/"4ac032d4-89c0-4251-bacb-c75e56dcd796"]
- 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]
- content-length: ['2728']
+ cache-control: [no-cache]
+ content-length: ['3088']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:18:43 GMT']
+ etag: [W/"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "resourceGuid": "1469f2a1-6ee9-4905-b197-a43b07d6e283",
- "enableIPForwarding": false, "dnsSettings": {"dnsServers": [], "appliedDnsServers":
- [], "internalDomainNameSuffix": "0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net"},
- "ipConfigurations": [{"properties": {"loadBalancerInboundNatRules": [{"id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
- "subnet": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2"},
- "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "privateIPAddress":
- "10.0.0.50", "privateIPAddressVersion": "IPv4", "publicIPAddress": {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2"},
- "loadBalancerBackendAddressPools": [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"},
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"}],
- "primary": true}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
- "etag": "W/\"4ac032d4-89c0-4251-bacb-c75e56dcd796\"", "name": "ipconfig1"}],
- "enableAcceleratedNetworking": false}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1",
- "location": "westus", "etag": "W/\"4ac032d4-89c0-4251-bacb-c75e56dcd796\""}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1",
+ "etag": "W/\\"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4\\"", "properties": {"enableIPForwarding":
+ false, "provisioningState": "Succeeded", "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1",
+ "etag": "W/\\"bbc69c57-5412-4e55-a3a7-dafeb99dc1d4\\"", "properties": {"publicIPAddress":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2"},
+ "loadBalancerInboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1"}],
+ "primary": true, "privateIPAddress": "10.0.0.50", "loadBalancerBackendAddressPools":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2"},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1"}],
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2"},
+ "privateIPAddressVersion": "IPv4", "provisioningState": "Succeeded", "privateIPAllocationMethod":
+ "Dynamic"}, "name": "ipconfig1"}], "dnsSettings": {"dnsServers": [], "internalDomainNameSuffix":
+ "gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net", "appliedDnsServers":
+ []}, "resourceGuid": "4f5d5ff0-1bdf-455e-a330-36ac26be5926", "enableAcceleratedNetworking":
+ false}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['2162']
+ Content-Length: ['2522']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [94662d10-9ccf-11e7-b93d-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"552c2d02-6fec-42c6-b31d-47aa99122e0e\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"c818edf6-c4fa-425d-87e9-fae8df5697dc\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"552c2d02-6fec-42c6-b31d-47aa99122e0e\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"c818edf6-c4fa-425d-87e9-fae8df5697dc\\\"\"\
,\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_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2\"\
+ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/06dcbd2a-4be5-4eea-964f-a7614340aab4?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:01 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]
- content-length: ['2727']
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7243d30a-b08a-4369-beae-3cc6f93c4ed6?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['3087']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:18:44 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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [94662d10-9ccf-11e7-b93d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06dcbd2a-4be5-4eea-964f-a7614340aab4?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7243d30a-b08a-4369-beae-3cc6f93c4ed6?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:31 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [94662d10-9ccf-11e7-b93d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1\"\
- ,\r\n \"etag\": \"W/\\\"552c2d02-6fec-42c6-b31d-47aa99122e0e\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"nic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1\"\
+ ,\r\n \"etag\": \"W/\\\"c818edf6-c4fa-425d-87e9-fae8df5697dc\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"1469f2a1-6ee9-4905-b197-a43b07d6e283\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4f5d5ff0-1bdf-455e-a330-36ac26be5926\"\
,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
- ,\r\n \"etag\": \"W/\\\"552c2d02-6fec-42c6-b31d-47aa99122e0e\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/ipconfig1\"\
+ ,\r\n \"etag\": \"W/\\\"c818edf6-c4fa-425d-87e9-fae8df5697dc\\\"\"\
,\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_nic_subresource/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2\"\
+ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/publicIPAddresses/publicip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet2\"\
\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
: \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n \
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bap1\"\
\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\"\
- : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
+ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule2\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nic_subresource000001/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1\"\
\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \
\ \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\"\
- : [],\r\n \"internalDomainNameSuffix\": \"0t5fakeosozurmbt14e2n4r53h.dx.internal.cloudapp.net\"\
+ : [],\r\n \"internalDomainNameSuffix\": \"gwa1mvb4xrrenpke1sa0s3bq3c.dx.internal.cloudapp.net\"\
\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\
: false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n\
}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:15:31 GMT']
- ETag: [W/"552c2d02-6fec-42c6-b31d-47aa99122e0e"]
- 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]
- content-length: ['2727']
+ cache-control: [no-cache]
+ content-length: ['3087']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:19:19 GMT']
+ etag: [W/"c818edf6-c4fa-425d-87e9-fae8df5697dc"]
+ 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]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nic_subresource000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Mon, 16 Oct 2017 22:19:21 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTklDOjVGU1VCUkVTT1VSQ0VMUzVJVklMV0pHTzROVDRZT3xFRTA1MUE3RjkxRDQxQTQ2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nsg.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nsg.yaml
index 001e3b8188b..d260f5bf268 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nsg.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_nsg.yaml
@@ -1,54 +1,81 @@
interactions:
+- request:
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nsg000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001","name":"cli_test_nsg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [2e3a1dc0-9cce-11e7-b30f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nsg?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nsg000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg","name":"cli_test_nsg","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001","name":"cli_test_nsg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:01 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['214']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: '{"location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [2e4c225e-9cce-11e7-b73e-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\
- ,\r\n \"etag\": \"W/\\\"f072769e-63e5-44a1-a037-849e4d266573\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\
+ ,\r\n \"etag\": \"W/\\\"0f53d8a4-94bb-4a0d-a2be-aed9efed5985\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"32dacc55-f4b2-4fbf-9f14-8b2c8cc87980\",\r\n \
+ ,\r\n \"resourceGuid\": \"6079242a-8938-45b2-9e9d-2146d8f526a8\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
- \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"f072769e-63e5-44a1-a037-849e4d266573\\\"\"\
+ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0f53d8a4-94bb-4a0d-a2be-aed9efed5985\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -59,8 +86,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"f072769e-63e5-44a1-a037-849e4d266573\\\"\"\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0f53d8a4-94bb-4a0d-a2be-aed9efed5985\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -71,8 +98,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"f072769e-63e5-44a1-a037-849e4d266573\\\"\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0f53d8a4-94bb-4a0d-a2be-aed9efed5985\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -82,8 +109,8 @@ interactions:
: \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f072769e-63e5-44a1-a037-849e4d266573\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0f53d8a4-94bb-4a0d-a2be-aed9efed5985\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -94,8 +121,8 @@ interactions:
: [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f072769e-63e5-44a1-a037-849e4d266573\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0f53d8a4-94bb-4a0d-a2be-aed9efed5985\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -106,8 +133,8 @@ interactions:
\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f072769e-63e5-44a1-a037-849e4d266573\\\"\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0f53d8a4-94bb-4a0d-a2be-aed9efed5985\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -118,69 +145,68 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fb34741c-f322-4c91-8bec-8892db6e8cc6?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['6080']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:01 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/28a18cd9-0d30-41ef-95e0-6957d6920649?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['6479']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:35 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [2e4c225e-9cce-11e7-b73e-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fb34741c-f322-4c91-8bec-8892db6e8cc6?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/28a18cd9-0d30-41ef-95e0-6957d6920649?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:12 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:45 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [2e4c225e-9cce-11e7-b73e-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\
- ,\r\n \"etag\": \"W/\\\"f1384ba1-d319-4c2e-9f57-fd1aebd97932\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\
+ ,\r\n \"etag\": \"W/\\\"bb8ad276-5733-4563-a34f-1d483aba4cba\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"32dacc55-f4b2-4fbf-9f14-8b2c8cc87980\",\r\n \
+ ,\r\n \"resourceGuid\": \"6079242a-8938-45b2-9e9d-2146d8f526a8\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
- \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"f1384ba1-d319-4c2e-9f57-fd1aebd97932\\\"\"\
+ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\
+ ,\r\n \"etag\": \"W/\\\"bb8ad276-5733-4563-a34f-1d483aba4cba\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -191,8 +217,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"f1384ba1-d319-4c2e-9f57-fd1aebd97932\\\"\"\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
+ ,\r\n \"etag\": \"W/\\\"bb8ad276-5733-4563-a34f-1d483aba4cba\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -203,8 +229,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"f1384ba1-d319-4c2e-9f57-fd1aebd97932\\\"\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\
+ ,\r\n \"etag\": \"W/\\\"bb8ad276-5733-4563-a34f-1d483aba4cba\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -214,8 +240,8 @@ interactions:
: \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f1384ba1-d319-4c2e-9f57-fd1aebd97932\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"bb8ad276-5733-4563-a34f-1d483aba4cba\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -226,8 +252,8 @@ interactions:
: [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f1384ba1-d319-4c2e-9f57-fd1aebd97932\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"bb8ad276-5733-4563-a34f-1d483aba4cba\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -238,8 +264,8 @@ interactions:
\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f1384ba1-d319-4c2e-9f57-fd1aebd97932\\\"\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"bb8ad276-5733-4563-a34f-1d483aba4cba\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -250,38 +276,38 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:11 GMT']
- ETag: [W/"f1384ba1-d319-4c2e-9f57-fd1aebd97932"]
- 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]
- content-length: ['6087']
+ cache-control: [no-cache]
+ content-length: ['6486']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:45 GMT']
+ etag: [W/"bb8ad276-5733-4563-a34f-1d483aba4cba"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"name": "web", "properties": {"priority": 1000, "sourceAddressPrefix":
- "789", "destinationPortRange": "4444", "sourcePortRange": "*", "destinationAddressPrefix":
- "1234", "direction": "Inbound", "access": "Allow", "protocol": "*"}}'
+ body: '{"name": "web", "properties": {"sourceAddressPrefix": "789", "priority":
+ 1000, "protocol": "*", "destinationPortRange": "4444", "sourcePortRange": "*",
+ "direction": "Inbound", "destinationAddressPrefix": "1234", "access": "Allow"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['231']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [350f0e80-9cce-11e7-957c-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"8150583f-e90a-490c-83e0-e25ab17a1bed\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"3c76a761-d733-4091-a15b-d0ac46d5c440\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
: \"4444\",\r\n \"sourceAddressPrefix\": \"789\",\r\n \"destinationAddressPrefix\"\
@@ -290,63 +316,62 @@ interactions:
destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \
\ \"destinationAddressPrefixes\": []\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/6cbf16e7-04b2-4f78-b88c-cbda55884d1f?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['692']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:12 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1188']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/04c55a69-9f60-4ab7-a85c-be8e435547ab?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['749']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:47 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [350f0e80-9cce-11e7-957c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6cbf16e7-04b2-4f78-b88c-cbda55884d1f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/04c55a69-9f60-4ab7-a85c-be8e435547ab?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:23 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [350f0e80-9cce-11e7-957c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
: \"4444\",\r\n \"sourceAddressPrefix\": \"789\",\r\n \"destinationAddressPrefix\"\
@@ -355,112 +380,40 @@ interactions:
destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \
\ \"destinationAddressPrefixes\": []\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:22 GMT']
- ETag: [W/"2a08aab5-469d-4b20-8648-1dab24e28a86"]
- 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]
- content-length: ['693']
+ cache-control: [no-cache]
+ content-length: ['750']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:58 GMT']
+ etag: [W/"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3c037398-9cce-11e7-baec-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-09-01
response:
- body: {string: '{"value":[{"name":"vm2NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","etag":"W/\"44caec5f-b059-4f10-b50d-1820f4539d10\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0d032b66-50d9-4daf-b63d-b4f04f5394bb","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh","etag":"W/\"44caec5f-b059-4f10-b50d-1820f4539d10\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"44caec5f-b059-4f10-b50d-1820f4539d10\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"44caec5f-b059-4f10-b50d-1820f4539d10\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"44caec5f-b059-4f10-b50d-1820f4539d10\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"44caec5f-b059-4f10-b50d-1820f4539d10\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"44caec5f-b059-4f10-b50d-1820f4539d10\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"44caec5f-b059-4f10-b50d-1820f4539d10\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkInterfaces/vm2VMNic"}]}},{"name":"vm1NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","etag":"W/\"14b0e9e0-e350-41ca-9fb0-47946ce973b0\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ff4797a9-6bc0-4adb-857a-826b1590939c","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh","etag":"W/\"14b0e9e0-e350-41ca-9fb0-47946ce973b0\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"14b0e9e0-e350-41ca-9fb0-47946ce973b0\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"14b0e9e0-e350-41ca-9fb0-47946ce973b0\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"14b0e9e0-e350-41ca-9fb0-47946ce973b0\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"14b0e9e0-e350-41ca-9fb0-47946ce973b0\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"14b0e9e0-e350-41ca-9fb0-47946ce973b0\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"14b0e9e0-e350-41ca-9fb0-47946ce973b0\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}},{"name":"vm2NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","etag":"W/\"9f985887-5d51-4334-89b0-ff5971c34c81\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"44382c99-9819-4da5-9694-8379b942382e","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh","etag":"W/\"9f985887-5d51-4334-89b0-ff5971c34c81\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"9f985887-5d51-4334-89b0-ff5971c34c81\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"9f985887-5d51-4334-89b0-ff5971c34c81\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"9f985887-5d51-4334-89b0-ff5971c34c81\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"9f985887-5d51-4334-89b0-ff5971c34c81\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"9f985887-5d51-4334-89b0-ff5971c34c81\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"9f985887-5d51-4334-89b0-ff5971c34c81\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm2VMNic"}]}},{"name":"vm3NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","etag":"W/\"00ddd7c3-9824-461a-a412-6026822b4415\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"14168130-dd5b-44b6-8b7d-bf50db1d3d4f","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh","etag":"W/\"00ddd7c3-9824-461a-a412-6026822b4415\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"00ddd7c3-9824-461a-a412-6026822b4415\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"00ddd7c3-9824-461a-a412-6026822b4415\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"00ddd7c3-9824-461a-a412-6026822b4415\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"00ddd7c3-9824-461a-a412-6026822b4415\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"00ddd7c3-9824-461a-a412-6026822b4415\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"00ddd7c3-9824-461a-a412-6026822b4415\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"vm1NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","etag":"W/\"37e58b96-87ce-46db-ae3c-62974d980ed1\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0d84bbd8-a830-4013-b380-f006d610cd1e","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh","etag":"W/\"37e58b96-87ce-46db-ae3c-62974d980ed1\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"37e58b96-87ce-46db-ae3c-62974d980ed1\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"37e58b96-87ce-46db-ae3c-62974d980ed1\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"37e58b96-87ce-46db-ae3c-62974d980ed1\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"37e58b96-87ce-46db-ae3c-62974d980ed1\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"37e58b96-87ce-46db-ae3c-62974d980ed1\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"37e58b96-87ce-46db-ae3c-62974d980ed1\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}},{"name":"vm2NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","etag":"W/\"eb449c02-1ef7-41fa-a1bc-898a3fb2688e\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a98c2702-959f-4e22-a6a4-248d4e46f65c","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh","etag":"W/\"eb449c02-1ef7-41fa-a1bc-898a3fb2688e\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"eb449c02-1ef7-41fa-a1bc-898a3fb2688e\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"eb449c02-1ef7-41fa-a1bc-898a3fb2688e\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"eb449c02-1ef7-41fa-a1bc-898a3fb2688e\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"eb449c02-1ef7-41fa-a1bc-898a3fb2688e\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"eb449c02-1ef7-41fa-a1bc-898a3fb2688e\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"eb449c02-1ef7-41fa-a1bc-898a3fb2688e\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkInterfaces/vm2VMNic"}]}},{"name":"vm1NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","etag":"W/\"45063ed4-6dc4-4e61-ac55-3af2b00d9632\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"981d83c1-215f-40aa-85b8-fbac6063d55c","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh","etag":"W/\"45063ed4-6dc4-4e61-ac55-3af2b00d9632\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"45063ed4-6dc4-4e61-ac55-3af2b00d9632\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"45063ed4-6dc4-4e61-ac55-3af2b00d9632\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"45063ed4-6dc4-4e61-ac55-3af2b00d9632\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"45063ed4-6dc4-4e61-ac55-3af2b00d9632\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"45063ed4-6dc4-4e61-ac55-3af2b00d9632\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"45063ed4-6dc4-4e61-ac55-3af2b00d9632\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}},{"name":"vm2NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","etag":"W/\"c13933c8-581f-4983-9f20-b0f8b90a27cf\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6a5794ff-1c39-426e-ae30-b2ad9a1aceb4","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh","etag":"W/\"c13933c8-581f-4983-9f20-b0f8b90a27cf\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"c13933c8-581f-4983-9f20-b0f8b90a27cf\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"c13933c8-581f-4983-9f20-b0f8b90a27cf\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"c13933c8-581f-4983-9f20-b0f8b90a27cf\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"c13933c8-581f-4983-9f20-b0f8b90a27cf\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"c13933c8-581f-4983-9f20-b0f8b90a27cf\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"c13933c8-581f-4983-9f20-b0f8b90a27cf\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm2VMNic"}]}},{"name":"vm3NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","etag":"W/\"2b817fe0-7299-4717-a81e-7dec11d5a119\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"81a7a122-870e-4879-970e-71a5cae49a9e","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh","etag":"W/\"2b817fe0-7299-4717-a81e-7dec11d5a119\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"2b817fe0-7299-4717-a81e-7dec11d5a119\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"2b817fe0-7299-4717-a81e-7dec11d5a119\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"2b817fe0-7299-4717-a81e-7dec11d5a119\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"2b817fe0-7299-4717-a81e-7dec11d5a119\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"2b817fe0-7299-4717-a81e-7dec11d5a119\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"2b817fe0-7299-4717-a81e-7dec11d5a119\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm3VMNic"}]}},{"name":"vm1NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","etag":"W/\"eaa875e0-e908-4ea4-8001-652e64b5a40b\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"51af836b-7468-4465-bc17-49c608d2d42d","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh","etag":"W/\"eaa875e0-e908-4ea4-8001-652e64b5a40b\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"eaa875e0-e908-4ea4-8001-652e64b5a40b\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"eaa875e0-e908-4ea4-8001-652e64b5a40b\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"eaa875e0-e908-4ea4-8001-652e64b5a40b\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"eaa875e0-e908-4ea4-8001-652e64b5a40b\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"eaa875e0-e908-4ea4-8001-652e64b5a40b\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"eaa875e0-e908-4ea4-8001-652e64b5a40b\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}},{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_extended_nsgqrti67k3pf35tw76kwpruqu3uuysbumhytcslv2vpls2jixqhcubj7/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"5258c82d-8d3d-44f1-b281-0fa77ab8a68e\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"58452f24-33b0-425d-9fb8-3c0ba6c97427","securityRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_extended_nsgqrti67k3pf35tw76kwpruqu3uuysbumhytcslv2vpls2jixqhcubj7/providers/Microsoft.Network/networkSecurityGroups/nsg1/securityRules/rule1","etag":"W/\"5258c82d-8d3d-44f1-b281-0fa77ab8a68e\"","properties":{"provisioningState":"Succeeded","protocol":"*","destinationPortRange":"4444","sourceAddressPrefix":"*","destinationAddressPrefix":"","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":["700-900","1000-1100"],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":["10.0.0.0/24","11.0.0.0/24"]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_extended_nsgqrti67k3pf35tw76kwpruqu3uuysbumhytcslv2vpls2jixqhcubj7/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"5258c82d-8d3d-44f1-b281-0fa77ab8a68e\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_extended_nsgqrti67k3pf35tw76kwpruqu3uuysbumhytcslv2vpls2jixqhcubj7/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"5258c82d-8d3d-44f1-b281-0fa77ab8a68e\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_extended_nsgqrti67k3pf35tw76kwpruqu3uuysbumhytcslv2vpls2jixqhcubj7/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"5258c82d-8d3d-44f1-b281-0fa77ab8a68e\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_extended_nsgqrti67k3pf35tw76kwpruqu3uuysbumhytcslv2vpls2jixqhcubj7/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"5258c82d-8d3d-44f1-b281-0fa77ab8a68e\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_extended_nsgqrti67k3pf35tw76kwpruqu3uuysbumhytcslv2vpls2jixqhcubj7/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"5258c82d-8d3d-44f1-b281-0fa77ab8a68e\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_extended_nsgqrti67k3pf35tw76kwpruqu3uuysbumhytcslv2vpls2jixqhcubj7/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"5258c82d-8d3d-44f1-b281-0fa77ab8a68e\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"test-nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1","etag":"W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"32dacc55-f4b2-4fbf-9f14-8b2c8cc87980","securityRules":[{"name":"web","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web","etag":"W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"","properties":{"provisioningState":"Succeeded","protocol":"*","sourcePortRange":"*","destinationPortRange":"4444","sourceAddressPrefix":"789","destinationAddressPrefix":"1234","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"lmazuel-msiNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG","etag":"W/\"cf3adc67-b9f0-4c2c-be53-254d00c57ea8\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a5055acd-7e02-4723-b868-7cee00ca72b3","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG/securityRules/default-allow-ssh","etag":"W/\"cf3adc67-b9f0-4c2c-be53-254d00c57ea8\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"cf3adc67-b9f0-4c2c-be53-254d00c57ea8\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"cf3adc67-b9f0-4c2c-be53-254d00c57ea8\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"cf3adc67-b9f0-4c2c-be53-254d00c57ea8\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"cf3adc67-b9f0-4c2c-be53-254d00c57ea8\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"cf3adc67-b9f0-4c2c-be53-254d00c57ea8\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkSecurityGroups/lmazuel-msiNSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"cf3adc67-b9f0-4c2c-be53-254d00c57ea8\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkInterfaces/lmazuel-msiVMNic"}]}},{"name":"sdk-test-mNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f03d55e3-d89d-495d-bff6-c544cd58ebcf","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/securityRules/default-allow-ssh","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ body: {string: '{"value":[{"name":"test-nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1","etag":"W/\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"6079242a-8938-45b2-9e9d-2146d8f526a8","securityRules":[{"name":"web","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web","etag":"W/\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\"","properties":{"provisioningState":"Succeeded","protocol":"*","sourcePortRange":"*","destinationPortRange":"4444","sourceAddressPrefix":"789","destinationAddressPrefix":"1234","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\"","properties":{"provisioningState":"Succeeded","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\"","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"sdk-test-mNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f03d55e3-d89d-495d-bff6-c544cd58ebcf","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/securityRules/default-allow-ssh","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","description":"Allow
inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","description":"Allow
inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","description":"Deny
all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"7c429793-619b-47e0-9541-c158745d0384\"","properties":{"provisioningState":"Succeeded","description":"Allow
@@ -472,73 +425,55 @@ interactions:
all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"5cb592e2-37a1-4a48-b777-355082cb2bf6\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"5cb592e2-37a1-4a48-b777-355082cb2bf6\"","properties":{"provisioningState":"Succeeded","description":"Allow
outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"5cb592e2-37a1-4a48-b777-355082cb2bf6\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic"}]}},{"name":"backendnsg","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1ff91f43-97b5-4f26-a0bb-b5609a99eeab","securityRules":[{"name":"DenyInternetInComing","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","properties":{"provisioningState":"Succeeded","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"INTERNET","destinationAddressPrefix":"*","access":"Deny","priority":100,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyInternetOutGoing","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","properties":{"provisioningState":"Succeeded","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"INTERNET","access":"Deny","priority":100,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1495/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound","etag":"W/\"c3efb7e4-b375-4a2b-b553-3e89e56d29d1\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"nsgcda65671","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"cfc8d19d-c16d-4991-9472-4223b177f133","securityRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671/securityRules/rule1","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"80","destinationPortRange":"80","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":100,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"rule2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671/securityRules/rule2","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","properties":{"provisioningState":"Succeeded","description":"foo!!","protocol":"*","sourcePortRange":"*","destinationPortRange":"22-25","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":200,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671/defaultSecurityRules/AllowVnetInBound","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671/defaultSecurityRules/DenyAllInBound","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcda65671/providers/Microsoft.Network/networkSecurityGroups/nsgcda65671/defaultSecurityRules/DenyAllOutBound","etag":"W/\"de009b44-85ac-4be8-8a53-61ffbe8a9768\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}},{"name":"yugangw2-11NSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG","etag":"W/\"0c1ebf4c-78e0-4a94-b93b-f86e9f403c41\"","type":"Microsoft.Network/networkSecurityGroups","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a6ee993c-e095-4c2f-8d62-440d9988ba23","securityRules":[{"name":"rdp","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG/securityRules/rdp","etag":"W/\"0c1ebf4c-78e0-4a94-b93b-f86e9f403c41\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"3389","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"0c1ebf4c-78e0-4a94-b93b-f86e9f403c41\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"0c1ebf4c-78e0-4a94-b93b-f86e9f403c41\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"0c1ebf4c-78e0-4a94-b93b-f86e9f403c41\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"0c1ebf4c-78e0-4a94-b93b-f86e9f403c41\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"0c1ebf4c-78e0-4a94-b93b-f86e9f403c41\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-11NSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"0c1ebf4c-78e0-4a94-b93b-f86e9f403c41\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-11VMNic"}]}},{"name":"yugangw2-vm-cmdNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG","etag":"W/\"53cf6608-9ad4-4523-b526-72d0899c9f18\"","type":"Microsoft.Network/networkSecurityGroups","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"90bb2399-9bba-4928-998d-95712a5523fb","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG/securityRules/default-allow-ssh","etag":"W/\"53cf6608-9ad4-4523-b526-72d0899c9f18\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"53cf6608-9ad4-4523-b526-72d0899c9f18\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"53cf6608-9ad4-4523-b526-72d0899c9f18\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"53cf6608-9ad4-4523-b526-72d0899c9f18\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"53cf6608-9ad4-4523-b526-72d0899c9f18\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"53cf6608-9ad4-4523-b526-72d0899c9f18\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-vm-cmdNSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"53cf6608-9ad4-4523-b526-72d0899c9f18\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-vm-cmdVMNic"}]}},{"name":"yugangw2-winNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG","etag":"W/\"274d468e-a0cf-4828-8656-2145ceabd027\"","type":"Microsoft.Network/networkSecurityGroups","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b9f7964f-8a9a-4c82-a50f-5945ec9078a9","securityRules":[{"name":"rdp","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG/securityRules/rdp","etag":"W/\"274d468e-a0cf-4828-8656-2145ceabd027\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"3389","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"274d468e-a0cf-4828-8656-2145ceabd027\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"274d468e-a0cf-4828-8656-2145ceabd027\"","properties":{"provisioningState":"Succeeded","description":"Allow
- inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"274d468e-a0cf-4828-8656-2145ceabd027\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"274d468e-a0cf-4828-8656-2145ceabd027\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"274d468e-a0cf-4828-8656-2145ceabd027\"","properties":{"provisioningState":"Succeeded","description":"Allow
- outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkSecurityGroups/yugangw2-winNSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"274d468e-a0cf-4828-8656-2145ceabd027\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-winVMNic"}]}}]}'}
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic"}]}},{"name":"wilx-vmNSG","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG","etag":"W/\"2a046db3-f994-4602-9b66-ffc4a036743f\"","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1fa4e019-54f4-42a6-a588-d23ca7c34124","securityRules":[{"name":"default-allow-ssh","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG/securityRules/default-allow-ssh","etag":"W/\"2a046db3-f994-4602-9b66-ffc4a036743f\"","properties":{"provisioningState":"Succeeded","protocol":"Tcp","sourcePortRange":"*","destinationPortRange":"22","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Allow","priority":1000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG/defaultSecurityRules/AllowVnetInBound","etag":"W/\"2a046db3-f994-4602-9b66-ffc4a036743f\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"2a046db3-f994-4602-9b66-ffc4a036743f\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG/defaultSecurityRules/DenyAllInBound","etag":"W/\"2a046db3-f994-4602-9b66-ffc4a036743f\"","properties":{"provisioningState":"Succeeded","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"2a046db3-f994-4602-9b66-ffc4a036743f\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"2a046db3-f994-4602-9b66-ffc4a036743f\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG/defaultSecurityRules/DenyAllOutBound","etag":"W/\"2a046db3-f994-4602-9b66-ffc4a036743f\"","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic"}]}},{"name":"nsg714832","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/networkSecurityGroups/nsg714832","etag":"W/\"219b6357-df33-4945-ba55-8cfae8f64a2b\"","type":"Microsoft.Network/networkSecurityGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"31cc0f9d-2862-4f54-8f7c-7931d68b1a05","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/networkSecurityGroups/nsg714832/defaultSecurityRules/AllowVnetInBound","etag":"W/\"219b6357-df33-4945-ba55-8cfae8f64a2b\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/networkSecurityGroups/nsg714832/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"219b6357-df33-4945-ba55-8cfae8f64a2b\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/networkSecurityGroups/nsg714832/defaultSecurityRules/DenyAllInBound","etag":"W/\"219b6357-df33-4945-ba55-8cfae8f64a2b\"","properties":{"provisioningState":"Succeeded","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/networkSecurityGroups/nsg714832/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"219b6357-df33-4945-ba55-8cfae8f64a2b\"","properties":{"provisioningState":"Succeeded","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","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/networkSecurityGroups/nsg714832/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"219b6357-df33-4945-ba55-8cfae8f64a2b\"","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/networkSecurityGroups/nsg714832/defaultSecurityRules/DenyAllOutBound","etag":"W/\"219b6357-df33-4945-ba55-8cfae8f64a2b\"","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/networkInterfaces/ni714832"}],"subnets":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg714832/providers/Microsoft.Network/virtualNetworks/net714832/subnets/subnet1"}]}}]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:23 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['110886']
- x-ms-original-request-ids: [56c01ce7-dd3e-4d72-a4c5-0944ad72ba9e, 084500fc-dba7-46e8-9073-501b893f5ba3,
- 6612b624-636e-4536-8ccb-440baa6fd5df]
+ cache-control: [no-cache]
+ content-length: ['26050']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:59 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ x-ms-original-request-ids: [ad1e3a49-8345-47d1-b3c0-2f369a4590ca, cb3b65c1-4d9d-40b9-9cc0-5bfad7006a18,
+ 6689f3e1-f096-4235-a24f-f5ffca61c01b]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3c3f9cc2-9cce-11e7-bd00-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"test-nsg1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\",\r\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\",\r\
\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"\
location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"32dacc55-f4b2-4fbf-9f14-8b2c8cc87980\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"6079242a-8938-45b2-9e9d-2146d8f526a8\"\
,\r\n \"securityRules\": [\r\n {\r\n \"name\":\
- \ \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\
+ \ \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"\
sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"4444\"\
@@ -549,8 +484,8 @@ interactions:
sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\"\
: [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"description\": \"Allow inbound traffic\
\ from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \
@@ -562,8 +497,8 @@ interactions:
: [],\r\n \"destinationPortRanges\": [],\r\n \"\
sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\
+ : \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"description\": \"Allow inbound traffic\
\ from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \
@@ -575,8 +510,8 @@ interactions:
\ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\
\n },\r\n {\r\n \"name\": \"DenyAllInBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -587,8 +522,8 @@ interactions:
sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n\
\ \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\
+ : \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"description\": \"Allow outbound traffic\
\ from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\"\
@@ -600,8 +535,8 @@ interactions:
: [],\r\n \"destinationPortRanges\": [],\r\n \"\
sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\
+ : \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"description\": \"Allow outbound traffic\
\ from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \
@@ -613,8 +548,8 @@ interactions:
\ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\
\n },\r\n {\r\n \"name\": \"DenyAllOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -627,40 +562,40 @@ interactions:
: []\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n\
\ ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:24 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]
- content-length: ['7577']
+ cache-control: [no-cache]
+ content-length: ['8033']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:41:59 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3c5943c6-9cce-11e7-b125-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"test-nsg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"32dacc55-f4b2-4fbf-9f14-8b2c8cc87980\",\r\n \
+ ,\r\n \"resourceGuid\": \"6079242a-8938-45b2-9e9d-2146d8f526a8\",\r\n \
\ \"securityRules\": [\r\n {\r\n \"name\": \"web\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
,\r\n \"destinationPortRange\": \"4444\",\r\n \"sourceAddressPrefix\"\
@@ -670,8 +605,8 @@ interactions:
\ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"\
- name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\"\
+ name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetInBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -682,8 +617,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\"\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -694,8 +629,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllInBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -705,8 +640,8 @@ interactions:
: \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowVnetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -717,8 +652,8 @@ interactions:
: [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/AllowInternetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -729,8 +664,8 @@ interactions:
\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/defaultSecurityRules/DenyAllOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -741,36 +676,36 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:24 GMT']
- ETag: [W/"2a08aab5-469d-4b20-8648-1dab24e28a86"]
- 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]
- content-length: ['6908']
+ cache-control: [no-cache]
+ content-length: ['7364']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:00 GMT']
+ etag: [W/"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3c8a4762-9cce-11e7-bd69-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"web\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\",\r\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\
\n \"destinationPortRange\": \"4444\",\r\n \"sourceAddressPrefix\"\
@@ -780,34 +715,34 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:24 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]
- content-length: ['798']
+ cache-control: [no-cache]
+ content-length: ['855']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:01 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3cb296fa-9cce-11e7-8c13-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
: \"4444\",\r\n \"sourceAddressPrefix\": \"789\",\r\n \"destinationAddressPrefix\"\
@@ -816,35 +751,35 @@ interactions:
destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \
\ \"destinationAddressPrefixes\": []\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:25 GMT']
- ETag: [W/"2a08aab5-469d-4b20-8648-1dab24e28a86"]
- 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]
- content-length: ['693']
+ cache-control: [no-cache]
+ content-length: ['750']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:01 GMT']
+ etag: [W/"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3cdbd11a-9cce-11e7-86e1-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"2a08aab5-469d-4b20-8648-1dab24e28a86\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
: \"4444\",\r\n \"sourceAddressPrefix\": \"789\",\r\n \"destinationAddressPrefix\"\
@@ -853,41 +788,40 @@ interactions:
destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \
\ \"destinationAddressPrefixes\": []\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:25 GMT']
- ETag: [W/"2a08aab5-469d-4b20-8648-1dab24e28a86"]
- 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]
- content-length: ['693']
+ cache-control: [no-cache]
+ content-length: ['750']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:01 GMT']
+ etag: [W/"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web",
- "etag": "W/\"2a08aab5-469d-4b20-8648-1dab24e28a86\"", "name": "web", "properties":
- {"priority": 888, "direction": "Outbound", "sourceAddressPrefix": "111", "destinationPortRange":
- "1234-1235", "sourcePortRange": "1234-1235", "destinationAddressPrefix": "111",
- "description": "greatrule", "access": "Deny", "provisioningState": "Succeeded",
- "protocol": "Tcp"}}'
+ body: 'b''{"name": "web", "properties": {"sourceAddressPrefix": "111", "priority":
+ 888, "protocol": "Tcp", "provisioningState": "Succeeded", "destinationPortRange":
+ "1234-1235", "sourcePortRange": "1234-1235", "direction": "Outbound", "destinationAddressPrefix":
+ "111", "description": "greatrule", "access": "Deny"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web",
+ "etag": "W/\\"8d69b043-4cd6-4e0e-bc4e-fcfd8545bbc8\\""}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['533']
+ Content-Length: ['590']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3cfc5714-9cce-11e7-9851-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"d611547f-b1bc-4ab4-8ba9-c580dc8acb2b\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"4c619de9-65b0-4747-a825-dc778baaaf88\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
description\": \"greatrule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\
: \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\
@@ -897,65 +831,64 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/73b77bb3-381c-408e-9671-88fe52b2a875?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:26 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['738']
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae791eb4-80a1-49b7-bf88-b3f15ccf8d07?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['795']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:02 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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3cfc5714-9cce-11e7-9851-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73b77bb3-381c-408e-9671-88fe52b2a875?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae791eb4-80a1-49b7-bf88-b3f15ccf8d07?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:12 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [3cfc5714-9cce-11e7-9851-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"c1999c2a-87f0-4a1e-9e51-1ffb08d0cadd\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"713a6a75-ef19-4468-b528-4b4f4d12b33a\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
description\": \"greatrule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\
: \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\
@@ -965,35 +898,35 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:36 GMT']
- ETag: [W/"c1999c2a-87f0-4a1e-9e51-1ffb08d0cadd"]
- 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]
- content-length: ['739']
+ cache-control: [no-cache]
+ content-length: ['796']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:13 GMT']
+ etag: [W/"713a6a75-ef19-4468-b528-4b4f4d12b33a"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4409bd92-9cce-11e7-ba2b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"c1999c2a-87f0-4a1e-9e51-1ffb08d0cadd\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"713a6a75-ef19-4468-b528-4b4f4d12b33a\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
description\": \"greatrule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\
: \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\
@@ -1003,273 +936,294 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:37 GMT']
- ETag: [W/"c1999c2a-87f0-4a1e-9e51-1ffb08d0cadd"]
- 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]
- content-length: ['739']
+ cache-control: [no-cache]
+ content-length: ['796']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:14 GMT']
+ etag: [W/"713a6a75-ef19-4468-b528-4b4f4d12b33a"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web",
- "etag": "W/\"c1999c2a-87f0-4a1e-9e51-1ffb08d0cadd\"", "name": "web", "properties":
- {"sourcePortRanges": [], "priority": 888, "sourceAddressPrefixes": [], "destinationPortRange":
- "1234-1235", "sourceAddressPrefix": "111", "destinationAddressPrefixes": [],
- "protocol": "Tcp", "direction": "Outbound", "destinationPortRanges": [], "sourcePortRange":
- "1234-1235", "destinationAddressPrefix": "111", "description": "cool", "access":
- "Deny", "provisioningState": "Succeeded"}}'
+ body: 'b''{"name": "web", "properties": {"priority": 888, "sourceAddressPrefixes":
+ [], "sourcePortRange": "1234-1235", "destinationAddressPrefix": "111", "destinationPortRanges":
+ [], "sourceAddressPrefix": "111", "direction": "Inbound", "protocol": "*", "provisioningState":
+ "Succeeded", "destinationPortRange": "1234-1235", "sourcePortRanges": [], "destinationAddressPrefixes":
+ [], "description": "cool", "access": "Allow"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web",
+ "etag": "W/\\"713a6a75-ef19-4468-b528-4b4f4d12b33a\\""}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['644']
+ Content-Length: ['699']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4420cc0c-9cce-11e7-bfa9-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"17bd4507-a50d-415e-8b0e-7f7868f7b72e\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"fffb26be-b084-457a-8908-d88d7dd21a01\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
- description\": \"cool\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\
+ description\": \"cool\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
: \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\
sourceAddressPrefix\": \"111\",\r\n \"destinationAddressPrefix\": \"111\"\
- ,\r\n \"access\": \"Deny\",\r\n \"priority\": 888,\r\n \"direction\"\
- : \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
+ ,\r\n \"access\": \"Allow\",\r\n \"priority\": 888,\r\n \"direction\"\
+ : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5b8698ef-2af8-4f75-b26b-1eb95523e157?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:37 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['733']
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5df8b77-0a7d-4056-9226-a2eb31e8e126?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['788']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:15 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-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4420cc0c-9cce-11e7-bfa9-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5b8698ef-2af8-4f75-b26b-1eb95523e157?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5df8b77-0a7d-4056-9226-a2eb31e8e126?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:25 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4420cc0c-9cce-11e7-bfa9-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
- ,\r\n \"etag\": \"W/\\\"b8c1a85a-2d1c-486a-b75d-6f6287e98701\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"web\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web\"\
+ ,\r\n \"etag\": \"W/\\\"3f65f13f-31f0-46a8-bed7-7fe3b8f5b2d5\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- description\": \"cool\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\
+ description\": \"cool\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
: \"1234-1235\",\r\n \"destinationPortRange\": \"1234-1235\",\r\n \"\
sourceAddressPrefix\": \"111\",\r\n \"destinationAddressPrefix\": \"111\"\
- ,\r\n \"access\": \"Deny\",\r\n \"priority\": 888,\r\n \"direction\"\
- : \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
+ ,\r\n \"access\": \"Allow\",\r\n \"priority\": 888,\r\n \"direction\"\
+ : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05:48 GMT']
- ETag: [W/"b8c1a85a-2d1c-486a-b75d-6f6287e98701"]
- 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]
- content-length: ['734']
+ cache-control: [no-cache]
+ content-length: ['789']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:25 GMT']
+ etag: [W/"3f65f13f-31f0-46a8-bed7-7fe3b8f5b2d5"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4a8e0cba-9cce-11e7-8cd2-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1/securityRules/web?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/84b74543-4162-40e3-b6f0-f6f171819ee8?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 00:05:48 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/84b74543-4162-40e3-b6f0-f6f171819ee8?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5130951b-fadf-4594-a941-aadd650e18d0?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 12 Oct 2017 19:42:27 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5130951b-fadf-4594-a941-aadd650e18d0?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4a8e0cba-9cce-11e7-8cd2-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84b74543-4162-40e3-b6f0-f6f171819ee8?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5130951b-fadf-4594-a941-aadd650e18d0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:05: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [51539626-9cce-11e7-9401-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups/test-nsg1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/821b6860-f7b6-47b8-ab7e-54ca88766ec3?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 00:06:00 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/821b6860-f7b6-47b8-ab7e-54ca88766ec3?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/82544937-d01e-4389-9baf-4d25f75b1953?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 12 Oct 2017 19:42:39 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/82544937-d01e-4389-9baf-4d25f75b1953?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [51539626-9cce-11e7-9401-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/821b6860-f7b6-47b8-ab7e-54ca88766ec3?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/82544937-d01e-4389-9baf-4d25f75b1953?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06:10 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [583caeb0-9cce-11e7-bd7d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_nsg000001/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-09-01
response:
- body: {string: "{\r\n \"value\": []\r\n}"}
+ body: {string: '{"value":[]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:06: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]
- content-length: ['19']
+ cache-control: [no-cache]
+ content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 12 Oct 2017 19:42:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_nsg000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 12 Oct 2017 19:42:50 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTlNHVDNXRzZPNldUN0lVVjY2Mk5VS0EzVEdVVUNMSU1PQnw1MEJBRUNFMUMwNDBERkUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_public_ip.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_public_ip.yaml
index dcc31c7798b..7ad1c59df74 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_public_ip.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_public_ip.yaml
@@ -1,441 +1,465 @@
interactions:
- request:
- body: null
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [8ec61bb8-9d8c-11e7-8e4e-64510658e3b3]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_public_ip?api-version=2017-05-10
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_public_ip000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip","name":"cli_test_public_ip","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001","name":"cli_test_public_ip000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:20:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:46 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['226']
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_public_ip000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001","name":"cli_test_public_ip000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:20:53 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "sku": {"name": "Basic"}, "properties": {"publicIPAllocationMethod":
- "Static", "publicIPAddressVersion": "IPv4", "dnsSettings": {"domainNameLabel":
- "woot"}, "idleTimeoutInMinutes": 4}}'
+ body: '{"sku": {"name": "Basic"}, "properties": {"idleTimeoutInMinutes": 4, "dnsSettings":
+ {"domainNameLabel": "woot"}, "publicIPAllocationMethod": "Static"}, "location":
+ "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['207']
+ Content-Length: ['173']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [8ed633c6-9d8c-11e7-9f5a-64510658e3b3]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipdns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipdns?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"pubipdns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipdns\"\
- ,\r\n \"etag\": \"W/\\\"075d17b5-d238-4bd8-b343-41f1a01dc07f\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"pubipdns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipdns\"\
+ ,\r\n \"etag\": \"W/\\\"6735cd65-3bcb-4567-a108-1a826f2d0b72\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"470e1737-e5f3-4128-ba2c-83ec75b32654\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"b43316b9-16f3-451d-80e0-f20648b9d049\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\":\
\ {\r\n \"domainNameLabel\": \"woot\",\r\n \"fqdn\": \"woot.westus.cloudapp.azure.com\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/135633f6-aa28-40ff-9653-79511bff6cf0?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['705']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:47 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/22fb992f-7bf7-4e38-aadd-57d1dfca0cc2?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['756']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:20:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [8ed633c6-9d8c-11e7-9f5a-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/135633f6-aa28-40ff-9653-79511bff6cf0?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/22fb992f-7bf7-4e38-aadd-57d1dfca0cc2?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:20: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [8ed633c6-9d8c-11e7-9f5a-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipdns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipdns?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"pubipdns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipdns\"\
- ,\r\n \"etag\": \"W/\\\"da753922-1ae6-48d5-a5ea-c63dd38a9e45\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"pubipdns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipdns\"\
+ ,\r\n \"etag\": \"W/\\\"f380154f-51d6-44a2-8734-ba45f090af63\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"470e1737-e5f3-4128-ba2c-83ec75b32654\"\
- ,\r\n \"ipAddress\": \"40.86.177.40\",\r\n \"publicIPAddressVersion\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"b43316b9-16f3-451d-80e0-f20648b9d049\"\
+ ,\r\n \"ipAddress\": \"13.64.198.182\",\r\n \"publicIPAddressVersion\"\
: \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"woot\",\r\n\
\ \"fqdn\": \"woot.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \
\ \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \
\ \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:51 GMT']
- ETag: [W/"da753922-1ae6-48d5-a5ea-c63dd38a9e45"]
- 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]
- content-length: ['740']
+ cache-control: [no-cache]
+ content-length: ['792']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:20:57 GMT']
+ etag: [W/"f380154f-51d6-44a2-8734-ba45f090af63"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [91d44bf6-9d8c-11e7-85ac-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_public_ip?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_public_ip000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip","name":"cli_test_public_ip","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:51 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['226']
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001","name":"cli_test_public_ip000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:20:57 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "sku": {"name": "Basic"}, "properties": {"publicIPAllocationMethod":
- "Dynamic", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}'
+ body: '{"sku": {"name": "Basic"}, "properties": {"idleTimeoutInMinutes": 4, "publicIPAllocationMethod":
+ "Dynamic"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['164']
+ Content-Length: ['130']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [91e26bc8-9d8c-11e7-81aa-64510658e3b3]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
- ,\r\n \"etag\": \"W/\\\"b6c1641e-ba18-481e-9dd2-39d3de000b3d\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
+ ,\r\n \"etag\": \"W/\\\"14747a2b-38e4-4804-93fe-6c290cf3ad20\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ab027262-386e-4ebb-a5ee-267a90e9a3da\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"08a22683-34b5-4257-a028-e7f8475faa63\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/39efae05-5d27-45ac-beab-a643da7d458d?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['598']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:53 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/557c17a2-5656-4848-876d-44e6c7164bbd?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['649']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16: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-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [91e26bc8-9d8c-11e7-81aa-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/39efae05-5d27-45ac-beab-a643da7d458d?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/557c17a2-5656-4848-876d-44e6c7164bbd?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:56 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21:01 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [91e26bc8-9d8c-11e7-81aa-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
- ,\r\n \"etag\": \"W/\\\"c2ba1bff-ebf6-40ca-b998-ac39edb6502f\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
+ ,\r\n \"etag\": \"W/\\\"890a0cf7-b9a1-488b-a19c-196d36acd078\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"ab027262-386e-4ebb-a5ee-267a90e9a3da\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"08a22683-34b5-4257-a028-e7f8475faa63\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:56 GMT']
- ETag: [W/"c2ba1bff-ebf6-40ca-b998-ac39edb6502f"]
- 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]
- content-length: ['599']
+ cache-control: [no-cache]
+ content-length: ['650']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21:02 GMT']
+ etag: [W/"890a0cf7-b9a1-488b-a19c-196d36acd078"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [94c058a6-9d8c-11e7-9b54-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
- ,\r\n \"etag\": \"W/\\\"c2ba1bff-ebf6-40ca-b998-ac39edb6502f\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
+ ,\r\n \"etag\": \"W/\\\"890a0cf7-b9a1-488b-a19c-196d36acd078\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"ab027262-386e-4ebb-a5ee-267a90e9a3da\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"08a22683-34b5-4257-a028-e7f8475faa63\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:57 GMT']
- ETag: [W/"c2ba1bff-ebf6-40ca-b998-ac39edb6502f"]
- 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]
- content-length: ['599']
+ cache-control: [no-cache]
+ content-length: ['650']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21:02 GMT']
+ etag: [W/"890a0cf7-b9a1-488b-a19c-196d36acd078"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "sku": {"name": "Basic"}, "properties": {"dnsSettings":
- {"domainNameLabel": "wowza"}, "resourceGuid": "ab027262-386e-4ebb-a5ee-267a90e9a3da",
- "publicIPAllocationMethod": "Static", "publicIPAddressVersion": "IPv4", "provisioningState":
- "Succeeded", "idleTimeoutInMinutes": 10}, "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns",
- "etag": "W/\"c2ba1bff-ebf6-40ca-b998-ac39edb6502f\""}'
+ body: 'b''{"sku": {"name": "Basic"}, "etag": "W/\\"890a0cf7-b9a1-488b-a19c-196d36acd078\\"",
+ "properties": {"publicIPAddressVersion": "IPv4", "provisioningState": "Succeeded",
+ "idleTimeoutInMinutes": 10, "resourceGuid": "08a22683-34b5-4257-a028-e7f8475faa63",
+ "dnsSettings": {"domainNameLabel": "wowza"}, "publicIPAllocationMethod": "Static"},
+ "location": "westus", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['511']
+ Content-Length: ['562']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [94f614dc-9d8c-11e7-ae88-64510658e3b3]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
- ,\r\n \"etag\": \"W/\\\"306bad6c-cb56-4dfe-b613-9b21b5807578\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
+ ,\r\n \"etag\": \"W/\\\"170a9428-17ec-4aaf-9f4d-1d7a7efd6792\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ab027262-386e-4ebb-a5ee-267a90e9a3da\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"08a22683-34b5-4257-a028-e7f8475faa63\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Static\",\r\n \"idleTimeoutInMinutes\": 10,\r\n \"dnsSettings\"\
: {\r\n \"domainNameLabel\": \"wowza\",\r\n \"fqdn\": \"wowza.westus.cloudapp.azure.com\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/64ca2fc7-8d17-442f-948c-00795e9178d3?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:47:57 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['712']
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b0a62c8-78d1-484b-baef-59178bca4c70?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['763']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21: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-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [94f614dc-9d8c-11e7-ae88-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64ca2fc7-8d17-442f-948c-00795e9178d3?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b0a62c8-78d1-484b-baef-59178bca4c70?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:48:00 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21:07 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [94f614dc-9d8c-11e7-ae88-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
- ,\r\n \"etag\": \"W/\\\"977b0972-8130-4845-9250-133509b3d2cd\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
+ ,\r\n \"etag\": \"W/\\\"66d85154-183b-4621-b50d-b730e1aa08d0\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"ab027262-386e-4ebb-a5ee-267a90e9a3da\"\
- ,\r\n \"ipAddress\": \"40.86.179.78\",\r\n \"publicIPAddressVersion\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"08a22683-34b5-4257-a028-e7f8475faa63\"\
+ ,\r\n \"ipAddress\": \"40.85.156.55\",\r\n \"publicIPAddressVersion\"\
: \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
: 10,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"wowza\",\r\
\n \"fqdn\": \"wowza.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n\
\ \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n\
\ \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:48:01 GMT']
- ETag: [W/"977b0972-8130-4845-9250-133509b3d2cd"]
- 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]
- content-length: ['747']
+ cache-control: [no-cache]
+ content-length: ['798']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21:06 GMT']
+ etag: [W/"66d85154-183b-4621-b50d-b730e1aa08d0"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [9789ac0a-9d8c-11e7-ae92-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"pubipdns\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipdns\"\
- ,\r\n \"etag\": \"W/\\\"da753922-1ae6-48d5-a5ea-c63dd38a9e45\\\"\",\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipdns\"\
+ ,\r\n \"etag\": \"W/\\\"f380154f-51d6-44a2-8734-ba45f090af63\\\"\",\r\
\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"470e1737-e5f3-4128-ba2c-83ec75b32654\"\
- ,\r\n \"ipAddress\": \"40.86.177.40\",\r\n \"publicIPAddressVersion\"\
+ provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b43316b9-16f3-451d-80e0-f20648b9d049\"\
+ ,\r\n \"ipAddress\": \"13.64.198.182\",\r\n \"publicIPAddressVersion\"\
: \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \
\ \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \
\ \"domainNameLabel\": \"woot\",\r\n \"fqdn\": \"woot.westus.cloudapp.azure.com\"\
\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\
,\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n },\r\
- \n {\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
- ,\r\n \"etag\": \"W/\\\"977b0972-8130-4845-9250-133509b3d2cd\\\"\",\r\
+ \n {\r\n \"name\": \"pubipnodns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
+ ,\r\n \"etag\": \"W/\\\"66d85154-183b-4621-b50d-b730e1aa08d0\\\"\",\r\
\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab027262-386e-4ebb-a5ee-267a90e9a3da\"\
- ,\r\n \"ipAddress\": \"40.86.179.78\",\r\n \"publicIPAddressVersion\"\
+ provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08a22683-34b5-4257-a028-e7f8475faa63\"\
+ ,\r\n \"ipAddress\": \"40.85.156.55\",\r\n \"publicIPAddressVersion\"\
: \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \
\ \"idleTimeoutInMinutes\": 10,\r\n \"dnsSettings\": {\r\n \
\ \"domainNameLabel\": \"wowza\",\r\n \"fqdn\": \"wowza.westus.cloudapp.azure.com\"\
@@ -443,134 +467,133 @@ interactions:
,\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n }\r\
\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:48:01 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]
- content-length: ['1691']
+ cache-control: [no-cache]
+ content-length: ['1794']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21:07 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [97b3722c-9d8c-11e7-a2b2-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipdns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipdns?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"pubipdns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipdns\"\
- ,\r\n \"etag\": \"W/\\\"da753922-1ae6-48d5-a5ea-c63dd38a9e45\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"pubipdns\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipdns\"\
+ ,\r\n \"etag\": \"W/\\\"f380154f-51d6-44a2-8734-ba45f090af63\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"470e1737-e5f3-4128-ba2c-83ec75b32654\"\
- ,\r\n \"ipAddress\": \"40.86.177.40\",\r\n \"publicIPAddressVersion\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"b43316b9-16f3-451d-80e0-f20648b9d049\"\
+ ,\r\n \"ipAddress\": \"13.64.198.182\",\r\n \"publicIPAddressVersion\"\
: \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
: 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"woot\",\r\n\
\ \"fqdn\": \"woot.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \
\ \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \
\ \"name\": \"Basic\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:48:02 GMT']
- ETag: [W/"da753922-1ae6-48d5-a5ea-c63dd38a9e45"]
- 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]
- content-length: ['740']
+ cache-control: [no-cache]
+ content-length: ['792']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21:08 GMT']
+ etag: [W/"f380154f-51d6-44a2-8734-ba45f090af63"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [97e64f88-9d8c-11e7-b590-64510658e3b3]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipdns?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipdns?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3d136c05-300e-4f89-9e02-9ad782bae5c0?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 22:48:02 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/3d136c05-300e-4f89-9e02-9ad782bae5c0?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e15e3741-ff6a-48e8-b06e-2ff19572fb86?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 16:21:08 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e15e3741-ff6a-48e8-b06e-2ff19572fb86?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [97e64f88-9d8c-11e7-b590-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d136c05-300e-4f89-9e02-9ad782bae5c0?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e15e3741-ff6a-48e8-b06e-2ff19572fb86?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:48:13 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.13
- msrest_azure/0.4.11 networkmanagementclient/1.5.0rc2 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [9ec596d8-9d8c-11e7-b102-64510658e3b3]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"pubipnodns\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
- ,\r\n \"etag\": \"W/\\\"977b0972-8130-4845-9250-133509b3d2cd\\\"\",\r\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_public_ip000001/providers/Microsoft.Network/publicIPAddresses/pubipnodns\"\
+ ,\r\n \"etag\": \"W/\\\"66d85154-183b-4621-b50d-b730e1aa08d0\\\"\",\r\
\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab027262-386e-4ebb-a5ee-267a90e9a3da\"\
- ,\r\n \"ipAddress\": \"40.86.179.78\",\r\n \"publicIPAddressVersion\"\
+ provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08a22683-34b5-4257-a028-e7f8475faa63\"\
+ ,\r\n \"ipAddress\": \"40.85.156.55\",\r\n \"publicIPAddressVersion\"\
: \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \
\ \"idleTimeoutInMinutes\": 10,\r\n \"dnsSettings\": {\r\n \
\ \"domainNameLabel\": \"wowza\",\r\n \"fqdn\": \"wowza.westus.cloudapp.azure.com\"\
@@ -578,15 +601,42 @@ interactions:
,\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n }\r\
\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 22:48:14 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]
- content-length: ['860']
+ cache-control: [no-cache]
+ content-length: ['911']
+ content-type: [application/json; charset=utf-8]
+ date: ['Fri, 13 Oct 2017 16:21: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]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_public_ip000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Fri, 13 Oct 2017 16:21:20 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUFVCTElDOjVGSVBXR1VWU0wyR0lDUU5LWlkzTUJETEo0TXwzQURDRUE3MTc0NTEyQzU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_route_filter.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_route_filter.yaml
index 929cf3d026a..dc3541cbc22 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_route_filter.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_route_filter.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_route_filter000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:13 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:35 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_route_filter000001?api-version=2017-05-10
@@ -46,7 +46,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:13 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:36 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -57,55 +57,55 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"filter1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1\"\
- ,\r\n \"etag\": \"W/\\\"c397f355-15a2-46e8-906b-49faf1ae5c5d\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"9302369b-287d-42f6-a6a0-e60206fdacb0\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeFilters\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \
\ \"rules\": []\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e4ca201d-bd6b-46af-8d29-5da292132b32?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb374f68-f97a-45a8-93e1-edb62462f049?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['436']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:14 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e4ca201d-bd6b-46af-8d29-5da292132b32?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb374f68-f97a-45a8-93e1-edb62462f049?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:24 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -118,22 +118,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e4ca201d-bd6b-46af-8d29-5da292132b32?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb374f68-f97a-45a8-93e1-edb62462f049?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:35 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -146,18 +146,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"filter1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1\"\
- ,\r\n \"etag\": \"W/\\\"d788d6fb-1eaf-40f1-a03c-79c2defb2aac\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c7e41217-3238-4801-8169-6d8e482f78b2\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeFilters\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
\ \"rules\": []\r\n }\r\n}"}
@@ -165,8 +165,8 @@ interactions:
cache-control: [no-cache]
content-length: ['437']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:35 GMT']
- etag: [W/"d788d6fb-1eaf-40f1-a03c-79c2defb2aac"]
+ date: ['Mon, 16 Oct 2017 20:55:58 GMT']
+ etag: [W/"c7e41217-3238-4801-8169-6d8e482f78b2"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -179,18 +179,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"filter1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1\"\
- ,\r\n \"etag\": \"W/\\\"d788d6fb-1eaf-40f1-a03c-79c2defb2aac\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c7e41217-3238-4801-8169-6d8e482f78b2\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeFilters\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
\ \"rules\": []\r\n }\r\n}"}
@@ -198,8 +198,8 @@ interactions:
cache-control: [no-cache]
content-length: ['437']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:37 GMT']
- etag: [W/"d788d6fb-1eaf-40f1-a03c-79c2defb2aac"]
+ date: ['Mon, 16 Oct 2017 20:55:59 GMT']
+ etag: [W/"c7e41217-3238-4801-8169-6d8e482f78b2"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -208,33 +208,33 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1",
- "properties": {"rules": []}}'''
+ body: 'b''{"properties": {"rules": []}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1",
+ "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['252']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"filter1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1\"\
- ,\r\n \"etag\": \"W/\\\"8428c615-7bcf-49db-841a-d660e0235ec0\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"91afb09a-8a75-41e9-bc71-1fe9a371e8aa\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeFilters\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
\ \"rules\": []\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ebc99024-d39e-41ba-9a09-2cd4bb2d1c99?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38c30eb2-b63d-44dc-b7d5-09833706c384?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['437']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:37 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -248,22 +248,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ebc99024-d39e-41ba-9a09-2cd4bb2d1c99?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38c30eb2-b63d-44dc-b7d5-09833706c384?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:07 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -276,18 +276,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"filter1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1\"\
- ,\r\n \"etag\": \"W/\\\"8428c615-7bcf-49db-841a-d660e0235ec0\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"91afb09a-8a75-41e9-bc71-1fe9a371e8aa\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeFilters\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
\ \"rules\": []\r\n }\r\n}"}
@@ -295,8 +295,8 @@ interactions:
cache-control: [no-cache]
content-length: ['437']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:07 GMT']
- etag: [W/"8428c615-7bcf-49db-841a-d660e0235ec0"]
+ date: ['Mon, 16 Oct 2017 20:56:30 GMT']
+ etag: [W/"91afb09a-8a75-41e9-bc71-1fe9a371e8aa"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -309,18 +309,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"filter1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1\"\
- ,\r\n \"etag\": \"W/\\\"8428c615-7bcf-49db-841a-d660e0235ec0\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"91afb09a-8a75-41e9-bc71-1fe9a371e8aa\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeFilters\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
\ \"rules\": []\r\n }\r\n}"}
@@ -328,8 +328,8 @@ interactions:
cache-control: [no-cache]
content-length: ['437']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:07 GMT']
- etag: [W/"8428c615-7bcf-49db-841a-d660e0235ec0"]
+ date: ['Mon, 16 Oct 2017 20:56:30 GMT']
+ etag: [W/"91afb09a-8a75-41e9-bc71-1fe9a371e8aa"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -342,19 +342,19 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"filter1\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1\"\
- ,\r\n \"etag\": \"W/\\\"8428c615-7bcf-49db-841a-d660e0235ec0\\\"\",\r\
+ ,\r\n \"etag\": \"W/\\\"91afb09a-8a75-41e9-bc71-1fe9a371e8aa\\\"\",\r\
\n \"type\": \"Microsoft.Network/routeFilters\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"rules\": []\r\n }\r\n }\r\n ]\r\n}"}
@@ -362,7 +362,7 @@ interactions:
cache-control: [no-cache]
content-length: ['506']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:08 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -375,12 +375,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule list-service-communities]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/bgpServiceCommunities?api-version=2017-09-01
@@ -391,46 +391,1240 @@ interactions:
\ \"properties\": {\r\n \"serviceName\": \"Exchange\",\r\n \
\ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
: \"Global\",\r\n \"communityName\": \"Exchange\",\r\n \
- \ \"communityValue\": \"12076:5010\",\r\n \"isAuthorizedToUse\"\
- : true,\r\n \"serviceGroup\": \"O365\"\r\n }\r\n \
- \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"OtherOffice365Services\"\
- ,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/OtherOffice365Services\"\
+ \ \"communityValue\": \"12076:5010\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.107.6.152/31\",\r\n \"13.107.9.152/31\"\
+ ,\r\n \"13.107.18.10/31\",\r\n \"13.107.19.10/31\"\
+ ,\r\n \"23.103.160.0/20\",\r\n \"23.103.224.0/19\"\
+ ,\r\n \"40.96.0.0/13\",\r\n \"40.104.0.0/15\",\r\
+ \n \"70.37.151.128/25\",\r\n \"111.221.112.0/21\"\
+ ,\r\n \"131.253.33.215/32\",\r\n \"132.245.0.0/16\"\
+ ,\r\n \"134.170.68.0/23\",\r\n \"157.56.96.16/28\"\
+ ,\r\n \"157.56.96.224/28\",\r\n \"157.56.106.128/28\"\
+ ,\r\n \"157.56.232.0/21\",\r\n \"157.56.240.0/20\"\
+ ,\r\n \"191.232.96.0/19\",\r\n \"191.234.6.152/32\"\
+ ,\r\n \"191.234.140.0/22\",\r\n \"191.234.224.0/22\"\
+ ,\r\n \"204.79.197.215/32\",\r\n \"206.191.224.0/19\"\
+ ,\r\n \"207.46.150.128/25\",\r\n \"207.46.203.128/26\"\
+ ,\r\n \"23.103.132.0/22\",\r\n \"23.103.136.0/21\"\
+ ,\r\n \"23.103.144.0/20\",\r\n \"23.103.198.0/23\"\
+ ,\r\n \"23.103.200.0/22\",\r\n \"23.103.212.0/22\"\
+ ,\r\n \"40.92.0.0/14\",\r\n \"40.107.0.0/17\",\r\
+ \n \"40.107.128.0/18\",\r\n \"52.100.0.0/14\",\r\
+ \n \"65.55.88.0/24\",\r\n \"65.55.169.0/24\",\r\n\
+ \ \"94.245.120.64/26\",\r\n \"104.47.0.0/17\",\r\
+ \n \"134.170.132.0/24\",\r\n \"134.170.140.0/24\"\
+ ,\r\n \"157.55.234.0/24\",\r\n \"157.56.110.0/23\"\
+ ,\r\n \"157.56.112.0/24\",\r\n \"207.46.51.64/26\"\
+ ,\r\n \"207.46.100.0/24\",\r\n \"207.46.163.0/24\"\
+ ,\r\n \"213.199.154.0/24\",\r\n \"213.199.180.128/26\"\
+ ,\r\n \"216.32.180.0/23\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"O365\"\r\n \
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\":\
+ \ \"OtherOffice365Services\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/OtherOffice365Services\"\
,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
\ \"properties\": {\r\n \"serviceName\": \"OtherOffice365Services\"\
,\r\n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
: \"Global\",\r\n \"communityName\": \"Other Office 365 Services\"\
- ,\r\n \"communityValue\": \"12076:5100\",\r\n \"isAuthorizedToUse\"\
- : true,\r\n \"serviceGroup\": \"O365\"\r\n }\r\n \
- \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"SharePoint\",\r\n\
- \ \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/SharePoint\"\
+ ,\r\n \"communityValue\": \"12076:5100\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.65.240.22/32\",\r\n \"13.66.58.59/32\"\
+ ,\r\n \"13.70.156.206/32\",\r\n \"13.71.145.114/32\"\
+ ,\r\n \"13.71.145.122/32\",\r\n \"13.75.149.223/32\"\
+ ,\r\n \"13.71.151.88/32\",\r\n \"13.78.120.69/32\"\
+ ,\r\n \"13.78.120.70/32\",\r\n \"13.78.120.99/32\"\
+ ,\r\n \"13.78.122.54/32\",\r\n \"13.84.216.209/32\"\
+ ,\r\n \"13.84.219.100/32\",\r\n \"13.84.222.249/32\"\
+ ,\r\n \"13.87.36.128/32\",\r\n \"13.88.17.54/32\"\
+ ,\r\n \"13.92.181.66/32\",\r\n \"13.92.236.241/32\"\
+ ,\r\n \"13.93.164.45/32\",\r\n \"13.107.6.156/31\"\
+ ,\r\n \"13.107.7.190/31\",\r\n \"13.107.9.156/31\"\
+ ,\r\n \"23.96.32.105/32\",\r\n \"23.96.251.50/32\"\
+ ,\r\n \"23.96.253.65/32\",\r\n \"23.97.66.55/32\"\
+ ,\r\n \"23.97.78.94/32\",\r\n \"23.99.121.16/32\"\
+ ,\r\n \"23.99.125.4/32\",\r\n \"40.71.88.196/32\"\
+ ,\r\n \"40.83.120.174/32\",\r\n \"40.83.185.155/32\"\
+ ,\r\n \"40.83.185.230/32\",\r\n \"40.84.145.72/32\"\
+ ,\r\n \"40.112.187.89/32\",\r\n \"40.117.96.104/32\"\
+ ,\r\n \"40.117.100.187/32\",\r\n \"40.117.229.133/32\"\
+ ,\r\n \"40.117.229.194/32\",\r\n \"51.140.45.81/32\"\
+ ,\r\n \"51.140.226.217/32\",\r\n \"51.142.213.184/32\"\
+ ,\r\n \"52.163.58.153/32\",\r\n \"52.163.93.38/32\"\
+ ,\r\n \"52.172.49.206/32\",\r\n \"52.175.154.183/32\"\
+ ,\r\n \"52.175.158.8/32\",\r\n \"52.178.27.129/32\"\
+ ,\r\n \"52.178.144.25/32\",\r\n \"52.178.146.3/32\"\
+ ,\r\n \"52.178.146.67/32\",\r\n \"52.178.150.186/32\"\
+ ,\r\n \"52.185.154.106/32\",\r\n \"52.187.42.197/32\"\
+ ,\r\n \"52.187.78.144/32\",\r\n \"52.228.36.141/32\"\
+ ,\r\n \"52.230.24.83/32\",\r\n \"52.231.24.115/32\"\
+ ,\r\n \"52.231.204.153/32\",\r\n \"52.232.112.133/32\"\
+ ,\r\n \"52.232.118.68/32\",\r\n \"52.232.129.232/32\"\
+ ,\r\n \"65.52.144.46/32\",\r\n \"65.52.176.186/32\"\
+ ,\r\n \"65.52.192.203/32\",\r\n \"65.52.240.200/32\"\
+ ,\r\n \"65.55.239.168/32\",\r\n \"70.37.96.155/32\"\
+ ,\r\n \"94.245.88.28/32\",\r\n \"94.245.117.53/32\"\
+ ,\r\n \"104.40.178.127/32\",\r\n \"104.40.179.160/32\"\
+ ,\r\n \"104.42.225.143/32\",\r\n \"104.42.230.91/32\"\
+ ,\r\n \"104.45.225.7/32\",\r\n \"104.47.156.62/32\"\
+ ,\r\n \"104.211.160.244/32\",\r\n \"104.214.144.62/32\"\
+ ,\r\n \"104.214.144.252/32\",\r\n \"104.214.145.126/32\"\
+ ,\r\n \"104.214.145.173/32\",\r\n \"104.214.146.199/32\"\
+ ,\r\n \"111.221.96.149/32\",\r\n \"111.221.104.43/32\"\
+ ,\r\n \"137.116.156.3/32\",\r\n \"137.116.248.150/32\"\
+ ,\r\n \"137.117.17.124/32\",\r\n \"138.91.61.107/32\"\
+ ,\r\n \"157.55.139.177/32\",\r\n \"157.55.145.0/25\"\
+ ,\r\n \"157.55.155.0/25\",\r\n \"157.55.212.37/32\"\
+ ,\r\n \"157.55.227.192/26\",\r\n \"168.62.104.83/32\"\
+ ,\r\n \"168.62.106.224/32\",\r\n \"168.63.92.133/32\"\
+ ,\r\n \"191.235.95.142/32\",\r\n \"191.238.160.173/32\"\
+ ,\r\n \"207.46.73.250/32\",\r\n \"207.46.141.38/32\"\
+ ,\r\n \"207.46.156.124/32\",\r\n \"207.46.216.54/32\"\
+ ,\r\n \"213.199.128.119/32\",\r\n \"13.67.50.224/29\"\
+ ,\r\n \"13.71.201.64/26\",\r\n \"13.106.4.128/25\"\
+ ,\r\n \"13.75.48.16/29\",\r\n \"13.75.80.16/29\"\
+ ,\r\n \"13.106.56.0/25\",\r\n \"23.100.16.168/29\"\
+ ,\r\n \"23.100.32.136/29\",\r\n \"23.100.64.24/29\"\
+ ,\r\n \"23.100.72.32/29\",\r\n \"23.100.80.64/29\"\
+ ,\r\n \"23.100.88.32/29\",\r\n \"23.100.101.112/28\"\
+ ,\r\n \"23.100.104.16/28\",\r\n \"23.100.112.64/29\"\
+ ,\r\n \"23.100.120.64/29\",\r\n \"23.101.5.104/29\"\
+ ,\r\n \"23.101.144.136/29\",\r\n \"23.101.165.168/29\"\
+ ,\r\n \"23.101.181.128/29\",\r\n \"23.101.210.24/29\"\
+ ,\r\n \"23.101.222.240/28\",\r\n \"23.101.224.16/29\"\
+ ,\r\n \"23.101.226.16/28\",\r\n \"40.112.64.16/28\"\
+ ,\r\n \"40.113.192.16/29\",\r\n \"40.114.120.16/29\"\
+ ,\r\n \"40.115.152.16/28\",\r\n \"40.127.67.24/29\"\
+ ,\r\n \"52.125.0.0/17\",\r\n \"52.172.144.16/28\"\
+ ,\r\n \"65.52.1.16/29\",\r\n \"65.52.193.136/29\"\
+ ,\r\n \"65.54.170.128/25\",\r\n \"70.37.128.0/23\"\
+ ,\r\n \"104.40.240.48/28\",\r\n \"104.41.13.120/29\"\
+ ,\r\n \"104.41.216.16/28\",\r\n \"104.42.72.16/29\"\
+ ,\r\n \"104.43.208.16/29\",\r\n \"104.43.240.16/29\"\
+ ,\r\n \"104.44.218.128/25\",\r\n \"104.44.254.128/25\"\
+ ,\r\n \"104.44.255.0/25\",\r\n \"104.45.0.16/28\"\
+ ,\r\n \"104.45.208.104/29\",\r\n \"104.46.112.8/29\"\
+ ,\r\n \"104.46.224.64/28\",\r\n \"104.209.144.16/29\"\
+ ,\r\n \"104.210.48.8/29\",\r\n \"104.210.83.160/29\"\
+ ,\r\n \"104.210.208.16/29\",\r\n \"104.211.16.16/29\"\
+ ,\r\n \"104.211.48.16/29\",\r\n \"104.211.88.16/28\"\
+ ,\r\n \"104.211.98.138/32\",\r\n \"104.211.98.146/32\"\
+ ,\r\n \"104.211.98.246/32\",\r\n \"104.211.99.236/32\"\
+ ,\r\n \"104.211.100.160/32\",\r\n \"104.211.100.204/32\"\
+ ,\r\n \"104.211.102.225/32\",\r\n \"104.211.152.32/27\"\
+ ,\r\n \"104.211.161.150/32\",\r\n \"104.211.161.165/32\"\
+ ,\r\n \"104.211.161.185/32\",\r\n \"104.211.162.33/32\"\
+ ,\r\n \"104.211.165.35/32\",\r\n \"104.211.166.139/32\"\
+ ,\r\n \"104.211.216.32/27\",\r\n \"104.211.224.118/32\"\
+ ,\r\n \"104.211.225.135/32\",\r\n \"104.211.227.110/32\"\
+ ,\r\n \"104.211.231.147/32\",\r\n \"104.211.231.248/32\"\
+ ,\r\n \"104.215.96.24/29\",\r\n \"104.215.144.64/29\"\
+ ,\r\n \"104.215.184.16/29\",\r\n \"131.253.120.128/32\"\
+ ,\r\n \"132.245.165.0/25\",\r\n \"134.170.67.0/25\"\
+ ,\r\n \"134.170.172.128/25\",\r\n \"157.55.45.128/25\"\
+ ,\r\n \"157.55.59.128/25\",\r\n \"157.55.130.0/25\"\
+ ,\r\n \"157.56.53.128/25\",\r\n \"157.56.55.0/25\"\
+ ,\r\n \"157.56.58.0/25\",\r\n \"157.56.151.0/25\"\
+ ,\r\n \"191.232.2.128/25\",\r\n \"191.237.248.32/29\"\
+ ,\r\n \"191.237.252.192/28\",\r\n \"13.69.187.20/32\"\
+ ,\r\n \"13.70.184.242/32\",\r\n \"13.71.155.176/32\"\
+ ,\r\n \"13.75.153.216/32\",\r\n \"13.76.140.48/32\"\
+ ,\r\n \"13.78.114.39/32\",\r\n \"13.85.84.102/32\"\
+ ,\r\n \"13.88.248.161/32\",\r\n \"13.88.254.212/32\"\
+ ,\r\n \"13.107.6.171/32\",\r\n \"13.107.6.172/32\"\
+ ,\r\n \"23.98.219.76/32\",\r\n \"40.68.166.51/32\"\
+ ,\r\n \"40.71.251.78/32\",\r\n \"40.74.130.243/32\"\
+ ,\r\n \"40.74.138.42/32\",\r\n \"40.86.230.88/32\"\
+ ,\r\n \"40.87.61.217/32\",\r\n \"40.114.192.209/32\"\
+ ,\r\n \"40.117.226.146/32\",\r\n \"40.126.236.216/32\"\
+ ,\r\n \"40.127.79.139/32\",\r\n \"51.140.46.128/32\"\
+ ,\r\n \"51.140.46.150/32\",\r\n \"51.141.1.194/32\"\
+ ,\r\n \"51.141.8.160/32\",\r\n \"52.108.0.0/14\"\
+ ,\r\n \"52.164.242.47/32\",\r\n \"52.169.109.48/32\"\
+ ,\r\n \"52.172.12.123/32\",\r\n \"52.172.13.171/32\"\
+ ,\r\n \"52.172.152.100/32\",\r\n \"52.172.153.104/32\"\
+ ,\r\n \"52.174.190.59/32\",\r\n \"52.175.25.142/32\"\
+ ,\r\n \"52.232.128.169/32\",\r\n \"104.40.225.204/32\"\
+ ,\r\n \"104.41.62.54/32\",\r\n \"104.214.38.136/32\"\
+ ,\r\n \"104.215.194.17/32\",\r\n \"137.116.172.39/32\"\
+ ,\r\n \"137.135.65.72/32\",\r\n \"191.235.84.172/32\"\
+ ,\r\n \"191.235.87.181/32\",\r\n \"191.237.40.220/32\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"O365\"\r\n }\r\n ]\r\n }\r\n\
+ \ },\r\n {\r\n \"name\": \"SharePoint\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/SharePoint\"\
,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
\ \"properties\": {\r\n \"serviceName\": \"SharePoint\",\r\n \
\ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
: \"Global\",\r\n \"communityName\": \"SharePoint Online\",\r\n\
- \ \"communityValue\": \"12076:5020\",\r\n \"isAuthorizedToUse\"\
- : true,\r\n \"serviceGroup\": \"O365\"\r\n }\r\n \
- \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"SkypeForBusiness\"\
- ,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/SkypeForBusiness\"\
+ \ \"communityValue\": \"12076:5020\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.107.6.150/31\",\r\n \"13.107.6.168/32\"\
+ ,\r\n \"13.107.9.150/31\",\r\n \"13.107.9.168/32\"\
+ ,\r\n \"40.108.0.0/19\",\r\n \"40.108.128.0/17\"\
+ ,\r\n \"52.104.0.0/14\",\r\n \"104.146.0.0/19\"\
+ ,\r\n \"104.146.128.0/17\",\r\n \"134.170.200.0/21\"\
+ ,\r\n \"134.170.208.0/21\",\r\n \"191.232.0.0/23\"\
+ ,\r\n \"191.234.128.0/21\",\r\n \"191.235.0.0/20\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"O365\"\r\n }\r\n ]\r\n }\r\n\
+ \ },\r\n {\r\n \"name\": \"SkypeForBusiness\",\r\n \"id\"\
+ : \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/SkypeForBusiness\"\
,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
\ \"properties\": {\r\n \"serviceName\": \"SkypeForBusiness\",\r\n\
\ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
: \"Global\",\r\n \"communityName\": \"Skype For Business\",\r\n\
- \ \"communityValue\": \"12076:5030\",\r\n \"isAuthorizedToUse\"\
- : true,\r\n \"serviceGroup\": \"O365\"\r\n }\r\n \
- \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"CRMOnline\",\r\n\
- \ \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/CRMOnline\"\
+ \ \"communityValue\": \"12076:5030\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.64.106.229/32\",\r\n \"13.64.240.95/32\"\
+ ,\r\n \"13.67.56.225/32\",\r\n \"13.67.109.136/32\"\
+ ,\r\n \"13.67.180.128/32\",\r\n \"13.67.186.105/32\"\
+ ,\r\n \"13.67.209.156/32\",\r\n \"13.67.214.76/32\"\
+ ,\r\n \"13.67.222.144/32\",\r\n \"13.68.31.102/32\"\
+ ,\r\n \"13.70.89.162/32\",\r\n \"13.70.156.147/32\"\
+ ,\r\n \"13.70.159.107/32\",\r\n \"13.70.186.54/32\"\
+ ,\r\n \"13.73.109.13/32\",\r\n \"13.73.155.42/32\"\
+ ,\r\n \"13.74.146.183/32\",\r\n \"13.75.42.168/32\"\
+ ,\r\n \"13.75.120.15/32\",\r\n \"13.75.120.61/32\"\
+ ,\r\n \"13.75.125.228/32\",\r\n \"13.75.126.46/32\"\
+ ,\r\n \"13.75.127.250/32\",\r\n \"13.75.154.195/32\"\
+ ,\r\n \"13.75.159.17/32\",\r\n \"13.75.159.51/32\"\
+ ,\r\n \"13.76.188.52/32\",\r\n \"13.76.189.79/32\"\
+ ,\r\n \"13.76.241.210/32\",\r\n \"13.77.1.253/32\"\
+ ,\r\n \"13.77.7.84/32\",\r\n \"13.78.59.246/32\"\
+ ,\r\n \"13.78.93.8/32\",\r\n \"13.78.94.7/32\",\r\
+ \n \"13.78.95.252/32\",\r\n \"13.78.112.190/32\"\
+ ,\r\n \"13.79.153.60/32\",\r\n \"13.79.161.153/32\"\
+ ,\r\n \"13.79.234.229/32\",\r\n \"13.88.183.247/32\"\
+ ,\r\n \"13.88.241.210/32\",\r\n \"13.89.44.84/32\"\
+ ,\r\n \"13.91.40.251/32\",\r\n \"13.91.106.134/32\"\
+ ,\r\n \"13.91.108.91/32\",\r\n \"13.91.252.242/32\"\
+ ,\r\n \"13.92.80.132/32\",\r\n \"13.92.136.118/32\"\
+ ,\r\n \"13.93.149.3/32\",\r\n \"13.93.156.214/32\"\
+ ,\r\n \"13.93.167.93/32\",\r\n \"13.93.209.18/32\"\
+ ,\r\n \"13.94.47.37/32\",\r\n \"13.95.88.228/32\"\
+ ,\r\n \"13.95.233.176/32\",\r\n \"13.95.234.10/32\"\
+ ,\r\n \"13.95.236.192/32\",\r\n \"13.107.3.0/24\"\
+ ,\r\n \"13.107.8.0/24\",\r\n \"13.107.17.0/24\"\
+ ,\r\n \"13.107.64.0/18\",\r\n \"13.107.242.0/24\"\
+ ,\r\n \"23.97.72.141/32\",\r\n \"23.97.75.102/32\"\
+ ,\r\n \"23.97.78.16/32\",\r\n \"23.97.164.28/32\"\
+ ,\r\n \"23.99.101.49/32\",\r\n \"23.99.101.118/32\"\
+ ,\r\n \"23.99.112.73/32\",\r\n \"23.99.113.23/32\"\
+ ,\r\n \"23.99.113.163/32\",\r\n \"23.99.115.104/32\"\
+ ,\r\n \"23.99.121.38/32\",\r\n \"23.99.121.255/32\"\
+ ,\r\n \"23.99.122.87/32\",\r\n \"23.99.124.9/32\"\
+ ,\r\n \"23.99.195.117/32\",\r\n \"23.101.61.176/32\"\
+ ,\r\n \"23.101.112.170/32\",\r\n \"23.101.115.193/32\"\
+ ,\r\n \"23.103.128.0/23\",\r\n \"23.103.130.0/24\"\
+ ,\r\n \"23.103.176.128/26\",\r\n \"23.103.176.192/27\"\
+ ,\r\n \"23.103.178.128/26\",\r\n \"23.103.178.192/27\"\
+ ,\r\n \"40.68.225.164/32\",\r\n \"40.68.250.216/32\"\
+ ,\r\n \"40.68.251.17/32\",\r\n \"40.69.45.108/32\"\
+ ,\r\n \"40.69.210.145/32\",\r\n \"40.74.62.125/32\"\
+ ,\r\n \"40.74.84.253/32\",\r\n \"40.74.113.62/32\"\
+ ,\r\n \"40.74.127.186/32\",\r\n \"40.74.128.205/32\"\
+ ,\r\n \"40.74.129.215/32\",\r\n \"40.74.130.253/32\"\
+ ,\r\n \"40.74.143.94/32\",\r\n \"40.76.24.32/32\"\
+ ,\r\n \"40.76.24.177/32\",\r\n \"40.76.77.68/32\"\
+ ,\r\n \"40.77.16.36/32\",\r\n \"40.78.68.158/32\"\
+ ,\r\n \"40.78.71.48/32\",\r\n \"40.78.98.202/32\"\
+ ,\r\n \"40.78.146.128/32\",\r\n \"40.79.38.101/32\"\
+ ,\r\n \"40.79.41.254/32\",\r\n \"40.79.74.185/32\"\
+ ,\r\n \"40.79.82.21/32\",\r\n \"40.83.17.24/32\"\
+ ,\r\n \"40.83.121.219/32\",\r\n \"40.83.124.144/32\"\
+ ,\r\n \"40.83.176.46/32\",\r\n \"40.83.177.162/32\"\
+ ,\r\n \"40.83.183.236/32\",\r\n \"40.84.28.125/32\"\
+ ,\r\n \"40.86.90.132/32\",\r\n \"40.86.92.191/32\"\
+ ,\r\n \"40.112.188.2/32\",\r\n \"40.113.16.205/32\"\
+ ,\r\n \"40.113.87.220/32\",\r\n \"40.113.136.240/32\"\
+ ,\r\n \"40.114.149.220/32\",\r\n \"40.114.244.22/32\"\
+ ,\r\n \"40.115.1.44/32\",\r\n \"40.115.74.171/32\"\
+ ,\r\n \"40.117.100.83/32\",\r\n \"40.117.145.132/32\"\
+ ,\r\n \"40.118.169.78/32\",\r\n \"40.118.214.164/32\"\
+ ,\r\n \"40.118.251.206/32\",\r\n \"40.118.253.51/32\"\
+ ,\r\n \"40.121.200.212/32\",\r\n \"40.121.221.52/32\"\
+ ,\r\n \"40.122.44.96/32\",\r\n \"40.122.165.60/32\"\
+ ,\r\n \"40.122.168.86/32\",\r\n \"40.123.43.195/32\"\
+ ,\r\n \"40.123.50.17/32\",\r\n \"40.126.239.210/32\"\
+ ,\r\n \"40.126.251.57/32\",\r\n \"40.127.129.109/32\"\
+ ,\r\n \"40.127.169.165/32\",\r\n \"51.140.51.73/32\"\
+ ,\r\n \"51.140.53.252/32\",\r\n \"51.140.55.82/32\"\
+ ,\r\n \"51.140.62.120/32\",\r\n \"51.140.79.167/32\"\
+ ,\r\n \"51.140.126.38/32\",\r\n \"51.140.183.120/32\"\
+ ,\r\n \"51.141.5.99/32\",\r\n \"51.141.9.8/32\"\
+ ,\r\n \"51.141.12.151/32\",\r\n \"51.141.13.77/32\"\
+ ,\r\n \"51.141.28.50/32\",\r\n \"51.141.42.151/32\"\
+ ,\r\n \"51.141.49.0/32\",\r\n \"52.112.0.0/14\"\
+ ,\r\n \"52.160.110.94/32\",\r\n \"52.163.112.45/32\"\
+ ,\r\n \"52.163.114.181/32\",\r\n \"52.163.115.44/32\"\
+ ,\r\n \"52.163.118.82/32\",\r\n \"52.163.224.242/32\"\
+ ,\r\n \"52.163.225.1/32\",\r\n \"52.163.229.196/32\"\
+ ,\r\n \"52.163.230.187/32\",\r\n \"52.163.231.50/32\"\
+ ,\r\n \"52.163.231.126/32\",\r\n \"52.164.253.101/32\"\
+ ,\r\n \"52.164.255.104/32\",\r\n \"52.165.35.53/32\"\
+ ,\r\n \"52.165.45.77/32\",\r\n \"52.165.150.215/32\"\
+ ,\r\n \"52.166.61.83/32\",\r\n \"52.169.9.241/32\"\
+ ,\r\n \"52.169.10.109/32\",\r\n \"52.169.30.95/32\"\
+ ,\r\n \"52.169.67.1/32\",\r\n \"52.169.104.89/32\"\
+ ,\r\n \"52.169.105.194/32\",\r\n \"52.169.105.219/32\"\
+ ,\r\n \"52.169.106.115/32\",\r\n \"52.169.154.144/32\"\
+ ,\r\n \"52.169.190.101/32\",\r\n \"52.172.53.101/32\"\
+ ,\r\n \"52.172.54.196/32\",\r\n \"52.172.55.238/32\"\
+ ,\r\n \"52.173.190.229/32\",\r\n \"52.174.144.192/32\"\
+ ,\r\n \"52.174.150.25/32\",\r\n \"52.174.166.73/32\"\
+ ,\r\n \"52.174.166.107/32\",\r\n \"52.174.166.156/32\"\
+ ,\r\n \"52.174.186.47/32\",\r\n \"52.175.24.155/32\"\
+ ,\r\n \"52.175.33.58/32\",\r\n \"52.175.37.105/32\"\
+ ,\r\n \"52.175.38.240/32\",\r\n \"52.177.186.61/32\"\
+ ,\r\n \"52.177.186.70/32\",\r\n \"52.177.186.78/32\"\
+ ,\r\n \"52.178.25.175/32\",\r\n \"52.178.34.159/32\"\
+ ,\r\n \"52.178.36.12/32\",\r\n \"52.178.36.169/32\"\
+ ,\r\n \"52.178.38.115/32\",\r\n \"52.178.108.202/32\"\
+ ,\r\n \"52.178.114.127/32\",\r\n \"52.178.145.227/32\"\
+ ,\r\n \"52.178.148.1/32\",\r\n \"52.178.148.152/32\"\
+ ,\r\n \"52.178.158.225/32\",\r\n \"52.178.179.194/32\"\
+ ,\r\n \"52.178.186.230/32\",\r\n \"52.178.198.107/32\"\
+ ,\r\n \"52.179.139.166/32\",\r\n \"52.179.142.102/32\"\
+ ,\r\n \"52.183.117.84/32\",\r\n \"52.185.146.154/32\"\
+ ,\r\n \"52.185.151.102/32\",\r\n \"52.187.6.119/32\"\
+ ,\r\n \"52.187.79.90/32\",\r\n \"52.187.117.218/32\"\
+ ,\r\n \"52.187.123.78/32\",\r\n \"52.187.126.35/32\"\
+ ,\r\n \"52.187.135.79/32\",\r\n \"52.225.131.249/32\"\
+ ,\r\n \"52.232.76.40/32\",\r\n \"52.232.78.53/32\"\
+ ,\r\n \"52.232.129.71/32\",\r\n \"52.232.132.60/32\"\
+ ,\r\n \"52.232.135.81/32\",\r\n \"52.233.128.227/32\"\
+ ,\r\n \"52.233.29.169/32\",\r\n \"52.233.30.121/32\"\
+ ,\r\n \"65.55.127.0/24\",\r\n \"66.119.157.192/26\"\
+ ,\r\n \"66.119.158.0/25\",\r\n \"104.40.82.150/32\"\
+ ,\r\n \"104.40.91.215/32\",\r\n \"104.40.189.177/32\"\
+ ,\r\n \"104.41.151.83/32\",\r\n \"104.41.207.112/32\"\
+ ,\r\n \"104.41.208.54/32\",\r\n \"104.41.210.140/32\"\
+ ,\r\n \"104.42.228.150/32\",\r\n \"104.42.229.230/32\"\
+ ,\r\n \"104.43.12.164/32\",\r\n \"104.44.195.0/24\"\
+ ,\r\n \"104.44.200.0/23\",\r\n \"104.45.18.178/32\"\
+ ,\r\n \"104.45.231.95/32\",\r\n \"104.45.231.155/32\"\
+ ,\r\n \"104.46.62.41/32\",\r\n \"104.46.96.162/32\"\
+ ,\r\n \"104.46.97.194/32\",\r\n \"104.46.101.116/32\"\
+ ,\r\n \"104.46.105.95/32\",\r\n \"104.47.151.128/32\"\
+ ,\r\n \"104.208.28.54/32\",\r\n \"104.208.31.113/32\"\
+ ,\r\n \"104.208.152.137/32\",\r\n \"104.209.188.207/32\"\
+ ,\r\n \"104.210.1.218/32\",\r\n \"104.210.9.95/32\"\
+ ,\r\n \"104.210.80.193/32\",\r\n \"104.211.162.59/32\"\
+ ,\r\n \"104.211.165.113/32\",\r\n \"104.211.165.216/32\"\
+ ,\r\n \"111.221.76.128/25\",\r\n \"111.221.77.0/26\"\
+ ,\r\n \"111.221.101.75/32\",\r\n \"111.221.122.192/26\"\
+ ,\r\n \"131.253.128.0/19\",\r\n \"131.253.160.0/20\"\
+ ,\r\n \"132.245.0.0/24\",\r\n \"132.245.1.0/25\"\
+ ,\r\n \"132.245.112.0/24\",\r\n \"132.245.113.0/25\"\
+ ,\r\n \"134.170.0.0/25\",\r\n \"134.170.54.0/26\"\
+ ,\r\n \"134.170.54.128/25\",\r\n \"134.170.113.192/26\"\
+ ,\r\n \"134.170.115.128/25\",\r\n \"137.116.66.252/32\"\
+ ,\r\n \"137.116.132.4/32\",\r\n \"137.116.157.126/32\"\
+ ,\r\n \"137.116.159.19/32\",\r\n \"137.116.159.228/32\"\
+ ,\r\n \"137.116.248.105/32\",\r\n \"137.117.109.221/32\"\
+ ,\r\n \"137.117.128.25/32\",\r\n \"157.55.40.128/25\"\
+ ,\r\n \"157.55.238.0/25\",\r\n \"157.56.176.68/32\"\
+ ,\r\n \"168.61.145.101/32\",\r\n \"168.61.152.29/32\"\
+ ,\r\n \"168.61.155.249/32\",\r\n \"168.63.14.15/32\"\
+ ,\r\n \"168.63.204.74/32\",\r\n \"168.63.219.57/32\"\
+ ,\r\n \"168.63.245.120/32\",\r\n \"191.237.44.60/32\"\
+ ,\r\n \"207.46.5.0/24\",\r\n \"207.46.155.141/32\"\
+ ,\r\n \"207.46.156.136/32\",\r\n \"207.46.230.50/32\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"O365\"\r\n }\r\n ]\r\n }\r\n\
+ \ },\r\n {\r\n \"name\": \"CRMOnline\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/CRMOnline\"\
,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
\ \"properties\": {\r\n \"serviceName\": \"CRMOnline\",\r\n \
\ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
: \"Global\",\r\n \"communityName\": \"CRM Online\",\r\n \
- \ \"communityValue\": \"12076:5040\",\r\n \"isAuthorizedToUse\"\
- : false,\r\n \"serviceGroup\": \"CRM\"\r\n }\r\n \
- \ ]\r\n }\r\n }\r\n ]\r\n}"}
+ \ \"communityValue\": \"12076:5040\",\r\n \"communityPrefixes\"\
+ : [\r\n \"104.214.137.185/32\",\r\n \"104.44.102.0/24\"\
+ ,\r\n \"104.44.103.0/24\",\r\n \"104.44.104.0/24\"\
+ ,\r\n \"104.44.105.0/24\",\r\n \"104.44.113.0/24\"\
+ ,\r\n \"104.44.114.0/24\",\r\n \"104.44.115.0/24\"\
+ ,\r\n \"104.44.116.0/24\",\r\n \"104.44.117.0/24\"\
+ ,\r\n \"104.44.118.0/24\",\r\n \"104.44.208.192/26\"\
+ ,\r\n \"104.44.209.0/26\",\r\n \"104.44.209.128/26\"\
+ ,\r\n \"104.44.209.64/26\",\r\n \"104.44.249.0/25\"\
+ ,\r\n \"104.44.249.128/25\",\r\n \"104.44.250.0/25\"\
+ ,\r\n \"104.44.250.128/25\",\r\n \"13.106.102.128/25\"\
+ ,\r\n \"13.106.108.0/25\",\r\n \"13.106.110.0/25\"\
+ ,\r\n \"13.106.18.64/26\",\r\n \"13.106.42.64/26\"\
+ ,\r\n \"13.106.44.128/26\",\r\n \"13.106.5.0/26\"\
+ ,\r\n \"13.106.52.64/26\",\r\n \"13.106.58.192/26\"\
+ ,\r\n \"13.106.60.128/26\",\r\n \"13.106.6.128/25\"\
+ ,\r\n \"13.106.72.128/25\",\r\n \"13.106.8.128/26\"\
+ ,\r\n \"13.107.6.169/32\",\r\n \"13.107.9.169/32\"\
+ ,\r\n \"134.170.217.160/27\",\r\n \"134.170.26.0/24\"\
+ ,\r\n \"134.170.70.0/24\",\r\n \"134.170.98.0/24\"\
+ ,\r\n \"13.70.185.74/32\",\r\n \"13.75.152.226/32\"\
+ ,\r\n \"13.78.115.65/32\",\r\n \"13.79.172.168/32\"\
+ ,\r\n \"13.81.109.182/32\",\r\n \"13.84.227.98/32\"\
+ ,\r\n \"13.88.20.122/32\",\r\n \"13.92.199.78/32\"\
+ ,\r\n \"157.56.174.160/27\",\r\n \"157.56.199.0/24\"\
+ ,\r\n \"191.232.3.192/26\",\r\n \"191.235.81.50/32\"\
+ ,\r\n \"23.97.66.205/32\",\r\n \"52.172.157.251/32\"\
+ ,\r\n \"52.172.55.194/32\",\r\n \"52.187.44.184/32\"\
+ ,\r\n \"52.232.131.85/32\",\r\n \"52.233.25.234/32\"\
+ ,\r\n \"65.55.132.0/24\",\r\n \"65.55.135.0/24\"\
+ ,\r\n \"66.119.148.0/24\",\r\n \"66.119.154.0/24\"\
+ ,\r\n \"66.119.155.0/24\",\r\n \"66.119.156.0/24\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": false,\r\n \
+ \ \"serviceGroup\": \"CRM\"\r\n }\r\n ]\r\n }\r\n\
+ \ },\r\n {\r\n \"name\": \"AzureAustraliaEast\",\r\n \"id\"\
+ : \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureAustraliaEast\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureAustraliaEast\",\r\
+ \n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Australia East\",\r\
+ \n \"communityValue\": \"12076:51015\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.70.64.0/18\",\r\n \"13.72.224.0/19\"\
+ ,\r\n \"13.73.192.0/20\",\r\n \"13.75.128.0/17\"\
+ ,\r\n \"20.188.128.0/17\",\r\n \"23.101.208.0/20\"\
+ ,\r\n \"40.79.168.0/21\",\r\n \"40.87.208.0/22\"\
+ ,\r\n \"40.112.37.128/26\",\r\n \"40.126.224.0/19\"\
+ ,\r\n \"52.109.112.0/22\",\r\n \"52.114.16.0/22\"\
+ ,\r\n \"52.147.0.0/19\",\r\n \"52.156.160.0/19\"\
+ ,\r\n \"52.187.192.0/18\",\r\n \"52.232.136.0/21\"\
+ ,\r\n \"52.232.154.0/24\",\r\n \"52.237.192.0/18\"\
+ ,\r\n \"52.239.130.0/23\",\r\n \"52.245.16.0/22\"\
+ ,\r\n \"52.253.208.0/22\",\r\n \"104.46.29.0/24\"\
+ ,\r\n \"104.46.30.0/23\",\r\n \"104.46.240.0/20\"\
+ ,\r\n \"104.209.80.0/20\",\r\n \"104.210.64.0/18\"\
+ ,\r\n \"191.238.66.0/23\",\r\n \"191.239.64.0/19\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureAustraliaSoutheast\",\r\n \
+ \ \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureAustraliaSoutheast\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureAustraliaSoutheast\"\
+ ,\r\n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Australia Southeast\"\
+ ,\r\n \"communityValue\": \"12076:51016\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.70.128.0/18\",\r\n \"13.73.96.0/19\"\
+ ,\r\n \"13.77.0.0/18\",\r\n \"23.101.224.0/19\"\
+ ,\r\n \"40.87.212.0/22\",\r\n \"40.90.138.133/32\"\
+ ,\r\n \"40.90.138.136/32\",\r\n \"40.112.37.192/26\"\
+ ,\r\n \"40.115.64.0/19\",\r\n \"40.127.64.0/19\"\
+ ,\r\n \"52.109.116.0/22\",\r\n \"52.114.20.0/22\"\
+ ,\r\n \"52.136.25.0/24\",\r\n \"52.147.32.0/19\"\
+ ,\r\n \"52.158.128.0/19\",\r\n \"52.189.192.0/18\"\
+ ,\r\n \"52.239.132.0/23\",\r\n \"52.243.64.0/18\"\
+ ,\r\n \"52.245.20.0/22\",\r\n \"52.253.204.0/22\"\
+ ,\r\n \"52.255.32.0/19\",\r\n \"104.46.28.0/24\"\
+ ,\r\n \"104.209.64.0/20\",\r\n \"191.239.160.0/19\"\
+ ,\r\n \"191.239.192.0/22\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureBrazilSouth\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureBrazilSouth\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureBrazilSouth\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Brazil South\",\r\n\
+ \ \"communityValue\": \"12076:51014\",\r\n \"communityPrefixes\"\
+ : [\r\n \"23.97.96.0/19\",\r\n \"52.109.108.0/22\"\
+ ,\r\n \"104.41.0.0/18\",\r\n \"191.232.32.0/19\"\
+ ,\r\n \"191.232.160.0/19\",\r\n \"191.232.192.0/18\"\
+ ,\r\n \"191.233.128.0/24\",\r\n \"191.233.130.0/23\"\
+ ,\r\n \"191.233.132.0/22\",\r\n \"191.233.136.0/21\"\
+ ,\r\n \"191.233.192.0/18\",\r\n \"191.234.160.0/19\"\
+ ,\r\n \"191.235.32.0/19\",\r\n \"191.235.64.0/18\"\
+ ,\r\n \"191.235.196.0/22\",\r\n \"191.235.224.0/20\"\
+ ,\r\n \"191.237.200.0/21\",\r\n \"191.237.248.0/21\"\
+ ,\r\n \"191.238.128.0/21\",\r\n \"191.238.192.0/19\"\
+ ,\r\n \"191.239.112.0/20\",\r\n \"191.239.204.0/22\"\
+ ,\r\n \"191.239.240.0/20\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureCanadaCentral\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureCanadaCentral\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureCanadaCentral\",\r\
+ \n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Canada Central\",\r\
+ \n \"communityValue\": \"12076:51020\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.71.160.0/19\",\r\n \"13.88.224.0/19\"\
+ ,\r\n \"40.80.44.0/22\",\r\n \"40.85.192.0/18\"\
+ ,\r\n \"52.109.92.0/22\",\r\n \"52.114.160.0/22\"\
+ ,\r\n \"52.136.23.0/24\",\r\n \"52.138.0.0/18\"\
+ ,\r\n \"52.139.0.0/18\",\r\n \"52.156.0.0/19\",\r\
+ \n \"52.228.0.0/17\",\r\n \"52.233.0.0/18\",\r\n\
+ \ \"52.237.0.0/18\",\r\n \"52.239.148.64/26\",\r\
+ \n \"52.239.189.0/24\",\r\n \"52.245.28.0/22\",\r\
+ \n \"52.253.200.0/22\"\r\n ],\r\n \"isAuthorizedToUse\"\
+ : true,\r\n \"serviceGroup\": \"Azure\"\r\n }\r\n \
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCanadaEast\"\
+ ,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureCanadaEast\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureCanadaEast\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Canada East\",\r\n\
+ \ \"communityValue\": \"12076:51021\",\r\n \"communityPrefixes\"\
+ : [\r\n \"40.69.96.0/19\",\r\n \"40.80.40.0/22\"\
+ ,\r\n \"40.86.192.0/18\",\r\n \"40.89.0.0/19\",\r\
+ \n \"52.109.96.0/22\",\r\n \"52.114.164.0/22\",\r\
+ \n \"52.136.22.0/24\",\r\n \"52.139.64.0/18\",\r\
+ \n \"52.155.0.0/19\",\r\n \"52.229.64.0/18\",\r\n\
+ \ \"52.232.128.0/21\",\r\n \"52.235.0.0/18\",\r\n\
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\"\
+ ,\r\n \"52.242.0.0/18\",\r\n \"52.245.32.0/22\"\
+ ,\r\n \"52.253.196.0/22\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureCentralIndia\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureCentralIndia\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureCentralIndia\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Central India\",\r\
+ \n \"communityValue\": \"12076:51017\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.71.0.0/18\",\r\n \"40.87.224.0/22\"\
+ ,\r\n \"40.112.39.0/25\",\r\n \"40.112.39.128/26\"\
+ ,\r\n \"52.109.56.0/22\",\r\n \"52.136.24.0/24\"\
+ ,\r\n \"52.140.64.0/18\",\r\n \"52.159.64.0/19\"\
+ ,\r\n \"52.172.128.0/17\",\r\n \"52.239.135.64/26\"\
+ ,\r\n \"52.239.202.0/24\",\r\n \"52.245.96.0/22\"\
+ ,\r\n \"52.253.168.0/22\",\r\n \"104.47.210.0/23\"\
+ ,\r\n \"104.211.64.0/18\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureCentralUS\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureCentralUS\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureCentralUS\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Central US\",\r\n\
+ \ \"communityValue\": \"12076:51009\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.67.128.0/20\",\r\n \"13.67.144.0/21\"\
+ ,\r\n \"13.67.152.0/24\",\r\n \"13.67.153.0/28\"\
+ ,\r\n \"13.67.153.32/27\",\r\n \"13.67.153.64/26\"\
+ ,\r\n \"13.67.153.128/25\",\r\n \"13.67.155.0/24\"\
+ ,\r\n \"13.67.156.0/22\",\r\n \"13.67.160.0/19\"\
+ ,\r\n \"13.67.192.0/18\",\r\n \"13.86.0.0/17\",\r\
+ \n \"13.89.0.0/16\",\r\n \"20.184.64.0/18\",\r\n\
+ \ \"20.186.192.0/18\",\r\n \"23.99.128.0/17\",\r\
+ \n \"23.100.80.0/21\",\r\n \"23.100.240.0/20\",\r\
+ \n \"23.101.112.0/20\",\r\n \"23.102.202.0/24\"\
+ ,\r\n \"40.67.160.0/19\",\r\n \"40.69.128.0/18\"\
+ ,\r\n \"40.77.0.0/17\",\r\n \"40.78.128.0/18\",\r\
+ \n \"40.83.0.0/20\",\r\n \"40.83.16.0/21\",\r\n\
+ \ \"40.83.24.0/26\",\r\n \"40.83.24.64/27\",\r\n\
+ \ \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n\
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n\
+ \ \"40.83.32.0/19\",\r\n \"40.86.0.0/17\",\r\n \
+ \ \"40.87.180.0/22\",\r\n \"40.89.224.0/19\",\r\n\
+ \ \"40.90.144.0/27\",\r\n \"40.113.192.0/18\",\r\
+ \n \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\
+ \n \"40.122.64.0/18\",\r\n \"40.122.128.0/17\",\r\
+ \n \"52.109.8.0/22\",\r\n \"52.114.128.0/22\",\r\
+ \n \"52.136.30.0/24\",\r\n \"52.141.192.0/19\",\r\
+ \n \"52.141.224.0/20\",\r\n \"52.141.241.0/24\"\
+ ,\r\n \"52.141.242.0/23\",\r\n \"52.141.244.0/23\"\
+ ,\r\n \"52.141.246.0/24\",\r\n \"52.141.249.0/24\"\
+ ,\r\n \"52.141.250.0/23\",\r\n \"52.141.252.0/23\"\
+ ,\r\n \"52.141.254.0/24\",\r\n \"52.143.193.0/24\"\
+ ,\r\n \"52.143.224.0/19\",\r\n \"52.154.0.0/18\"\
+ ,\r\n \"52.154.128.0/17\",\r\n \"52.158.160.0/19\"\
+ ,\r\n \"52.158.192.0/19\",\r\n \"52.165.0.0/18\"\
+ ,\r\n \"52.165.64.0/19\",\r\n \"52.165.96.0/21\"\
+ ,\r\n \"52.165.104.0/25\",\r\n \"52.165.104.192/26\"\
+ ,\r\n \"52.165.105.0/24\",\r\n \"52.165.106.0/23\"\
+ ,\r\n \"52.165.108.0/22\",\r\n \"52.165.112.0/20\"\
+ ,\r\n \"52.165.128.0/17\",\r\n \"52.173.0.0/16\"\
+ ,\r\n \"52.176.0.0/17\",\r\n \"52.176.128.0/18\"\
+ ,\r\n \"52.176.192.0/19\",\r\n \"52.176.224.0/24\"\
+ ,\r\n \"52.176.226.0/23\",\r\n \"52.176.228.0/22\"\
+ ,\r\n \"52.180.128.0/19\",\r\n \"52.180.184.0/21\"\
+ ,\r\n \"52.182.128.0/17\",\r\n \"52.185.0.0/19\"\
+ ,\r\n \"52.185.32.0/20\",\r\n \"52.185.48.0/21\"\
+ ,\r\n \"52.185.56.0/26\",\r\n \"52.185.56.64/27\"\
+ ,\r\n \"52.185.56.96/28\",\r\n \"52.185.56.128/25\"\
+ ,\r\n \"52.185.57.0/24\",\r\n \"52.185.58.0/23\"\
+ ,\r\n \"52.185.60.0/22\",\r\n \"52.185.64.0/19\"\
+ ,\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\"\
+ ,\r\n \"52.185.112.96/27\",\r\n \"52.185.112.128/25\"\
+ ,\r\n \"52.185.113.0/24\",\r\n \"52.185.114.0/23\"\
+ ,\r\n \"52.185.116.0/22\",\r\n \"52.185.120.0/21\"\
+ ,\r\n \"52.189.0.0/17\",\r\n \"52.228.128.0/17\"\
+ ,\r\n \"52.230.128.0/17\",\r\n \"52.232.157.0/24\"\
+ ,\r\n \"52.238.192.0/18\",\r\n \"52.239.150.0/23\"\
+ ,\r\n \"52.239.177.32/27\",\r\n \"52.239.177.64/26\"\
+ ,\r\n \"52.239.177.128/25\",\r\n \"52.239.195.0/24\"\
+ ,\r\n \"52.242.128.0/17\",\r\n \"52.245.68.0/22\"\
+ ,\r\n \"52.255.0.0/19\",\r\n \"104.43.128.0/17\"\
+ ,\r\n \"104.44.88.176/31\",\r\n \"104.44.88.184/29\"\
+ ,\r\n \"104.44.91.160/27\",\r\n \"104.208.0.0/19\"\
+ ,\r\n \"104.208.32.0/20\",\r\n \"168.61.128.0/24\"\
+ ,\r\n \"168.61.129.0/25\",\r\n \"168.61.129.128/26\"\
+ ,\r\n \"168.61.129.208/28\",\r\n \"168.61.129.224/27\"\
+ ,\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\"\
+ ,\r\n \"168.61.131.0/26\",\r\n \"168.61.131.128/25\"\
+ ,\r\n \"168.61.132.0/26\",\r\n \"168.61.144.0/20\"\
+ ,\r\n \"168.61.160.0/19\",\r\n \"168.61.208.0/20\"\
+ ,\r\n \"193.149.72.0/21\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureCentralUSEUAP\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureCentralUSEUAP\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureCentralUSEUAP\",\r\
+ \n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Central US EUAP\"\
+ ,\r\n \"communityValue\": \"12076:51009\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.67.153.16/28\",\r\n \"13.67.154.0/24\"\
+ ,\r\n \"40.78.200.0/21\",\r\n \"40.83.24.96/27\"\
+ ,\r\n \"40.89.32.0/19\",\r\n \"40.122.0.0/20\",\r\
+ \n \"52.143.198.0/24\",\r\n \"52.165.104.128/26\"\
+ ,\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\"\
+ ,\r\n \"52.176.240.0/20\",\r\n \"52.180.160.0/20\"\
+ ,\r\n \"52.180.176.0/21\",\r\n \"52.185.56.112/28\"\
+ ,\r\n \"52.185.112.64/27\",\r\n \"52.239.177.0/27\"\
+ ,\r\n \"52.253.156.0/22\",\r\n \"104.208.48.0/20\"\
+ ,\r\n \"168.61.136.0/21\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureEastAsia\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureEastAsia\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureEastAsia\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure East Asia\",\r\n \
+ \ \"communityValue\": \"12076:51010\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.70.0.0/18\",\r\n \"13.72.192.0/19\"\
+ ,\r\n \"13.75.0.0/17\",\r\n \"13.88.208.0/20\",\r\
+ \n \"13.94.0.0/18\",\r\n \"20.187.64.0/18\",\r\n\
+ \ \"20.189.64.0/18\",\r\n \"23.97.64.0/19\",\r\n\
+ \ \"23.98.32.0/21\",\r\n \"23.98.40.0/22\",\r\n\
+ \ \"23.98.44.0/24\",\r\n \"23.99.96.0/19\",\r\n\
+ \ \"23.100.88.0/21\",\r\n \"23.101.0.0/20\",\r\n\
+ \ \"23.102.200.0/23\",\r\n \"23.102.224.0/19\",\r\
+ \n \"40.83.64.0/18\",\r\n \"40.87.192.0/22\",\r\n\
+ \ \"52.109.120.0/22\",\r\n \"52.114.4.0/22\",\r\n\
+ \ \"52.139.128.0/18\",\r\n \"52.175.0.0/17\",\r\n\
+ \ \"52.184.0.0/17\",\r\n \"52.229.128.0/17\",\r\n\
+ \ \"52.232.153.0/24\",\r\n \"52.239.128.0/24\",\r\
+ \n \"52.245.56.0/22\",\r\n \"52.246.128.0/20\",\r\
+ \n \"52.253.216.0/22\",\r\n \"65.52.160.0/19\",\r\
+ \n \"104.46.24.0/22\",\r\n \"104.46.160.0/19\",\r\
+ \n \"104.208.64.0/18\",\r\n \"104.214.160.0/19\"\
+ ,\r\n \"111.221.78.0/23\",\r\n \"134.170.192.0/21\"\
+ ,\r\n \"137.116.160.0/20\",\r\n \"168.63.128.0/19\"\
+ ,\r\n \"168.63.192.0/19\",\r\n \"191.234.2.0/23\"\
+ ,\r\n \"191.234.16.0/20\",\r\n \"191.237.238.0/24\"\
+ ,\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\"\
+ ,\r\n \"207.46.72.0/27\",\r\n \"207.46.77.224/28\"\
+ ,\r\n \"207.46.87.0/24\",\r\n \"207.46.89.16/28\"\
+ ,\r\n \"207.46.95.32/27\",\r\n \"207.46.128.0/19\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureEastUS\",\r\n \"id\": \"\
+ /subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureEastUS\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureEastUS\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure East US\",\r\n \
+ \ \"communityValue\": \"12076:51004\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.68.128.0/17\",\r\n \"13.72.64.0/18\"\
+ ,\r\n \"13.82.0.0/16\",\r\n \"13.90.0.0/16\",\r\n\
+ \ \"13.92.0.0/16\",\r\n \"20.185.0.0/16\",\r\n \
+ \ \"23.96.0.0/17\",\r\n \"23.98.45.0/24\",\r\n \
+ \ \"23.100.16.0/20\",\r\n \"23.101.128.0/20\",\r\n\
+ \ \"40.64.0.0/16\",\r\n \"40.71.0.0/16\",\r\n \
+ \ \"40.76.0.0/16\",\r\n \"40.78.224.0/21\",\r\n \
+ \ \"40.80.144.0/21\",\r\n \"40.85.160.0/19\",\r\n\
+ \ \"40.87.0.0/17\",\r\n \"40.87.164.0/22\",\r\n\
+ \ \"40.88.0.0/16\",\r\n \"40.90.224.0/19\",\r\n\
+ \ \"40.91.4.0/22\",\r\n \"40.112.48.0/20\",\r\n\
+ \ \"40.114.0.0/17\",\r\n \"40.117.32.0/19\",\r\n\
+ \ \"40.117.64.0/18\",\r\n \"40.117.128.0/17\",\r\
+ \n \"40.121.0.0/16\",\r\n \"52.109.12.0/22\",\r\n\
+ \ \"52.114.132.0/22\",\r\n \"52.136.64.0/18\",\r\
+ \n \"52.142.0.0/18\",\r\n \"52.146.0.0/17\",\r\n\
+ \ \"52.147.192.0/18\",\r\n \"52.149.128.0/17\",\r\
+ \n \"52.150.0.0/17\",\r\n \"52.151.128.0/17\",\r\
+ \n \"52.152.128.0/17\",\r\n \"52.154.64.0/18\",\r\
+ \n \"52.159.96.0/19\",\r\n \"52.168.0.0/16\",\r\n\
+ \ \"52.170.0.0/16\",\r\n \"52.179.0.0/17\",\r\n\
+ \ \"52.186.0.0/16\",\r\n \"52.188.0.0/16\",\r\n\
+ \ \"52.190.0.0/17\",\r\n \"52.191.0.0/18\",\r\n\
+ \ \"52.191.64.0/19\",\r\n \"52.191.96.0/21\",\r\n\
+ \ \"52.191.104.0/27\",\r\n \"52.191.105.0/24\",\r\
+ \n \"52.191.106.0/24\",\r\n \"52.191.112.0/20\"\
+ ,\r\n \"52.191.192.0/18\",\r\n \"52.224.0.0/16\"\
+ ,\r\n \"52.226.0.0/16\",\r\n \"52.232.146.0/24\"\
+ ,\r\n \"52.234.128.0/17\",\r\n \"52.239.152.0/22\"\
+ ,\r\n \"52.239.168.0/22\",\r\n \"52.240.0.0/17\"\
+ ,\r\n \"52.245.8.0/22\",\r\n \"52.245.104.0/22\"\
+ ,\r\n \"52.249.128.0/17\",\r\n \"52.255.128.0/17\"\
+ ,\r\n \"65.54.19.128/27\",\r\n \"104.41.128.0/19\"\
+ ,\r\n \"104.45.128.0/18\",\r\n \"104.45.192.0/20\"\
+ ,\r\n \"104.211.0.0/18\",\r\n \"137.116.112.0/20\"\
+ ,\r\n \"137.117.32.0/19\",\r\n \"137.117.64.0/18\"\
+ ,\r\n \"137.135.64.0/18\",\r\n \"138.91.96.0/19\"\
+ ,\r\n \"157.56.176.0/21\",\r\n \"168.61.32.0/20\"\
+ ,\r\n \"168.61.48.0/21\",\r\n \"168.62.32.0/19\"\
+ ,\r\n \"168.62.160.0/19\",\r\n \"191.233.16.0/21\"\
+ ,\r\n \"191.234.32.0/19\",\r\n \"191.236.0.0/18\"\
+ ,\r\n \"191.237.0.0/17\",\r\n \"191.238.0.0/18\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureEastUS2\",\r\n \"id\": \"\
+ /subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureEastUS2\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureEastUS2\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure East US 2\",\r\n \
+ \ \"communityValue\": \"12076:51005\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.68.0.0/17\",\r\n \"13.77.64.0/18\"\
+ ,\r\n \"20.186.0.0/17\",\r\n \"20.186.128.0/18\"\
+ ,\r\n \"23.100.64.0/21\",\r\n \"23.101.32.0/20\"\
+ ,\r\n \"23.101.144.0/20\",\r\n \"23.102.96.0/19\"\
+ ,\r\n \"23.102.204.0/22\",\r\n \"23.102.208.0/20\"\
+ ,\r\n \"40.65.192.0/18\",\r\n \"40.67.128.0/19\"\
+ ,\r\n \"40.70.0.0/18\",\r\n \"40.70.64.0/20\",\r\
+ \n \"40.70.80.0/21\",\r\n \"40.70.88.16/28\",\r\n\
+ \ \"40.70.88.32/27\",\r\n \"40.70.88.64/26\",\r\n\
+ \ \"40.70.88.128/25\",\r\n \"40.70.89.0/24\",\r\n\
+ \ \"40.70.90.0/23\",\r\n \"40.70.92.0/22\",\r\n\
+ \ \"40.70.96.0/19\",\r\n \"40.70.128.0/17\",\r\n\
+ \ \"40.75.0.0/19\",\r\n \"40.75.64.0/18\",\r\n \
+ \ \"40.79.0.0/18\",\r\n \"40.79.64.0/20\",\r\n \
+ \ \"40.79.80.0/21\",\r\n \"40.79.88.48/28\",\r\n \
+ \ \"40.79.88.64/26\",\r\n \"40.79.88.128/25\",\r\n\
+ \ \"40.79.90.0/23\",\r\n \"40.79.92.0/22\",\r\n\
+ \ \"40.84.0.0/17\",\r\n \"40.87.168.0/22\",\r\n\
+ \ \"40.91.12.0/22\",\r\n \"40.123.0.0/17\",\r\n\
+ \ \"52.109.4.0/22\",\r\n \"52.114.140.0/22\",\r\n\
+ \ \"52.136.29.0/24\",\r\n \"52.138.80.0/21\",\r\n\
+ \ \"52.138.96.0/19\",\r\n \"52.143.192.0/24\",\r\
+ \n \"52.147.128.0/18\",\r\n \"52.167.0.0/16\",\r\
+ \n \"52.177.0.0/16\",\r\n \"52.179.128.0/17\",\r\
+ \n \"52.184.128.0/19\",\r\n \"52.184.160.0/21\"\
+ ,\r\n \"52.184.168.0/28\",\r\n \"52.184.168.48/28\"\
+ ,\r\n \"52.184.168.64/26\",\r\n \"52.184.168.128/25\"\
+ ,\r\n \"52.184.169.0/24\",\r\n \"52.184.170.0/23\"\
+ ,\r\n \"52.184.172.0/22\",\r\n \"52.184.176.0/20\"\
+ ,\r\n \"52.184.192.0/18\",\r\n \"52.225.128.0/21\"\
+ ,\r\n \"52.225.136.0/27\",\r\n \"52.225.136.32/28\"\
+ ,\r\n \"52.225.136.64/26\",\r\n \"52.225.136.128/25\"\
+ ,\r\n \"52.225.137.0/24\",\r\n \"52.225.138.0/23\"\
+ ,\r\n \"52.225.140.0/22\",\r\n \"52.225.192.0/18\"\
+ ,\r\n \"52.232.151.0/24\",\r\n \"52.232.160.0/19\"\
+ ,\r\n \"52.232.192.0/18\",\r\n \"52.239.156.0/24\"\
+ ,\r\n \"52.239.157.0/25\",\r\n \"52.239.157.128/26\"\
+ ,\r\n \"52.239.157.192/27\",\r\n \"52.239.172.0/22\"\
+ ,\r\n \"52.239.184.0/25\",\r\n \"52.239.184.160/28\"\
+ ,\r\n \"52.239.184.192/27\",\r\n \"52.239.185.32/27\"\
+ ,\r\n \"52.239.185.64/27\",\r\n \"52.239.192.0/24\"\
+ ,\r\n \"52.239.198.0/24\",\r\n \"52.239.206.0/23\"\
+ ,\r\n \"52.242.64.0/18\",\r\n \"52.245.44.0/24\"\
+ ,\r\n \"52.245.45.0/25\",\r\n \"52.245.45.128/28\"\
+ ,\r\n \"52.245.45.160/27\",\r\n \"52.245.45.192/26\"\
+ ,\r\n \"52.245.46.0/27\",\r\n \"52.245.46.64/28\"\
+ ,\r\n \"52.245.46.128/28\",\r\n \"52.245.46.160/27\"\
+ ,\r\n \"52.245.46.192/28\",\r\n \"52.245.46.224/28\"\
+ ,\r\n \"52.247.0.0/17\",\r\n \"52.250.128.0/18\"\
+ ,\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\
+ \n \"52.253.64.0/20\",\r\n \"52.253.148.0/23\",\r\
+ \n \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n\
+ \ \"52.254.96.0/20\",\r\n \"52.254.112.0/21\",\r\
+ \n \"65.52.108.31/32\",\r\n \"65.52.108.38/32\"\
+ ,\r\n \"104.44.88.106/31\",\r\n \"104.44.88.112/31\"\
+ ,\r\n \"104.46.0.0/21\",\r\n \"104.46.96.0/19\"\
+ ,\r\n \"104.46.192.0/20\",\r\n \"104.47.200.0/21\"\
+ ,\r\n \"104.208.128.0/17\",\r\n \"104.209.128.0/17\"\
+ ,\r\n \"104.210.0.0/20\",\r\n \"137.116.0.0/18\"\
+ ,\r\n \"137.116.64.0/19\",\r\n \"137.116.96.0/22\"\
+ ,\r\n \"191.236.192.0/18\",\r\n \"191.237.128.0/18\"\
+ ,\r\n \"191.239.224.0/20\",\r\n \"193.149.64.0/21\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureEastUS2EUAP\",\r\n \"id\"\
+ : \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureEastUS2EUAP\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureEastUS2EUAP\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure East US 2 EUAP\",\r\
+ \n \"communityValue\": \"12076:51005\",\r\n \"communityPrefixes\"\
+ : [\r\n \"40.70.88.0/28\",\r\n \"40.74.144.0/20\"\
+ ,\r\n \"40.75.32.0/21\",\r\n \"40.79.88.0/27\",\r\
+ \n \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n\
+ \ \"40.79.96.0/19\",\r\n \"40.89.64.0/18\",\r\n\
+ \ \"52.138.64.0/20\",\r\n \"52.138.88.0/21\",\r\n\
+ \ \"52.143.212.0/23\",\r\n \"52.184.168.16/28\"\
+ ,\r\n \"52.184.168.32/28\",\r\n \"52.225.136.48/28\"\
+ ,\r\n \"52.225.144.0/20\",\r\n \"52.225.160.0/19\"\
+ ,\r\n \"52.232.150.0/24\",\r\n \"52.239.157.224/27\"\
+ ,\r\n \"52.239.165.192/26\",\r\n \"52.239.184.128/27\"\
+ ,\r\n \"52.239.184.176/28\",\r\n \"52.239.184.224/27\"\
+ ,\r\n \"52.239.185.0/28\",\r\n \"52.245.45.144/28\"\
+ ,\r\n \"52.245.46.32/27\",\r\n \"52.245.46.80/28\"\
+ ,\r\n \"52.245.46.96/28\",\r\n \"52.245.47.0/24\"\
+ ,\r\n \"52.253.150.0/23\",\r\n \"52.253.152.0/23\"\
+ ,\r\n \"52.254.120.0/21\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureJapanEast\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureJapanEast\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureJapanEast\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Japan East\",\r\n\
+ \ \"communityValue\": \"12076:51012\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.71.128.0/19\",\r\n \"13.73.0.0/19\"\
+ ,\r\n \"13.78.0.0/17\",\r\n \"20.188.0.0/19\",\r\
+ \n \"23.98.57.0/24\",\r\n \"23.100.96.0/21\",\r\n\
+ \ \"23.102.64.0/19\",\r\n \"40.87.200.0/22\",\r\n\
+ \ \"40.115.128.0/17\",\r\n \"52.109.52.0/22\",\r\
+ \n \"52.114.32.0/22\",\r\n \"52.140.192.0/18\",\r\
+ \n \"52.155.96.0/19\",\r\n \"52.156.32.0/19\",\r\
+ \n \"52.185.128.0/18\",\r\n \"52.232.155.0/24\"\
+ ,\r\n \"52.239.144.0/23\",\r\n \"52.243.32.0/19\"\
+ ,\r\n \"52.245.36.0/22\",\r\n \"52.246.160.0/19\"\
+ ,\r\n \"52.253.96.0/19\",\r\n \"52.253.176.0/22\"\
+ ,\r\n \"104.41.160.0/19\",\r\n \"104.46.208.0/20\"\
+ ,\r\n \"138.91.0.0/20\",\r\n \"191.234.138.0/23\"\
+ ,\r\n \"191.237.240.0/23\",\r\n \"191.239.128.0/19\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureJapanWest\",\r\n \"id\":\
+ \ \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureJapanWest\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureJapanWest\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Japan West\",\r\n\
+ \ \"communityValue\": \"12076:51013\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.73.232.0/21\",\r\n \"20.189.192.0/18\"\
+ ,\r\n \"23.98.56.0/24\",\r\n \"23.100.104.0/21\"\
+ ,\r\n \"40.74.64.0/18\",\r\n \"40.74.128.0/20\"\
+ ,\r\n \"40.87.204.0/22\",\r\n \"52.114.36.0/22\"\
+ ,\r\n \"52.147.64.0/19\",\r\n \"52.175.128.0/18\"\
+ ,\r\n \"52.232.158.0/24\",\r\n \"52.239.146.0/23\"\
+ ,\r\n \"52.245.92.0/22\",\r\n \"52.253.172.0/22\"\
+ ,\r\n \"104.46.224.0/20\",\r\n \"104.214.128.0/19\"\
+ ,\r\n \"104.215.0.0/18\",\r\n \"138.91.16.0/20\"\
+ ,\r\n \"191.233.32.0/19\",\r\n \"191.237.236.0/24\"\
+ ,\r\n \"191.238.68.0/24\",\r\n \"191.238.80.0/21\"\
+ ,\r\n \"191.238.88.0/22\",\r\n \"191.238.92.0/23\"\
+ ,\r\n \"191.239.96.0/20\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureKoreaCentral\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureKoreaCentral\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureKoreaCentral\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Korea Central\",\r\
+ \n \"communityValue\": \"12076:51029\",\r\n \"communityPrefixes\"\
+ : [\r\n \"40.80.36.0/22\",\r\n \"52.109.44.0/22\"\
+ ,\r\n \"52.141.0.0/18\",\r\n \"52.231.0.0/17\",\r\
+ \n \"52.232.145.0/24\",\r\n \"52.239.148.0/27\"\
+ ,\r\n \"52.239.190.128/26\",\r\n \"52.245.112.0/22\"\
+ ,\r\n \"52.253.192.0/22\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureKoreaSouth\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureKoreaSouth\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureKoreaSouth\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Korea South\",\r\n\
+ \ \"communityValue\": \"12076:51028\",\r\n \"communityPrefixes\"\
+ : [\r\n \"40.80.32.0/22\",\r\n \"40.89.192.0/19\"\
+ ,\r\n \"52.109.48.0/22\",\r\n \"52.147.96.0/19\"\
+ ,\r\n \"52.231.128.0/17\",\r\n \"52.232.144.0/24\"\
+ ,\r\n \"52.239.165.160/27\",\r\n \"52.239.190.192/26\"\
+ ,\r\n \"52.245.100.0/22\",\r\n \"52.253.188.0/22\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureNorthCentralUS\",\r\n \"\
+ id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureNorthCentralUS\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureNorthCentralUS\",\r\
+ \n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure North Central US\"\
+ ,\r\n \"communityValue\": \"12076:51007\",\r\n \"communityPrefixes\"\
+ : [\r\n \"23.96.128.0/17\",\r\n \"23.98.48.0/21\"\
+ ,\r\n \"23.100.72.0/21\",\r\n \"23.100.224.0/20\"\
+ ,\r\n \"23.101.160.0/20\",\r\n \"40.87.172.0/22\"\
+ ,\r\n \"40.91.24.0/22\",\r\n \"40.116.0.0/16\",\r\
+ \n \"52.109.16.0/22\",\r\n \"52.141.128.0/18\",\r\
+ \n \"52.162.0.0/16\",\r\n \"52.232.156.0/24\",\r\
+ \n \"52.237.128.0/18\",\r\n \"52.239.149.0/24\"\
+ ,\r\n \"52.239.186.0/24\",\r\n \"52.240.128.0/17\"\
+ ,\r\n \"52.245.72.0/22\",\r\n \"52.251.128.0/17\"\
+ ,\r\n \"52.252.128.0/17\",\r\n \"52.253.144.0/22\"\
+ ,\r\n \"65.52.0.0/19\",\r\n \"65.52.48.0/20\",\r\
+ \n \"65.52.106.16/28\",\r\n \"65.52.106.32/27\"\
+ ,\r\n \"65.52.106.64/26\",\r\n \"65.52.106.128/27\"\
+ ,\r\n \"65.52.192.0/19\",\r\n \"65.52.232.0/21\"\
+ ,\r\n \"65.52.240.0/21\",\r\n \"104.47.220.0/22\"\
+ ,\r\n \"157.55.24.0/21\",\r\n \"157.55.60.208/28\"\
+ ,\r\n \"157.55.60.224/27\",\r\n \"157.55.64.0/20\"\
+ ,\r\n \"157.55.115.0/25\",\r\n \"157.55.136.0/21\"\
+ ,\r\n \"157.55.151.0/28\",\r\n \"157.55.160.0/20\"\
+ ,\r\n \"157.55.208.0/21\",\r\n \"157.55.248.0/21\"\
+ ,\r\n \"157.56.8.0/21\",\r\n \"157.56.24.160/27\"\
+ ,\r\n \"157.56.24.192/28\",\r\n \"157.56.28.0/22\"\
+ ,\r\n \"157.56.216.0/26\",\r\n \"168.62.96.0/19\"\
+ ,\r\n \"168.62.224.0/19\",\r\n \"191.233.144.0/24\"\
+ ,\r\n \"191.233.145.0/28\",\r\n \"191.233.152.0/21\"\
+ ,\r\n \"191.233.160.0/20\",\r\n \"191.233.176.0/21\"\
+ ,\r\n \"191.236.128.0/18\",\r\n \"207.46.193.192/28\"\
+ ,\r\n \"207.46.193.224/27\",\r\n \"207.46.198.128/25\"\
+ ,\r\n \"207.46.200.96/27\",\r\n \"207.46.200.176/28\"\
+ ,\r\n \"207.46.202.128/28\",\r\n \"207.46.205.0/24\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureNorthEurope\",\r\n \"id\"\
+ : \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureNorthEurope\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureNorthEurope\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure North Europe\",\r\n\
+ \ \"communityValue\": \"12076:51003\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.69.128.0/17\",\r\n \"13.70.192.0/18\"\
+ ,\r\n \"13.74.0.0/16\",\r\n \"13.79.0.0/16\",\r\n\
+ \ \"13.94.64.0/18\",\r\n \"23.100.48.0/20\",\r\n\
+ \ \"23.100.128.0/18\",\r\n \"23.101.48.0/20\",\r\
+ \n \"23.102.0.0/18\",\r\n \"40.67.224.0/19\",\r\n\
+ \ \"40.69.0.0/18\",\r\n \"40.69.64.0/19\",\r\n \
+ \ \"40.69.192.0/19\",\r\n \"40.85.0.0/17\",\r\n \
+ \ \"40.85.128.0/20\",\r\n \"40.87.128.0/19\",\r\n\
+ \ \"40.87.188.0/22\",\r\n \"40.90.145.224/27\",\r\
+ \n \"40.91.20.0/22\",\r\n \"40.112.0.0/19\",\r\n\
+ \ \"40.112.36.0/25\",\r\n \"40.112.37.64/26\",\r\
+ \n \"40.112.64.0/19\",\r\n \"40.113.0.0/18\",\r\n\
+ \ \"40.113.64.0/19\",\r\n \"40.115.96.0/19\",\r\n\
+ \ \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\
+ \n \"52.109.76.0/22\",\r\n \"52.114.76.0/22\",\r\
+ \n \"52.138.128.0/17\",\r\n \"52.142.64.0/18\",\r\
+ \n \"52.143.195.0/24\",\r\n \"52.143.209.0/24\"\
+ ,\r\n \"52.146.128.0/17\",\r\n \"52.155.64.0/19\"\
+ ,\r\n \"52.155.128.0/17\",\r\n \"52.156.192.0/18\"\
+ ,\r\n \"52.158.0.0/17\",\r\n \"52.164.0.0/16\",\r\
+ \n \"52.169.0.0/16\",\r\n \"52.178.128.0/17\",\r\
+ \n \"52.232.148.0/24\",\r\n \"52.236.0.0/17\",\r\
+ \n \"52.239.136.0/22\",\r\n \"52.245.40.0/22\",\r\
+ \n \"52.245.88.0/22\",\r\n \"52.253.184.0/22\",\r\
+ \n \"65.52.64.0/20\",\r\n \"65.52.224.0/21\",\r\n\
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\
+ \n \"94.245.114.1/32\",\r\n \"94.245.114.2/31\"\
+ ,\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\"\
+ ,\r\n \"94.245.114.34/31\",\r\n \"94.245.114.36/32\"\
+ ,\r\n \"94.245.117.96/27\",\r\n \"94.245.118.0/27\"\
+ ,\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\"\
+ ,\r\n \"94.245.118.68/32\",\r\n \"94.245.118.97/32\"\
+ ,\r\n \"94.245.118.98/31\",\r\n \"94.245.118.100/32\"\
+ ,\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\"\
+ ,\r\n \"94.245.118.132/32\",\r\n \"94.245.120.128/28\"\
+ ,\r\n \"94.245.122.0/24\",\r\n \"94.245.123.144/28\"\
+ ,\r\n \"94.245.123.176/28\",\r\n \"104.41.64.0/18\"\
+ ,\r\n \"104.41.192.0/18\",\r\n \"104.44.88.66/31\"\
+ ,\r\n \"104.44.91.64/27\",\r\n \"104.45.80.0/20\"\
+ ,\r\n \"104.45.96.0/19\",\r\n \"104.46.8.0/21\"\
+ ,\r\n \"104.46.64.0/19\",\r\n \"104.47.218.0/23\"\
+ ,\r\n \"137.116.224.0/19\",\r\n \"137.135.128.0/17\"\
+ ,\r\n \"138.91.48.0/20\",\r\n \"157.55.3.0/24\"\
+ ,\r\n \"157.55.10.160/29\",\r\n \"157.55.10.176/28\"\
+ ,\r\n \"157.55.204.128/25\",\r\n \"157.55.230.160/27\"\
+ ,\r\n \"168.61.80.0/20\",\r\n \"168.61.96.0/19\"\
+ ,\r\n \"168.63.32.0/19\",\r\n \"168.63.64.0/20\"\
+ ,\r\n \"168.63.80.0/21\",\r\n \"168.63.92.0/22\"\
+ ,\r\n \"191.235.128.0/18\",\r\n \"191.235.192.0/22\"\
+ ,\r\n \"191.235.208.0/20\",\r\n \"191.235.255.0/24\"\
+ ,\r\n \"191.237.192.0/23\",\r\n \"191.237.194.0/24\"\
+ ,\r\n \"191.237.196.0/24\",\r\n \"191.237.208.0/20\"\
+ ,\r\n \"191.238.96.0/19\",\r\n \"191.239.208.0/20\"\
+ ,\r\n \"193.149.88.0/21\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureSouthCentralUS\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureSouthCentralUS\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureSouthCentralUS\",\r\
+ \n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure South Central US\"\
+ ,\r\n \"communityValue\": \"12076:51008\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.65.0.0/16\",\r\n \"13.66.0.0/17\",\r\
+ \n \"13.73.240.0/20\",\r\n \"13.84.0.0/15\",\r\n\
+ \ \"20.188.64.0/19\",\r\n \"20.189.0.0/18\",\r\n\
+ \ \"23.98.128.0/17\",\r\n \"23.100.120.0/21\",\r\
+ \n \"23.100.192.0/19\",\r\n \"23.101.176.0/20\"\
+ ,\r\n \"23.102.128.0/18\",\r\n \"40.74.160.0/19\"\
+ ,\r\n \"40.74.192.0/18\",\r\n \"40.84.128.0/17\"\
+ ,\r\n \"40.86.128.0/19\",\r\n \"40.87.176.0/22\"\
+ ,\r\n \"40.91.16.0/22\",\r\n \"40.124.0.0/16\",\r\
+ \n \"52.109.20.0/22\",\r\n \"52.114.144.0/22\",\r\
+ \n \"52.141.64.0/18\",\r\n \"52.152.0.0/17\",\r\n\
+ \ \"52.153.64.0/18\",\r\n \"52.153.192.0/18\",\r\
+ \n \"52.171.0.0/16\",\r\n \"52.183.192.0/18\",\r\
+ \n \"52.185.192.0/18\",\r\n \"52.189.128.0/18\"\
+ ,\r\n \"52.232.159.0/24\",\r\n \"52.239.158.0/23\"\
+ ,\r\n \"52.239.178.0/23\",\r\n \"52.239.180.0/22\"\
+ ,\r\n \"52.239.199.0/24\",\r\n \"52.239.200.0/23\"\
+ ,\r\n \"52.239.203.0/24\",\r\n \"52.239.204.0/24\"\
+ ,\r\n \"52.245.24.0/22\",\r\n \"52.248.0.0/17\"\
+ ,\r\n \"52.249.0.0/18\",\r\n \"52.253.0.0/18\",\r\
+ \n \"52.255.64.0/18\",\r\n \"65.52.32.0/21\",\r\n\
+ \ \"65.54.55.160/27\",\r\n \"65.54.55.224/27\",\r\
+ \n \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n\
+ \ \"70.37.160.0/21\",\r\n \"104.44.128.0/18\",\r\
+ \n \"104.47.208.0/23\",\r\n \"104.210.128.0/19\"\
+ ,\r\n \"104.210.176.0/20\",\r\n \"104.210.192.0/19\"\
+ ,\r\n \"104.214.0.0/17\",\r\n \"104.215.64.0/18\"\
+ ,\r\n \"157.55.51.224/28\",\r\n \"157.55.80.0/21\"\
+ ,\r\n \"157.55.103.32/27\",\r\n \"157.55.153.224/28\"\
+ ,\r\n \"157.55.176.0/20\",\r\n \"157.55.192.0/21\"\
+ ,\r\n \"157.55.200.0/22\",\r\n \"157.55.204.0/27\"\
+ ,\r\n \"157.55.204.32/28\",\r\n \"168.62.128.0/19\"\
+ ,\r\n \"191.238.136.0/21\",\r\n \"191.238.144.0/20\"\
+ ,\r\n \"191.238.160.0/19\",\r\n \"191.238.224.0/19\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureSouthIndia\",\r\n \"id\"\
+ : \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureSouthIndia\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureSouthIndia\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure South India\",\r\n\
+ \ \"communityValue\": \"12076:51019\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.71.64.0/18\",\r\n \"40.78.192.0/21\"\
+ ,\r\n \"40.87.216.0/22\",\r\n \"52.109.60.0/22\"\
+ ,\r\n \"52.114.24.0/22\",\r\n \"52.136.17.0/24\"\
+ ,\r\n \"52.140.0.0/18\",\r\n \"52.172.0.0/17\",\r\
+ \n \"52.239.135.128/26\",\r\n \"52.239.188.0/24\"\
+ ,\r\n \"52.245.84.0/22\",\r\n \"52.253.164.0/22\"\
+ ,\r\n \"104.47.214.0/23\",\r\n \"104.211.192.0/18\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureSoutheastAsia\",\r\n \"id\"\
+ : \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureSoutheastAsia\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureSoutheastAsia\",\r\
+ \n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure Southeast Asia\",\r\
+ \n \"communityValue\": \"12076:51011\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.67.0.0/17\",\r\n \"13.76.0.0/16\",\r\
+ \n \"20.184.0.0/18\",\r\n \"20.188.96.0/19\",\r\n\
+ \ \"23.97.48.0/20\",\r\n \"23.98.64.0/18\",\r\n\
+ \ \"23.100.112.0/21\",\r\n \"23.101.16.0/20\",\r\
+ \n \"40.65.128.0/18\",\r\n \"40.87.196.0/22\",\r\
+ \n \"40.90.160.0/19\",\r\n \"52.109.124.0/22\",\r\
+ \n \"52.114.12.0/22\",\r\n \"52.136.26.0/24\",\r\
+ \n \"52.139.192.0/18\",\r\n \"52.143.196.0/24\"\
+ ,\r\n \"52.143.210.0/24\",\r\n \"52.148.64.0/18\"\
+ ,\r\n \"52.163.0.0/16\",\r\n \"52.187.0.0/17\",\r\
+ \n \"52.187.128.0/18\",\r\n \"52.230.0.0/17\",\r\
+ \n \"52.237.64.0/18\",\r\n \"52.239.129.0/24\",\r\
+ \n \"52.239.197.0/24\",\r\n \"52.245.80.0/22\",\r\
+ \n \"52.253.80.0/20\",\r\n \"52.253.212.0/22\",\r\
+ \n \"104.43.0.0/17\",\r\n \"104.44.89.39/32\",\r\
+ \n \"104.44.89.42/32\",\r\n \"104.46.128.0/19\"\
+ ,\r\n \"104.215.128.0/17\",\r\n \"111.221.80.0/20\"\
+ ,\r\n \"111.221.96.0/20\",\r\n \"137.116.128.0/19\"\
+ ,\r\n \"138.91.32.0/20\",\r\n \"168.63.90.0/24\"\
+ ,\r\n \"168.63.91.0/26\",\r\n \"168.63.160.0/19\"\
+ ,\r\n \"168.63.224.0/19\",\r\n \"191.238.64.0/23\"\
+ ,\r\n \"207.46.50.128/28\",\r\n \"207.46.59.64/27\"\
+ ,\r\n \"207.46.63.64/27\",\r\n \"207.46.63.128/25\"\
+ ,\r\n \"207.46.224.0/20\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureUKSouth\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureUKSouth\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureUKSouth\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure UK South\",\r\n \
+ \ \"communityValue\": \"12076:51024\",\r\n \"communityPrefixes\"\
+ : [\r\n \"40.80.0.0/22\",\r\n \"51.140.0.0/17\"\
+ ,\r\n \"51.140.128.0/18\",\r\n \"51.141.128.32/27\"\
+ ,\r\n \"51.141.129.64/26\",\r\n \"51.141.135.0/24\"\
+ ,\r\n \"51.141.144.0/22\",\r\n \"51.141.192.0/18\"\
+ ,\r\n \"51.143.128.0/18\",\r\n \"51.145.0.0/17\"\
+ ,\r\n \"52.109.28.0/22\",\r\n \"52.114.80.0/22\"\
+ ,\r\n \"52.114.88.0/22\",\r\n \"52.136.21.0/24\"\
+ ,\r\n \"52.151.64.0/18\",\r\n \"52.239.187.0/25\"\
+ ,\r\n \"52.245.64.0/22\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureUKWest\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureUKWest\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureUKWest\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure UK West\",\r\n \
+ \ \"communityValue\": \"12076:51025\",\r\n \"communityPrefixes\"\
+ : [\r\n \"40.87.228.0/22\",\r\n \"51.137.128.0/19\"\
+ ,\r\n \"51.140.192.0/18\",\r\n \"51.141.0.0/17\"\
+ ,\r\n \"51.141.128.0/27\",\r\n \"51.141.128.64/26\"\
+ ,\r\n \"51.141.128.128/26\",\r\n \"51.141.129.128/26\"\
+ ,\r\n \"51.141.134.0/24\",\r\n \"51.141.148.0/22\"\
+ ,\r\n \"52.109.32.0/22\",\r\n \"52.114.84.0/22\"\
+ ,\r\n \"52.114.92.0/22\",\r\n \"52.136.20.0/24\"\
+ ,\r\n \"52.142.128.0/18\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureWestCentralUS\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureWestCentralUS\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureWestCentralUS\",\r\
+ \n \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure West Central US\"\
+ ,\r\n \"communityValue\": \"12076:51027\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.71.192.0/18\",\r\n \"13.77.192.0/19\"\
+ ,\r\n \"13.78.128.0/17\",\r\n \"52.136.4.0/22\"\
+ ,\r\n \"52.143.214.0/24\",\r\n \"52.148.0.0/18\"\
+ ,\r\n \"52.150.128.0/17\",\r\n \"52.153.128.0/18\"\
+ ,\r\n \"52.159.0.0/18\",\r\n \"52.161.0.0/16\",\r\
+ \n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\"\
+ ,\r\n \"52.245.60.0/22\",\r\n \"52.253.128.0/20\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureWestEurope\",\r\n \"id\"\
+ : \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureWestEurope\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureWestEurope\",\r\n\
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure West Europe\",\r\n\
+ \ \"communityValue\": \"12076:51002\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.69.0.0/17\",\r\n \"13.73.128.0/18\"\
+ ,\r\n \"13.73.224.0/21\",\r\n \"13.80.0.0/15\",\r\
+ \n \"13.88.200.0/21\",\r\n \"13.93.0.0/17\",\r\n\
+ \ \"13.94.128.0/17\",\r\n \"13.95.0.0/16\",\r\n\
+ \ \"23.97.128.0/17\",\r\n \"23.98.46.0/24\",\r\n\
+ \ \"23.100.0.0/20\",\r\n \"23.101.64.0/20\",\r\n\
+ \ \"40.67.192.0/19\",\r\n \"40.68.0.0/16\",\r\n\
+ \ \"40.74.0.0/18\",\r\n \"40.87.184.0/22\",\r\n\
+ \ \"40.90.145.192/27\",\r\n \"40.91.192.0/18\",\r\
+ \n \"40.112.36.128/25\",\r\n \"40.112.37.0/26\"\
+ ,\r\n \"40.112.38.192/26\",\r\n \"40.112.96.0/19\"\
+ ,\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\"\
+ ,\r\n \"40.114.128.0/17\",\r\n \"40.115.0.0/18\"\
+ ,\r\n \"40.118.0.0/17\",\r\n \"51.136.0.0/16\",\r\
+ \n \"51.137.0.0/17\",\r\n \"51.144.0.0/16\",\r\n\
+ \ \"51.145.128.0/17\",\r\n \"52.109.88.0/22\",\r\
+ \n \"52.114.72.0/22\",\r\n \"52.136.192.0/18\",\r\
+ \n \"52.137.0.0/18\",\r\n \"52.142.192.0/18\",\r\
+ \n \"52.143.0.0/18\",\r\n \"52.143.194.0/24\",\r\
+ \n \"52.143.208.0/24\",\r\n \"52.148.192.0/18\"\
+ ,\r\n \"52.149.64.0/18\",\r\n \"52.157.64.0/18\"\
+ ,\r\n \"52.157.128.0/17\",\r\n \"52.166.0.0/16\"\
+ ,\r\n \"52.174.0.0/16\",\r\n \"52.178.0.0/17\",\r\
+ \n \"52.232.0.0/17\",\r\n \"52.232.147.0/24\",\r\
+ \n \"52.233.128.0/17\",\r\n \"52.236.128.0/17\"\
+ ,\r\n \"52.239.140.0/22\",\r\n \"52.245.48.0/22\"\
+ ,\r\n \"52.245.124.0/22\",\r\n \"52.253.180.0/22\"\
+ ,\r\n \"65.52.128.0/19\",\r\n \"104.40.128.0/17\"\
+ ,\r\n \"104.44.90.194/31\",\r\n \"104.44.93.192/27\"\
+ ,\r\n \"104.45.0.0/18\",\r\n \"104.45.64.0/20\"\
+ ,\r\n \"104.46.16.0/21\",\r\n \"104.46.32.0/19\"\
+ ,\r\n \"104.47.128.0/18\",\r\n \"104.47.216.64/26\"\
+ ,\r\n \"104.214.192.0/18\",\r\n \"137.116.192.0/19\"\
+ ,\r\n \"137.117.128.0/17\",\r\n \"157.55.8.64/26\"\
+ ,\r\n \"157.55.8.144/28\",\r\n \"157.56.117.64/27\"\
+ ,\r\n \"168.61.56.0/21\",\r\n \"168.63.0.0/19\"\
+ ,\r\n \"168.63.96.0/19\",\r\n \"191.233.64.0/18\"\
+ ,\r\n \"191.237.232.0/22\",\r\n \"191.239.200.0/22\"\
+ ,\r\n \"193.149.80.0/21\",\r\n \"213.199.128.0/20\"\
+ ,\r\n \"213.199.180.32/28\",\r\n \"213.199.180.96/27\"\
+ ,\r\n \"213.199.180.192/27\",\r\n \"213.199.183.0/24\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureWestIndia\",\r\n \"id\":\
+ \ \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureWestIndia\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureWestIndia\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure West India\",\r\n\
+ \ \"communityValue\": \"12076:51018\",\r\n \"communityPrefixes\"\
+ : [\r\n \"40.87.220.0/22\",\r\n \"52.109.64.0/22\"\
+ ,\r\n \"52.114.28.0/22\",\r\n \"52.136.16.0/24\"\
+ ,\r\n \"52.136.32.0/19\",\r\n \"52.140.128.0/18\"\
+ ,\r\n \"52.183.128.0/18\",\r\n \"52.239.135.192/26\"\
+ ,\r\n \"52.239.187.128/25\",\r\n \"52.245.76.0/22\"\
+ ,\r\n \"52.249.64.0/19\",\r\n \"52.253.160.0/22\"\
+ ,\r\n \"104.47.212.0/23\",\r\n \"104.211.128.0/18\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n },\r\n {\r\n \"name\": \"AzureWestUS\",\r\n \"id\": \"\
+ /subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureWestUS\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureWestUS\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure West US\",\r\n \
+ \ \"communityValue\": \"12076:51006\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.64.0.0/16\",\r\n \"13.73.32.0/19\"\
+ ,\r\n \"13.83.0.0/16\",\r\n \"13.86.128.0/17\",\r\
+ \n \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n\
+ \ \"13.88.128.0/18\",\r\n \"13.88.192.0/23\",\r\n\
+ \ \"13.91.0.0/16\",\r\n \"13.93.128.0/17\",\r\n\
+ \ \"20.184.128.0/17\",\r\n \"20.187.128.0/17\",\r\
+ \n \"20.189.128.0/18\",\r\n \"23.99.0.0/18\",\r\n\
+ \ \"23.99.64.0/19\",\r\n \"23.100.32.0/20\",\r\n\
+ \ \"23.101.192.0/20\",\r\n \"40.65.0.0/18\",\r\n\
+ \ \"40.75.128.0/17\",\r\n \"40.78.0.0/17\",\r\n\
+ \ \"40.80.152.0/21\",\r\n \"40.83.128.0/17\",\r\n\
+ \ \"40.85.144.0/20\",\r\n \"40.86.160.0/19\",\r\n\
+ \ \"40.87.160.0/22\",\r\n \"40.112.128.0/17\",\r\
+ \n \"40.118.128.0/17\",\r\n \"52.108.0.0/21\",\r\
+ \n \"52.109.0.0/22\",\r\n \"52.114.152.0/21\",\r\
+ \n \"52.137.128.0/17\",\r\n \"52.153.0.0/18\",\r\
+ \n \"52.155.32.0/19\",\r\n \"52.157.0.0/18\",\r\n\
+ \ \"52.159.128.0/17\",\r\n \"52.160.0.0/16\",\r\n\
+ \ \"52.180.0.0/17\",\r\n \"52.190.128.0/17\",\r\n\
+ \ \"52.225.0.0/17\",\r\n \"52.232.149.0/24\",\r\n\
+ \ \"52.234.0.0/17\",\r\n \"52.238.0.0/18\",\r\n\
+ \ \"52.239.0.0/17\",\r\n \"52.239.160.0/22\",\r\n\
+ \ \"52.241.0.0/16\",\r\n \"52.245.12.0/22\",\r\n\
+ \ \"52.245.108.0/22\",\r\n \"52.246.0.0/17\",\r\n\
+ \ \"52.248.128.0/17\",\r\n \"52.250.192.0/18\",\r\
+ \n \"52.254.128.0/17\",\r\n \"65.52.112.0/20\",\r\
+ \n \"104.40.0.0/17\",\r\n \"104.42.0.0/16\",\r\n\
+ \ \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\
+ \n \"104.209.0.0/18\",\r\n \"104.210.32.0/19\",\r\
+ \n \"137.116.184.0/21\",\r\n \"137.117.0.0/19\"\
+ ,\r\n \"137.135.0.0/18\",\r\n \"138.91.64.0/19\"\
+ ,\r\n \"138.91.128.0/17\",\r\n \"157.56.160.0/21\"\
+ ,\r\n \"168.61.0.0/19\",\r\n \"168.61.64.0/20\"\
+ ,\r\n \"168.62.0.0/19\",\r\n \"168.62.192.0/19\"\
+ ,\r\n \"168.63.88.0/23\",\r\n \"191.233.8.0/21\"\
+ ,\r\n \"191.236.64.0/18\",\r\n \"191.238.70.0/23\"\
+ ,\r\n \"191.239.0.0/18\"\r\n ],\r\n \"\
+ isAuthorizedToUse\": true,\r\n \"serviceGroup\": \"Azure\"\r\n\
+ \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\"\
+ : \"AzureWestUS2\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/bgpServiceCommunities/AzureWestUS2\"\
+ ,\r\n \"type\": \"Microsoft.Network/bgpServiceCommunities\",\r\n \
+ \ \"properties\": {\r\n \"serviceName\": \"AzureWestUS2\",\r\n \
+ \ \"bgpCommunities\": [\r\n {\r\n \"serviceSupportedRegion\"\
+ : \"Global\",\r\n \"communityName\": \"Azure West US 2\",\r\n \
+ \ \"communityValue\": \"12076:51026\",\r\n \"communityPrefixes\"\
+ : [\r\n \"13.66.128.0/17\",\r\n \"13.77.128.0/18\"\
+ ,\r\n \"20.187.0.0/18\",\r\n \"23.98.47.0/24\",\r\
+ \n \"23.102.192.0/21\",\r\n \"23.102.203.0/24\"\
+ ,\r\n \"40.65.64.0/18\",\r\n \"40.87.232.0/21\"\
+ ,\r\n \"40.90.192.0/19\",\r\n \"40.91.0.0/22\",\r\
+ \n \"40.91.64.0/18\",\r\n \"40.91.128.0/18\",\r\n\
+ \ \"51.141.160.0/19\",\r\n \"51.143.0.0/17\",\r\n\
+ \ \"52.109.24.0/22\",\r\n \"52.136.0.0/22\",\r\n\
+ \ \"52.137.64.0/18\",\r\n \"52.143.64.0/18\",\r\n\
+ \ \"52.143.197.0/24\",\r\n \"52.143.211.0/24\",\r\
+ \n \"52.148.128.0/18\",\r\n \"52.149.0.0/18\",\r\
+ \n \"52.151.0.0/18\",\r\n \"52.156.64.0/18\",\r\n\
+ \ \"52.156.128.0/19\",\r\n \"52.158.224.0/19\",\r\
+ \n \"52.175.192.0/18\",\r\n \"52.183.0.0/17\",\r\
+ \n \"52.191.128.0/18\",\r\n \"52.229.0.0/18\",\r\
+ \n \"52.232.152.0/24\",\r\n \"52.233.64.0/18\",\r\
+ \n \"52.235.64.0/18\",\r\n \"52.239.148.128/25\"\
+ ,\r\n \"52.239.176.128/25\",\r\n \"52.239.193.0/24\"\
+ ,\r\n \"52.245.52.0/22\",\r\n \"52.246.192.0/18\"\
+ ,\r\n \"52.247.192.0/18\",\r\n \"52.250.0.0/17\"\
+ ,\r\n \"65.52.98.96/28\",\r\n \"65.52.99.0/24\"\
+ ,\r\n \"65.52.101.0/24\",\r\n \"65.52.103.128/27\"\
+ ,\r\n \"65.55.19.64/26\",\r\n \"65.55.19.128/26\"\
+ ,\r\n \"65.55.25.96/28\",\r\n \"65.55.32.128/27\"\
+ ,\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\"\
+ ,\r\n \"65.55.33.176/28\",\r\n \"65.55.33.192/28\"\
+ ,\r\n \"65.55.35.192/27\",\r\n \"65.55.53.112/28\"\
+ ,\r\n \"70.37.0.0/19\",\r\n \"70.37.32.0/20\",\r\
+ \n \"137.116.176.0/21\",\r\n \"157.56.19.224/27\"\
+ ,\r\n \"157.56.21.32/27\",\r\n \"157.56.21.64/26\"\
+ ,\r\n \"157.56.21.128/26\",\r\n \"157.56.21.192/27\"\
+ ,\r\n \"168.62.64.0/19\",\r\n \"191.237.224.0/21\"\
+ ,\r\n \"191.237.244.0/22\",\r\n \"191.239.196.0/24\"\
+ ,\r\n \"191.239.197.0/28\",\r\n \"209.240.212.0/23\"\
+ \r\n ],\r\n \"isAuthorizedToUse\": true,\r\n \
+ \ \"serviceGroup\": \"Azure\"\r\n }\r\n ]\r\n }\r\
+ \n }\r\n ]\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['2900']
+ content-length: ['85319']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:09 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:34 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -443,12 +1637,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_route_filter000001?api-version=2017-05-10
@@ -458,41 +1652,41 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:09 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:34 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"communities": ["12076:5040", "12076:5030"],
- "access": "Allow", "routeFilterRuleType": "Community"}}'
+ body: '{"properties": {"routeFilterRuleType": "Community", "communities": ["12076:5040",
+ "12076:5030"], "access": "Allow"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['138']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"5f6aa8a1-81dc-4103-8704-1a256155a98c\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c1fba309-b940-422a-a824-6b209e7f4761\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
access\": \"Allow\",\r\n \"routeFilterRuleType\": \"Community\",\r\n \
\ \"communities\": [\r\n \"12076:5040\",\r\n \"12076:5030\"\r\n\
\ ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eee053b4-a794-45c7-a5d4-2e7ab1911911?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2666ab9f-f255-413a-b195-b1bb1105a3a1?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['505']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:09 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -504,15 +1698,15 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eee053b4-a794-45c7-a5d4-2e7ab1911911?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2666ab9f-f255-413a-b195-b1bb1105a3a1?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\"\
: \" SubscriptionNotAuthorized\",\r\n \"message\": \" 0b1f6471-1bf0-4dda-aec3-cb9272f09590\"\
@@ -521,7 +1715,7 @@ interactions:
cache-control: [no-cache]
content-length: ['165']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:21 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -534,18 +1728,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"7ed25553-1e15-4cff-bc0c-b41a45367b06\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"7e04fafd-5642-4aee-a470-98c5b2e9556f\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"access\"\
: \"Allow\",\r\n \"routeFilterRuleType\": \"Community\",\r\n \"communities\"\
: [\r\n \"12076:5040\",\r\n \"12076:5030\"\r\n ]\r\n }\r\n}"}
@@ -553,8 +1747,8 @@ interactions:
cache-control: [no-cache]
content-length: ['503']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:21 GMT']
- etag: [W/"7ed25553-1e15-4cff-bc0c-b41a45367b06"]
+ date: ['Mon, 16 Oct 2017 20:56:47 GMT']
+ etag: [W/"7e04fafd-5642-4aee-a470-98c5b2e9556f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -563,57 +1757,56 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"name": "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1",
- "properties": {"communities": ["12076:5040", "12076:5030"], "access": "Deny",
- "routeFilterRuleType": "Community"}}'''
+ body: 'b''{"properties": {"routeFilterRuleType": "Community", "communities": ["12076:5040",
+ "12076:5030"], "access": "Deny"}, "name": "rule1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['356']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"22b3698b-ffe1-4e83-afa7-fd02cb50b823\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"7b157d84-0607-4384-abe0-bef7100b5d94\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
access\": \"Deny\",\r\n \"routeFilterRuleType\": \"Community\",\r\n \
\ \"communities\": [\r\n \"12076:5040\",\r\n \"12076:5030\"\r\n\
\ ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6c3a1a67-1bd0-489b-8293-384352795401?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/043041f8-2d5c-4a7f-8fb1-677786761408?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['504']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:22 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:48 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-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6c3a1a67-1bd0-489b-8293-384352795401?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/043041f8-2d5c-4a7f-8fb1-677786761408?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\"\
: \" SubscriptionNotAuthorized\",\r\n \"message\": \" 0b1f6471-1bf0-4dda-aec3-cb9272f09590\"\
@@ -622,7 +1815,7 @@ interactions:
cache-control: [no-cache]
content-length: ['165']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:32 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -635,18 +1828,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"rule1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"da5f7d85-0759-4b8f-9f8f-3402e40a22a5\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e65e3c69-54c8-4688-9c47-7b6ca8a0550d\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"access\"\
: \"Deny\",\r\n \"routeFilterRuleType\": \"Community\",\r\n \"communities\"\
: [\r\n \"12076:5040\",\r\n \"12076:5030\"\r\n ]\r\n }\r\n}"}
@@ -654,8 +1847,8 @@ interactions:
cache-control: [no-cache]
content-length: ['502']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:32 GMT']
- etag: [W/"da5f7d85-0759-4b8f-9f8f-3402e40a22a5"]
+ date: ['Mon, 16 Oct 2017 20:56:59 GMT']
+ etag: [W/"e65e3c69-54c8-4688-9c47-7b6ca8a0550d"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -668,19 +1861,19 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"rule1\",\r\n\
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1\"\
- ,\r\n \"etag\": \"W/\\\"da5f7d85-0759-4b8f-9f8f-3402e40a22a5\\\"\",\r\
+ ,\r\n \"etag\": \"W/\\\"e65e3c69-54c8-4688-9c47-7b6ca8a0550d\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n\
\ \"access\": \"Deny\",\r\n \"routeFilterRuleType\": \"Community\"\
,\r\n \"communities\": [\r\n \"12076:5040\",\r\n \
@@ -689,7 +1882,7 @@ interactions:
cache-control: [no-cache]
content-length: ['583']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:33 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -702,51 +1895,51 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1/routeFilterRules/rule1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c7406164-b439-4921-9f81-c2185278c77c?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3cd50435-d87f-46aa-9773-7a36efcebe40?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:34:34 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:00 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/c7406164-b439-4921-9f81-c2185278c77c?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/3cd50435-d87f-46aa-9773-7a36efcebe40?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter rule delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c7406164-b439-4921-9f81-c2185278c77c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3cd50435-d87f-46aa-9773-7a36efcebe40?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:44 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:12 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -759,51 +1952,51 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_route_filter000001/providers/Microsoft.Network/routeFilters/filter1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/987a8f3c-ece4-44ce-8532-358e395d2102?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6f853f8-d863-4a74-9fa6-c1283edc2dd0?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:34:44 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:13 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/987a8f3c-ece4-44ce-8532-358e395d2102?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e6f853f8-d863-4a74-9fa6-c1283edc2dd0?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/987a8f3c-ece4-44ce-8532-358e395d2102?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6f853f8-d863-4a74-9fa6-c1283edc2dd0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:55 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -816,22 +2009,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network route-filter delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/987a8f3c-ece4-44ce-8532-358e395d2102?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6f853f8-d863-4a74-9fa6-c1283edc2dd0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:05 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -844,13 +2037,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_route_filter000001?api-version=2017-05-10
@@ -859,11 +2052,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:35:07 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:34 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTkVUV09SSzo1RlJPVVRFOjVGRklMVEVSS1JGU0gyUVFPRHw3OURCOUJGQUVEMjc1NjIwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTkVUV09SSzo1RlJPVVRFOjVGRklMVEVSVENJTTNGVTdHR3xGRDNCNEE0QUNGOEJBMjdFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_route_table_operation.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_route_table_operation.yaml
index a3169812030..1581cad52e3 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_route_table_operation.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_route_table_operation.yaml
@@ -1,423 +1,447 @@
interactions:
- request:
- body: null
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0f1d5922-9cce-11e7-a3af-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_route_table?api-version=2017-05-10
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_route_table000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table","name":"cli_test_route_table","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001","name":"cli_test_route_table000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ status: {code: 201, message: Created}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:08 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['230']
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_route_table000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001","name":"cli_test_route_table000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: '{"location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0f2f3694-9cce-11e7-ad7d-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table\"\
- ,\r\n \"etag\": \"W/\\\"64abbb7b-6dc0-4965-87ad-d2305ef3a7aa\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\
+ ,\r\n \"etag\": \"W/\\\"a656d1de-3764-46ef-94fe-3f7291f2f934\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \
- \ \"resourceGuid\": \"feb8a8de-6ca1-4d94-84eb-00875a46e353\",\r\n \"\
+ \ \"resourceGuid\": \"383b9812-5bfa-4e19-a1ea-9b3b77e210c9\",\r\n \"\
routes\": []\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/668ca3fe-43de-4ee1-a47d-9de93bbf425c?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['473']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:10 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd604508-6406-4421-96da-44bbbc0900b3?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['522']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0f2f3694-9cce-11e7-ad7d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/668ca3fe-43de-4ee1-a47d-9de93bbf425c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd604508-6406-4421-96da-44bbbc0900b3?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:26 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0f2f3694-9cce-11e7-ad7d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table\"\
- ,\r\n \"etag\": \"W/\\\"ebdf76c0-087d-49d9-b8cc-acff5c1893f2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\
+ ,\r\n \"etag\": \"W/\\\"6f29f4fb-1e25-49c8-b662-f92b7898256e\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
- \ \"resourceGuid\": \"feb8a8de-6ca1-4d94-84eb-00875a46e353\",\r\n \"\
+ \ \"resourceGuid\": \"383b9812-5bfa-4e19-a1ea-9b3b77e210c9\",\r\n \"\
routes\": []\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:19 GMT']
- ETag: [W/"ebdf76c0-087d-49d9-b8cc-acff5c1893f2"]
- 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]
- content-length: ['474']
+ cache-control: [no-cache]
+ content-length: ['523']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:26 GMT']
+ etag: [W/"6f29f4fb-1e25-49c8-b662-f92b7898256e"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"addressPrefix": "10.0.5.0/24", "nextHopType": "None"},
+ body: '{"properties": {"nextHopType": "None", "addressPrefix": "10.0.5.0/24"},
"name": "my-route"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['91']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [16802068-9cce-11e7-9ac5-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
- ,\r\n \"etag\": \"W/\\\"f12999ea-ee95-4a35-ba26-63bdb6062976\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
+ ,\r\n \"etag\": \"W/\\\"5779d4d7-289c-47e5-9c24-eaa5b0c70928\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\
\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7db22423-312b-47a6-81af-a6337603a8d0?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['393']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:21 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4987e2c0-0e86-46f6-850f-0348fb3cc819?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['442']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:28 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [16802068-9cce-11e7-9ac5-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7db22423-312b-47a6-81af-a6337603a8d0?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4987e2c0-0e86-46f6-850f-0348fb3cc819?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:31 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:38 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [16802068-9cce-11e7-9ac5-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
- ,\r\n \"etag\": \"W/\\\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
+ ,\r\n \"etag\": \"W/\\\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\
\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:31 GMT']
- ETag: [W/"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc"]
- 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]
- content-length: ['394']
+ cache-control: [no-cache]
+ content-length: ['443']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:38 GMT']
+ etag: [W/"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1d96a69e-9cce-11e7-83e1-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/routeTables?api-version=2017-09-01
response:
- body: {string: '{"value":[{"name":"cli-test-route-table","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table","etag":"W/\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\"","type":"Microsoft.Network/routeTables","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"feb8a8de-6ca1-4d94-84eb-00875a46e353","routes":[{"name":"my-route","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route","etag":"W/\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.5.0/24","nextHopType":"None"}}]}},{"name":"rt6e783247","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg6e783247/providers/Microsoft.Network/routeTables/rt6e783247","etag":"W/\"6757e4fe-8a9b-4ec9-a8a3-9d198757e1a8\"","type":"Microsoft.Network/routeTables","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"825585ff-5813-4a68-afd5-44fca578a08d","routes":[{"name":"route1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg6e783247/providers/Microsoft.Network/routeTables/rt6e783247/routes/route1","etag":"W/\"6757e4fe-8a9b-4ec9-a8a3-9d198757e1a8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","nextHopType":"VirtualAppliance","nextHopIpAddress":"10.1.0.4"}},{"name":"route2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg6e783247/providers/Microsoft.Network/routeTables/rt6e783247/routes/route2","etag":"W/\"6757e4fe-8a9b-4ec9-a8a3-9d198757e1a8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.1.0/24","nextHopType":"VirtualAppliance","nextHopIpAddress":"10.1.0.5"}}]}}]}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['1887']
- x-ms-original-request-ids: [fd454bf3-e404-4d65-822b-1ef3219d8c16, 10bba696-ac0f-4935-9e22-904638d2bfa5]
+ body: {string: '{"value":[{"name":"cli-test-route-table","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table","etag":"W/\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\"","type":"Microsoft.Network/routeTables","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"383b9812-5bfa-4e19-a1ea-9b3b77e210c9","routes":[{"name":"my-route","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route","etag":"W/\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.5.0/24","nextHopType":"None"}}]}},{"name":"rt41078423","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg41078423/providers/Microsoft.Network/routeTables/rt41078423","etag":"W/\"460599c1-1280-4484-aff1-0ed707bfdd0f\"","type":"Microsoft.Network/routeTables","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5eb89870-f1f6-45e4-81a7-e690afa41d16","routes":[{"name":"route1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg41078423/providers/Microsoft.Network/routeTables/rt41078423/routes/route1","etag":"W/\"460599c1-1280-4484-aff1-0ed707bfdd0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","nextHopType":"VirtualAppliance","nextHopIpAddress":"10.1.0.4"}},{"name":"route2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg41078423/providers/Microsoft.Network/routeTables/rt41078423/routes/route2","etag":"W/\"460599c1-1280-4484-aff1-0ed707bfdd0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.1.0/24","nextHopType":"VirtualAppliance","nextHopIpAddress":"10.1.0.5"}}]}}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1985']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:39 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ x-ms-original-request-ids: [220668fa-f4ff-44b8-aa66-c2f7b076d570, 87727bc6-ab10-4a19-8153-ca3e1b6a79d8]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1dcf25a2-9cce-11e7-a0ab-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"cli-test-route-table\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table\"\
- ,\r\n \"etag\": \"W/\\\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\\\"\",\r\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\
+ ,\r\n \"etag\": \"W/\\\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\\\"\",\r\
\n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"feb8a8de-6ca1-4d94-84eb-00875a46e353\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"383b9812-5bfa-4e19-a1ea-9b3b77e210c9\"\
,\r\n \"routes\": [\r\n {\r\n \"name\": \"my-route\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
- ,\r\n \"etag\": \"W/\\\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\\\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
+ ,\r\n \"etag\": \"W/\\\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"addressPrefix\": \"10.0.5.0/24\",\r\n\
\ \"nextHopType\": \"None\"\r\n }\r\n }\r\
\n ]\r\n }\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['1053']
+ cache-control: [no-cache]
+ content-length: ['1151']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:40 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1def8490-9cce-11e7-b90c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table\"\
- ,\r\n \"etag\": \"W/\\\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"cli-test-route-table\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table\"\
+ ,\r\n \"etag\": \"W/\\\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
- \ \"resourceGuid\": \"feb8a8de-6ca1-4d94-84eb-00875a46e353\",\r\n \"\
+ \ \"resourceGuid\": \"383b9812-5bfa-4e19-a1ea-9b3b77e210c9\",\r\n \"\
routes\": [\r\n {\r\n \"name\": \"my-route\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
- ,\r\n \"etag\": \"W/\\\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\\\"\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
+ ,\r\n \"etag\": \"W/\\\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\"\
: \"None\"\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:33 GMT']
- ETag: [W/"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc"]
- 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]
- content-length: ['936']
+ cache-control: [no-cache]
+ content-length: ['1034']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:42 GMT']
+ etag: [W/"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1e0a6446-9cce-11e7-b02a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"my-route\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
- ,\r\n \"etag\": \"W/\\\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\\\"\",\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
+ ,\r\n \"etag\": \"W/\\\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\"\
: \"None\"\r\n }\r\n }\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['459']
+ cache-control: [no-cache]
+ content-length: ['508']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:41 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1e343ad2-9cce-11e7-bb2b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
- ,\r\n \"etag\": \"W/\\\"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"my-route\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route\"\
+ ,\r\n \"etag\": \"W/\\\"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.5.0/24\",\r\n \"nextHopType\": \"None\"\r\n }\r\
\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:34 GMT']
- ETag: [W/"db3ae5a9-c09d-4f3a-bbe3-c4b68eb3cfdc"]
- 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]
- content-length: ['394']
+ cache-control: [no-cache]
+ content-length: ['443']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:45 GMT']
+ etag: [W/"5efbf2ac-48a6-4e1f-8bcc-1a9721afe4e8"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1e5b2a90-9cce-11e7-99c3-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes/my-route?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/0b3df768-8363-45c6-a14d-e7990ad31b10?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 00:04:33 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/0b3df768-8363-45c6-a14d-e7990ad31b10?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4784b575-4f21-40f0-a27b-0ed27e97da1e?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:42:46 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4784b575-4f21-40f0-a27b-0ed27e97da1e?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 202, message: Accepted}
- request:
@@ -425,139 +449,165 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1e5b2a90-9cce-11e7-99c3-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0b3df768-8363-45c6-a14d-e7990ad31b10?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4784b575-4f21-40f0-a27b-0ed27e97da1e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:44 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42:56 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [25260754-9cce-11e7-bf94-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table/routes?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table/routes?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": []\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:45 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]
+ cache-control: [no-cache]
content-length: ['19']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:42: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [25410e2e-9cce-11e7-b8a6-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables/cli-test-route-table?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9fa5a103-5553-40c9-8bbe-b21bd9aedd72?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 00:04:45 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/9fa5a103-5553-40c9-8bbe-b21bd9aedd72?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0170e3f1-f9b7-4256-b54b-5d71b7719bba?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:42:58 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/0170e3f1-f9b7-4256-b54b-5d71b7719bba?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [25410e2e-9cce-11e7-b8a6-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fa5a103-5553-40c9-8bbe-b21bd9aedd72?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0170e3f1-f9b7-4256-b54b-5d71b7719bba?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:56 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:43: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [2c2a693a-9cce-11e7-ba8a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table/providers/Microsoft.Network/routeTables?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_route_table000001/providers/Microsoft.Network/routeTables?api-version=2017-09-01
response:
body: {string: '{"value":[]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:57 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:43:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_route_table000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:43:10 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUk9VVEU6NUZUQUJMRUVOMklSWkpCQkpOUkIyVFU1UUFWVXxFMDFENUIwREQzQUJFREZELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_subnet_endpoint_service.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_subnet_endpoint_service.yaml
index 6f7d80a8750..82a26f0089a 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_subnet_endpoint_service.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_subnet_endpoint_service.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_endpoint_service_test000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:29 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:36 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet list-endpoint-services]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/virtualNetworkAvailableEndpointServices?api-version=2017-09-01
@@ -49,7 +49,7 @@ interactions:
cache-control: [no-cache]
content-length: ['284']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:30 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -62,12 +62,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_endpoint_service_test000001?api-version=2017-05-10
@@ -77,72 +77,72 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:30 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"dhcpOptions": {}, "addressSpace":
- {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}'
+ body: '{"properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions":
+ {}}, "tags": {}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['123']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"79c95aed-82e0-4432-b62b-b22666b1145d\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"9e011272-69e2-49cf-89c2-f33f3d40ea41\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"d0872ec9-387e-4975-a1a2-3d1ef8cbcea0\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"21edc58e-372f-4624-93f4-c7504a677b4c\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\
\ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\
: false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4cf1af1b-495e-4e56-9006-fae48cbad1ca?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2b25ae0-cd0f-4fa0-8bc3-9ace4fdf1e74?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['766']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:31 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4cf1af1b-495e-4e56-9006-fae48cbad1ca?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a2b25ae0-cd0f-4fa0-8bc3-9ace4fdf1e74?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:34 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -155,21 +155,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"1ce9314f-fc29-4ca1-a0db-1b030a5265fc\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"62dab335-7f63-4a18-be66-59ddd0c176a2\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"d0872ec9-387e-4975-a1a2-3d1ef8cbcea0\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"21edc58e-372f-4624-93f4-c7504a677b4c\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\
@@ -179,8 +179,8 @@ interactions:
cache-control: [no-cache]
content-length: ['767']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:34 GMT']
- etag: [W/"1ce9314f-fc29-4ca1-a0db-1b030a5265fc"]
+ date: ['Wed, 11 Oct 2017 22:04:41 GMT']
+ etag: [W/"62dab335-7f63-4a18-be66-59ddd0c176a2"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -189,62 +189,62 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"name": "subnet1", "properties": {"serviceEndpoints": [{"service": "Microsoft.Storage"}],
- "addressPrefix": "10.0.1.0/24"}}'
+ body: '{"properties": {"serviceEndpoints": [{"service": "Microsoft.Storage"}],
+ "addressPrefix": "10.0.1.0/24"}, "name": "subnet1"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['123']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"a66ba4e6-cf87-4567-a7be-2e30aa2714a9\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"56f72048-3afb-4ee5-abc0-ae0bd0c4c120\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [\r\n \
\ {\r\n \"provisioningState\": \"Updating\",\r\n \"service\"\
: \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westus\"\
,\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15f50155-b3ea-4518-bc4e-c3cc35ceff6c?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7f30e4a2-1e84-452f-bf47-2d39326f0f79?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['614']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:34 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1178']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15f50155-b3ea-4518-bc4e-c3cc35ceff6c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7f30e4a2-1e84-452f-bf47-2d39326f0f79?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:38 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -257,18 +257,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"505763ec-3870-41cb-9684-7988f95065a5\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"faeec6e0-b3e2-4f77-a624-6a50c459facf\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [\r\n \
\ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\"\
@@ -278,8 +278,8 @@ interactions:
cache-control: [no-cache]
content-length: ['616']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:38 GMT']
- etag: [W/"505763ec-3870-41cb-9684-7988f95065a5"]
+ date: ['Wed, 11 Oct 2017 22:04:45 GMT']
+ etag: [W/"faeec6e0-b3e2-4f77-a624-6a50c459facf"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -292,18 +292,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"505763ec-3870-41cb-9684-7988f95065a5\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"faeec6e0-b3e2-4f77-a624-6a50c459facf\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [\r\n \
\ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\"\
@@ -313,8 +313,8 @@ interactions:
cache-control: [no-cache]
content-length: ['616']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:39 GMT']
- etag: [W/"505763ec-3870-41cb-9684-7988f95065a5"]
+ date: ['Wed, 11 Oct 2017 22:04:47 GMT']
+ etag: [W/"faeec6e0-b3e2-4f77-a624-6a50c459facf"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -323,62 +323,62 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"etag": "W/\\"505763ec-3870-41cb-9684-7988f95065a5\\"", "name": "subnet1",
- "properties": {"provisioningState": "Succeeded", "addressPrefix": "10.0.1.0/24"},
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}'''
+ body: 'b''{"properties": {"provisioningState": "Succeeded", "addressPrefix": "10.0.1.0/24"},
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
+ "name": "subnet1", "etag": "W/\\"faeec6e0-b3e2-4f77-a624-6a50c459facf\\""}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['373']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"82830715-7302-4edf-aac5-56ddd40289b0\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"486535b8-22f2-4a8b-a32d-8cb1b5519ff4\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/105311e7-e04f-416e-aec6-f030f5869a2f?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cf83c734-21dc-4299-93b2-3a47ac0920b7?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['402']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:40 GMT']
+ date: ['Wed, 11 Oct 2017 22:04: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-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/105311e7-e04f-416e-aec6-f030f5869a2f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cf83c734-21dc-4299-93b2-3a47ac0920b7?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:43 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -391,26 +391,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_endpoint_service_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"3b41cbff-ccc6-4114-99c8-e277ee5c0c1e\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"078579c2-bef8-41f3-ad52-accc2b23224d\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['403']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:43 GMT']
- etag: [W/"3b41cbff-ccc6-4114-99c8-e277ee5c0c1e"]
+ date: ['Wed, 11 Oct 2017 22:04:51 GMT']
+ etag: [W/"078579c2-bef8-41f3-ad52-accc2b23224d"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -423,13 +423,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_endpoint_service_test000001?api-version=2017-05-10
@@ -438,11 +438,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Mon, 18 Sep 2017 23:58:44 GMT']
+ date: ['Wed, 11 Oct 2017 22:04:52 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZTVUJORVQ6NUZFTkRQT0lOVDo1RlNFUlZJQ0U6NUZURVNUMzVaQ1JCRHw3RkQ1Q0ZFQ0M3N0RENzExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZTVUJORVQ6NUZFTkRQT0lOVDo1RlNFUlZJQ0U6NUZURVNUVE5DV1hSUHw5OEEyNjY1RTEwRjBGREMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_subnet_set.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_subnet_set.yaml
index 2efa5211bdd..cc7255a5a37 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_subnet_set.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_subnet_set.yaml
@@ -1,195 +1,221 @@
interactions:
- request:
- body: null
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [473493ca-9ccd-11e7-ab74-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_set_test?api-version=2017-05-10
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_set_test000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test","name":"cli_subnet_set_test","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001","name":"cli_subnet_set_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:12:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ status: {code: 201, message: Created}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['228']
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_set_test000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001","name":"cli_subnet_set_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:12:45 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"dhcpOptions": {}, "addressSpace":
+ body: '{"tags": {}, "location": "westus", "properties": {"dhcpOptions": {}, "addressSpace":
{"addressPrefixes": ["123.0.0.0/16"]}, "subnets": [{"properties": {"addressPrefix":
- "123.0.0.0/24"}, "name": "default"}]}, "tags": {}}'
+ "123.0.0.0/24"}, "name": "default"}]}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['207']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [47489480-9ccd-11e7-bdfb-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2\"\
- ,\r\n \"etag\": \"W/\\\"3a1910d0-798f-468b-b748-73ae5e786d70\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"749de4a4-f14b-40b4-9ffd-51b9c58c912e\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"4a88777a-2bf3-4001-91a5-063d04ad1cf8\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"4ab43267-7de4-4aa5-a485-97bd9c1ae4c1\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
123.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\
dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"\
- name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"3a1910d0-798f-468b-b748-73ae5e786d70\\\"\"\
+ name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"749de4a4-f14b-40b4-9ffd-51b9c58c912e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"123.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/28bf4a87-6d94-408f-b101-0b1984864db3?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['1147']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:34 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d3387439-02e0-4c07-9492-83bfc14bbe53?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1232']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:12:46 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [47489480-9ccd-11e7-bdfb-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/28bf4a87-6d94-408f-b101-0b1984864db3?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d3387439-02e0-4c07-9492-83bfc14bbe53?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:12: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [47489480-9ccd-11e7-bdfb-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2\"\
- ,\r\n \"etag\": \"W/\\\"8189679b-e754-44ef-b51d-261ddefe65d2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"10e4326c-1cdf-4a50-b1ab-e3b067152b8c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"4a88777a-2bf3-4001-91a5-063d04ad1cf8\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"4ab43267-7de4-4aa5-a485-97bd9c1ae4c1\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
123.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"\
dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"\
- name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"8189679b-e754-44ef-b51d-261ddefe65d2\\\"\"\
+ name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"10e4326c-1cdf-4a50-b1ab-e3b067152b8c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"123.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:37 GMT']
- ETag: [W/"8189679b-e754-44ef-b51d-261ddefe65d2"]
- 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]
- content-length: ['1149']
+ cache-control: [no-cache]
+ content-length: ['1234']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:12:50 GMT']
+ etag: [W/"10e4326c-1cdf-4a50-b1ab-e3b067152b8c"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [49efe8b4-9ccd-11e7-92e9-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_set_test?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_set_test000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test","name":"cli_subnet_set_test","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:37 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['228']
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001","name":"cli_subnet_set_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:12:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: '{"location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4a06a90c-9ccd-11e7-9918-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet-nsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
- ,\r\n \"etag\": \"W/\\\"12089578-5ae2-420e-ace6-a6cc5641963a\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"test-vnet-nsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
+ ,\r\n \"etag\": \"W/\\\"0ef89651-0645-4b84-ab67-df3377b5963b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"a9ca0063-d79c-4a8b-bea4-7b06af1eb3d3\",\r\n \
+ ,\r\n \"resourceGuid\": \"6e009b6c-336f-4734-95e5-32f1ef87f885\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
- \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"12089578-5ae2-420e-ace6-a6cc5641963a\\\"\"\
+ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowVnetInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0ef89651-0645-4b84-ab67-df3377b5963b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -200,8 +226,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"12089578-5ae2-420e-ace6-a6cc5641963a\\\"\"\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0ef89651-0645-4b84-ab67-df3377b5963b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -212,8 +238,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"12089578-5ae2-420e-ace6-a6cc5641963a\\\"\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/DenyAllInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0ef89651-0645-4b84-ab67-df3377b5963b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -223,8 +249,8 @@ interactions:
: \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"12089578-5ae2-420e-ace6-a6cc5641963a\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowVnetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0ef89651-0645-4b84-ab67-df3377b5963b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -235,8 +261,8 @@ interactions:
: [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"12089578-5ae2-420e-ace6-a6cc5641963a\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowInternetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0ef89651-0645-4b84-ab67-df3377b5963b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -247,8 +273,8 @@ interactions:
\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"12089578-5ae2-420e-ace6-a6cc5641963a\\\"\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/DenyAllOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0ef89651-0645-4b84-ab67-df3377b5963b\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -259,69 +285,68 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/923e30a9-ea28-43d4-90c1-4b6c3f960136?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['6161']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:38 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b35de40-4216-4de9-9497-718358a7082a?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['6511']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:12:53 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4a06a90c-9ccd-11e7-9918-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/923e30a9-ea28-43d4-90c1-4b6c3f960136?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b35de40-4216-4de9-9497-718358a7082a?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:48 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4a06a90c-9ccd-11e7-9918-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet-nsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
- ,\r\n \"etag\": \"W/\\\"97ead064-6347-4fb0-9806-e2bbbf5e5799\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"test-vnet-nsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
+ ,\r\n \"etag\": \"W/\\\"0650a113-d740-4a76-aaf7-ee8e0c173c6e\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"a9ca0063-d79c-4a8b-bea4-7b06af1eb3d3\",\r\n \
+ ,\r\n \"resourceGuid\": \"6e009b6c-336f-4734-95e5-32f1ef87f885\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
- \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"97ead064-6347-4fb0-9806-e2bbbf5e5799\\\"\"\
+ \n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowVnetInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0650a113-d740-4a76-aaf7-ee8e0c173c6e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -332,8 +357,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"97ead064-6347-4fb0-9806-e2bbbf5e5799\\\"\"\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0650a113-d740-4a76-aaf7-ee8e0c173c6e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -344,8 +369,8 @@ interactions:
\ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"97ead064-6347-4fb0-9806-e2bbbf5e5799\\\"\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/DenyAllInBound\"\
+ ,\r\n \"etag\": \"W/\\\"0650a113-d740-4a76-aaf7-ee8e0c173c6e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -355,8 +380,8 @@ interactions:
: \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"97ead064-6347-4fb0-9806-e2bbbf5e5799\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowVnetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0650a113-d740-4a76-aaf7-ee8e0c173c6e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -367,8 +392,8 @@ interactions:
: [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"97ead064-6347-4fb0-9806-e2bbbf5e5799\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/AllowInternetOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0650a113-d740-4a76-aaf7-ee8e0c173c6e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -379,8 +404,8 @@ interactions:
\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"97ead064-6347-4fb0-9806-e2bbbf5e5799\\\"\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg/defaultSecurityRules/DenyAllOutBound\"\
+ ,\r\n \"etag\": \"W/\\\"0650a113-d740-4a76-aaf7-ee8e0c173c6e\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -391,533 +416,557 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:49 GMT']
- ETag: [W/"97ead064-6347-4fb0-9806-e2bbbf5e5799"]
- 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]
- content-length: ['6168']
+ cache-control: [no-cache]
+ content-length: ['6518']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:03 GMT']
+ etag: [W/"0650a113-d740-4a76-aaf7-ee8e0c173c6e"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [50cb9f14-9ccd-11e7-8bd9-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"8189679b-e754-44ef-b51d-261ddefe65d2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"10e4326c-1cdf-4a50-b1ab-e3b067152b8c\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"123.0.0.0/24\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:49 GMT']
- ETag: [W/"8189679b-e754-44ef-b51d-261ddefe65d2"]
- 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]
- content-length: ['359']
+ cache-control: [no-cache]
+ content-length: ['404']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:04 GMT']
+ etag: [W/"10e4326c-1cdf-4a50-b1ab-e3b067152b8c"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "W/\"8189679b-e754-44ef-b51d-261ddefe65d2\"", "properties": {"networkSecurityGroup":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg"},
- "addressPrefix": "123.0.5.0/24", "provisioningState": "Succeeded"}, "name":
- "default", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default"}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default",
+ "etag": "W/\\"10e4326c-1cdf-4a50-b1ab-e3b067152b8c\\"", "properties": {"addressPrefix":
+ "123.0.5.0/24", "provisioningState": "Succeeded", "networkSecurityGroup": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg"}},
+ "name": "default"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['521']
+ Content-Length: ['616']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [50f946b4-9ccd-11e7-80be-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"c529f025-77a6-4015-a41b-33afeff2b358\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"9f52b2b2-d6e2-4ff8-a00b-08e4fe54e995\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"123.0.5.0/24\",\r\n \"networkSecurityGroup\": {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
\r\n }\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7ca10d86-b82c-4126-8dc7-a40148fa832b?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:49 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['569']
- x-ms-ratelimit-remaining-subscription-writes: ['1177']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1c045fc0-02f7-405f-aaf5-e15cec2261e4?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['664']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13: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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [50f946b4-9ccd-11e7-80be-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ca10d86-b82c-4126-8dc7-a40148fa832b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1c045fc0-02f7-405f-aaf5-e15cec2261e4?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [50f946b4-9ccd-11e7-80be-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"e4d57573-6835-4ed0-acab-75e57dea5672\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"61cf4851-d599-4389-a6b8-2ea92294d2eb\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"123.0.5.0/24\",\r\n \"networkSecurityGroup\": {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
\r\n }\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:53 GMT']
- ETag: [W/"e4d57573-6835-4ed0-acab-75e57dea5672"]
- 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]
- content-length: ['570']
+ cache-control: [no-cache]
+ content-length: ['665']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:09 GMT']
+ etag: [W/"61cf4851-d599-4389-a6b8-2ea92294d2eb"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [534c9fd8-9ccd-11e7-8e1d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"e4d57573-6835-4ed0-acab-75e57dea5672\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"61cf4851-d599-4389-a6b8-2ea92294d2eb\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"123.0.5.0/24\",\r\n \"networkSecurityGroup\": {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
\r\n }\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:53 GMT']
- ETag: [W/"e4d57573-6835-4ed0-acab-75e57dea5672"]
- 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]
- content-length: ['570']
+ cache-control: [no-cache]
+ content-length: ['665']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:13 GMT']
+ etag: [W/"61cf4851-d599-4389-a6b8-2ea92294d2eb"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "W/\"e4d57573-6835-4ed0-acab-75e57dea5672\"", "properties": {"networkSecurityGroup":
- {"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg"},
- "addressPrefix": "123.0.0.0/24", "provisioningState": "Succeeded"}, "name":
- "default", "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default"}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default",
+ "etag": "W/\\"61cf4851-d599-4389-a6b8-2ea92294d2eb\\"", "properties": {"addressPrefix":
+ "123.0.0.0/24", "provisioningState": "Succeeded", "networkSecurityGroup": {"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg"}},
+ "name": "default"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['521']
+ Content-Length: ['616']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [537935ec-9ccd-11e7-b225-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"e7945c47-78b1-4273-9c18-f5df92adf5a8\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"aea18a7f-b889-4831-930f-f206044fa246\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"123.0.0.0/24\",\r\n \"networkSecurityGroup\": {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
\r\n }\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1901b7d5-d080-4fcc-814a-8c3f00a427fc?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:54 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['569']
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc426535-94b7-45b3-b207-c98704c789cb?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['664']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:14 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-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [537935ec-9ccd-11e7-b225-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1901b7d5-d080-4fcc-814a-8c3f00a427fc?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc426535-94b7-45b3-b207-c98704c789cb?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [537935ec-9ccd-11e7-b225-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"6c31d37f-1ab7-4cb6-b36c-55cbce960ca5\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"909fb010-9846-4797-ac5a-44c4af22a1f1\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"123.0.0.0/24\",\r\n \"networkSecurityGroup\": {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
\r\n }\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:57 GMT']
- ETag: [W/"6c31d37f-1ab7-4cb6-b36c-55cbce960ca5"]
- 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]
- content-length: ['570']
+ cache-control: [no-cache]
+ content-length: ['665']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:18 GMT']
+ etag: [W/"909fb010-9846-4797-ac5a-44c4af22a1f1"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [55f4deb0-9ccd-11e7-a062-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"6c31d37f-1ab7-4cb6-b36c-55cbce960ca5\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"909fb010-9846-4797-ac5a-44c4af22a1f1\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"123.0.0.0/24\",\r\n \"networkSecurityGroup\": {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg\"\
\r\n }\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:58 GMT']
- ETag: [W/"6c31d37f-1ab7-4cb6-b36c-55cbce960ca5"]
- 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]
- content-length: ['570']
+ cache-control: [no-cache]
+ content-length: ['665']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:19 GMT']
+ etag: [W/"909fb010-9846-4797-ac5a-44c4af22a1f1"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"etag": "W/\"6c31d37f-1ab7-4cb6-b36c-55cbce960ca5\"", "properties": {"addressPrefix":
- "123.0.5.0/24", "provisioningState": "Succeeded"}, "name": "default", "id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default"}'
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default",
+ "etag": "W/\\"909fb010-9846-4797-ac5a-44c4af22a1f1\\"", "properties": {"addressPrefix":
+ "123.0.5.0/24", "provisioningState": "Succeeded"}, "name": "default"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['329']
+ Content-Length: ['374']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [561e8e0c-9ccd-11e7-b300-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"0d0216c7-8c52-4c23-9f66-818605f90073\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"6c709e78-cb1a-4fef-acbf-a664c1cf3148\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"123.0.5.0/24\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/551500d3-0edc-41ee-8ffc-94677198985f?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:58:58 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['358']
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e4582c18-8078-4df8-8734-3155d910b32c?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['403']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13: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-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [561e8e0c-9ccd-11e7-b300-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/551500d3-0edc-41ee-8ffc-94677198985f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e4582c18-8078-4df8-8734-3155d910b32c?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:01 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:24 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [561e8e0c-9ccd-11e7-b300-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"e9a49d35-2670-40be-b6c9-f1ea9a44f76e\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"a13fdb8d-fc19-47e8-a2d3-2be809178eb8\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"123.0.5.0/24\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:01 GMT']
- ETag: [W/"e9a49d35-2670-40be-b6c9-f1ea9a44f76e"]
- 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]
- content-length: ['359']
+ cache-control: [no-cache]
+ content-length: ['404']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13:24 GMT']
+ etag: [W/"a13fdb8d-fc19-47e8-a2d3-2be809178eb8"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5899c180-9ccd-11e7-9ba5-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/virtualNetworks/test-vnet2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/6e6033da-686d-4205-bf76-ae6180ccc86a?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Mon, 18 Sep 2017 23:59:02 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/6e6033da-686d-4205-bf76-ae6180ccc86a?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0ca0ddd8-0f28-412d-aa49-d1d66a189e56?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:13:26 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/0ca0ddd8-0f28-412d-aa49-d1d66a189e56?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5899c180-9ccd-11e7-9ba5-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e6033da-686d-4205-bf76-ae6180ccc86a?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0ca0ddd8-0f28-412d-aa49-d1d66a189e56?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:13 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5f810302-9ccd-11e7-832b-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_subnet_set_test000001/providers/Microsoft.Network/networkSecurityGroups/test-vnet-nsg?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/515450a1-0ea4-4407-97e9-b8d8849b1b4f?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Mon, 18 Sep 2017 23:59:14 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/515450a1-0ea4-4407-97e9-b8d8849b1b4f?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd17b8f0-77be-4336-8684-ad6a509140b0?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:13:37 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/dd17b8f0-77be-4336-8684-ad6a509140b0?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1194']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5f810302-9ccd-11e7-832b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/515450a1-0ea4-4407-97e9-b8d8849b1b4f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd17b8f0-77be-4336-8684-ad6a509140b0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Mon, 18 Sep 2017 23:59:24 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:13: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]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_subnet_set_test000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:13:49 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZTVUJORVQ6NUZTRVQ6NUZURVNUSFpaSk42RVNEM0haV0RXREhCVUJNUXxDREU0QzU4N0I0MDY5QTFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_traffic_manager.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_traffic_manager.yaml
index e67775b996e..8ecc55c10fa 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_traffic_manager.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_traffic_manager.yaml
@@ -1,10 +1,10 @@
interactions:
- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
@@ -20,18 +20,18 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:37:52 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:25 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
- body: '{"name": "myfoobar1", "type": "Microsoft.Network/trafficManagerProfiles"}'
+ body: '{"type": "Microsoft.Network/trafficManagerProfiles", "name": "myfoobar1"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile check-dns]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['73']
Content-Type: [application/json; charset=utf-8]
@@ -47,24 +47,22 @@ interactions:
cache-control: [private]
content-length: ['121']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:37:52 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:26 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
x-ms-ratelimit-remaining-tenant-writes: ['1199']
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"trafficRoutingMethod": "Priority", "monitorConfig": {"path":
- "/", "protocol": "HTTP", "port": 80}, "dnsConfig": {"ttl": 30, "relativeName":
- "mytrafficmanager001100a"}, "profileStatus": "Enabled"}, "location": "global"}'
+ body: '{"properties": {"dnsConfig": {"ttl": 30, "relativeName": "mytrafficmanager001100a"},
+ "profileStatus": "enabled", "trafficRoutingMethod": "Priority", "monitorConfig":
+ {"path": "/", "protocol": "HTTP", "port": 80}}, "location": "global"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['235']
Content-Type: [application/json; charset=utf-8]
@@ -80,7 +78,7 @@ interactions:
cache-control: [private]
content-length: ['687']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:37:54 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:27 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -93,7 +91,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -108,7 +106,7 @@ interactions:
cache-control: [private]
content-length: ['697']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:37:55 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:28 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -123,7 +121,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -138,7 +136,7 @@ interactions:
cache-control: [private]
content-length: ['697']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:37:56 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:29 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -149,15 +147,15 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"trafficRoutingMethod": "Weighted", "endpoints": [], "dnsConfig":
- {"ttl": 30, "relativeName": "mytrafficmanager001100a"}, "profileStatus": "Enabled",
- "monitorConfig": {"path": "/", "protocol": "HTTP", "toleratedNumberOfFailures":
- 3, "intervalInSeconds": 30, "port": 80, "profileMonitorStatus": "Inactive",
- "timeoutInSeconds": 10}}, "tags": {}, "location": "global"}'
+ body: '{"properties": {"dnsConfig": {"ttl": 30, "relativeName": "mytrafficmanager001100a"},
+ "profileStatus": "Enabled", "endpoints": [], "trafficRoutingMethod": "Weighted",
+ "monitorConfig": {"toleratedNumberOfFailures": 3, "timeoutInSeconds": 10, "port":
+ 80, "intervalInSeconds": 30, "path": "/", "protocol": "HTTP", "profileMonitorStatus":
+ "Inactive"}}, "tags": {}, "location": "global"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['381']
Content-Type: [application/json; charset=utf-8]
@@ -173,7 +171,7 @@ interactions:
cache-control: [private]
content-length: ['697']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:37:56 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:29 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -188,7 +186,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -203,7 +201,7 @@ interactions:
cache-control: [private]
content-length: ['703']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:37:58 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:30 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -218,7 +216,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -233,7 +231,7 @@ interactions:
cache-control: [private]
content-length: ['697']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:37:58 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:31 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -248,7 +246,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager endpoint create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['61']
Content-Type: [application/json; charset=utf-8]
@@ -264,12 +262,12 @@ interactions:
cache-control: [private]
content-length: ['506']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:38:01 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:32 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1186']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -277,7 +275,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -292,7 +290,7 @@ interactions:
cache-control: [private]
content-length: ['506']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:38:00 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:33 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -302,12 +300,12 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"endpointMonitorStatus": "CheckingEndpoint", "priority":
- 1, "weight": 25, "endpointStatus": "Enabled", "target": "www.contoso.com"}}'
+ body: '{"properties": {"target": "www.contoso.com", "endpointStatus": "Enabled",
+ "weight": 25, "endpointMonitorStatus": "CheckingEndpoint", "priority": 1}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager endpoint update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['148']
Content-Type: [application/json; charset=utf-8]
@@ -323,12 +321,12 @@ interactions:
cache-control: [private]
content-length: ['504']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:38:02 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:34 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1181']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
x-powered-by: [ASP.NET]
status: {code: 201, message: Created}
- request:
@@ -336,7 +334,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager endpoint show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -351,7 +349,7 @@ interactions:
cache-control: [private]
content-length: ['504']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:38:03 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:35 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -365,7 +363,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager endpoint list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -380,7 +378,7 @@ interactions:
cache-control: [private]
content-length: ['1210']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:38:03 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:35 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -395,7 +393,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -410,7 +408,7 @@ interactions:
cache-control: [private]
content-length: ['1210']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:38:04 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:36 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -421,19 +419,19 @@ interactions:
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"trafficRoutingMethod": "Weighted", "endpoints": [{"name":
- "myendpoint", "properties": {"endpointMonitorStatus": "CheckingEndpoint", "priority":
- 1, "weight": 25, "endpointStatus": "Enabled", "target": "www.contoso.com"},
- "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_traffic_manager000001/providers/Microsoft.Network/trafficManagerProfiles/mytmprofile/externalEndpoints/myendpoint"}],
- "dnsConfig": {"ttl": 30, "relativeName": "mytrafficmanager001100a"}, "profileStatus":
- "Enabled", "monitorConfig": {"path": "/", "protocol": "HTTP", "toleratedNumberOfFailures":
- 3, "intervalInSeconds": 30, "port": 80, "profileMonitorStatus": "CheckingEndpoints",
- "timeoutInSeconds": 10}}, "tags": {}, "location": "global"}'''
+ body: 'b''{"properties": {"dnsConfig": {"ttl": 30, "relativeName": "mytrafficmanager001100a"},
+ "profileStatus": "Enabled", "endpoints": [{"type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints",
+ "properties": {"target": "www.contoso.com", "endpointStatus": "Enabled", "weight":
+ 25, "endpointMonitorStatus": "CheckingEndpoint", "priority": 1}, "name": "myendpoint",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_traffic_manager000001/providers/Microsoft.Network/trafficManagerProfiles/mytmprofile/externalEndpoints/myendpoint"}],
+ "trafficRoutingMethod": "Weighted", "monitorConfig": {"toleratedNumberOfFailures":
+ 3, "timeoutInSeconds": 10, "port": 80, "intervalInSeconds": 30, "path": "/",
+ "protocol": "HTTP", "profileMonitorStatus": "CheckingEndpoints"}}, "tags": {},
+ "location": "global"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['874']
Content-Type: [application/json; charset=utf-8]
@@ -449,7 +447,7 @@ interactions:
cache-control: [private]
content-length: ['1210']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:38:06 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:37 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -464,7 +462,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager endpoint delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
@@ -479,12 +477,12 @@ interactions:
headers:
cache-control: [private]
content-length: ['0']
- date: ['Fri, 27 Oct 2017 17:38:07 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:40 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1188']
x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
@@ -492,7 +490,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager endpoint list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
@@ -507,7 +505,7 @@ interactions:
cache-control: [private]
content-length: ['697']
content-type: [application/json; charset=utf-8]
- date: ['Fri, 27 Oct 2017 17:38:07 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:40 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
@@ -522,7 +520,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network traffic-manager profile delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
@@ -537,7 +535,7 @@ interactions:
headers:
cache-control: [private]
content-length: ['0']
- date: ['Fri, 27 Oct 2017 17:38:12 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:42 GMT']
server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-aspnet-version: [4.0.30319]
@@ -550,7 +548,7 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
@@ -565,11 +563,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Fri, 27 Oct 2017 17:38:13 GMT']
+ date: ['Fri, 27 Oct 2017 23:56:42 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVFJBRkZJQzo1Rk1BTkFHRVJSNjdESlhTQU5RSzVBRjVKUXw0MTA5MkM0QTFFMjRDNDA4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVFJBRkZJQzo1Rk1BTkFHRVJDMlNPUkVFTEU1SEhPSVFBSnw5Mzg4RDc2QzA3N0YwQkY2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1188']
+ x-ms-ratelimit-remaining-subscription-writes: ['1172']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vnet.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vnet.yaml
index a51ad20b168..3ad8a755b27 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vnet.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vnet.yaml
@@ -1,1195 +1,1241 @@
interactions:
- request:
- body: null
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [09d757c6-9cce-11e7-9394-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_vnet_test?api-version=2017-05-10
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_vnet_test000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test","name":"cli_vnet_test","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001","name":"cli_vnet_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:03:59 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['216']
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_vnet_test000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001","name":"cli_vnet_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix":
- "10.0.0.0/24"}, "name": "default"}], "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}},
- "location": "westus", "tags": {}}'
+ body: '{"location": "westus", "properties": {"dhcpOptions": {}, "addressSpace":
+ {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": "default", "properties":
+ {"addressPrefix": "10.0.0.0/24"}}]}, "tags": {}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['205']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [09e84aa6-9cce-11e7-9b0a-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"9ec2f052-6745-42c5-bf67-42609d3944fe\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"a296bcc7-ff36-4c87-acf1-306320f5e431\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"9ec2f052-6745-42c5-bf67-42609d3944fe\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"a296bcc7-ff36-4c87-acf1-306320f5e431\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/54cd4815-3eef-4835-a579-b75b6fcdb5e4?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['1130']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:00 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b611e16b-d99b-4994-89da-b866366c40bd?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1230']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [09e84aa6-9cce-11e7-9b0a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/54cd4815-3eef-4835-a579-b75b6fcdb5e4?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b611e16b-d99b-4994-89da-b866366c40bd?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [09e84aa6-9cce-11e7-9b0a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"66c47058-e682-4448-8fbe-8a3d7436f7ac\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"0bd26fbf-75c2-4abb-978d-15c620328048\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"66c47058-e682-4448-8fbe-8a3d7436f7ac\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"0bd26fbf-75c2-4abb-978d-15c620328048\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:04 GMT']
- ETag: [W/"66c47058-e682-4448-8fbe-8a3d7436f7ac"]
- 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]
- content-length: ['1132']
+ cache-control: [no-cache]
+ content-length: ['1232']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30:55 GMT']
+ etag: [W/"0bd26fbf-75c2-4abb-978d-15c620328048"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0c616862-9cce-11e7-8869-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/CheckIPAddressAvailability?ipAddress=10.0.0.50&api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/CheckIPAddressAvailability?ipAddress=10.0.0.50&api-version=2017-09-01
response:
body: {string: "{\r\n \"available\": true\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04: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]
+ cache-control: [no-cache]
content-length: ['25']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0c801942-9cce-11e7-9bb3-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/CheckIPAddressAvailability?ipAddress=10.0.0.0&api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/CheckIPAddressAvailability?ipAddress=10.0.0.0&api-version=2017-09-01
response:
body: {string: "{\r\n \"available\": false,\r\n \"availableIPAddresses\": [\r\
\n \"10.0.0.4\",\r\n \"10.0.0.5\",\r\n \"10.0.0.6\",\r\n \"10.0.0.7\"\
,\r\n \"10.0.0.8\"\r\n ]\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04: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]
+ cache-control: [no-cache]
content-length: ['145']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0c974ecc-9cce-11e7-8877-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
response:
- body: {string: '{"value":[{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"7a9fbc6c-d902-4ce2-ba72-1c43b3201efc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"},"properties":{"provisioningState":"Succeeded","resourceGuid":"55c22cf6-f423-45d2-92e0-c1e9cd0cc0b1","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"7a9fbc6c-d902-4ce2-ba72-1c43b3201efc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"1fe83bae-1d3a-4b04-af02-731b2b65d150\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"},"properties":{"provisioningState":"Succeeded","resourceGuid":"58d9d284-409c-4aa6-9878-5bd35ac2c617","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"1fe83bae-1d3a-4b04-af02-731b2b65d150\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmss1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Network/virtualNetworks/vmss1VNET","etag":"W/\"90b63e6a-6fb5-49ae-9022-92ba83f453b8\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9b82c471-be30-4c4f-b4ff-3a21dcb45878","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet","etag":"W/\"90b63e6a-6fb5-49ae-9022-92ba83f453b8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/4/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/5/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/6/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/7/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/8/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/9/networkInterfaces/vmss16d0aNic/ipConfigurations/vmss16d0aIPConfig"}]}},{"name":"appGwSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/appGwSubnet","etag":"W/\"90b63e6a-6fb5-49ae-9022-92ba83f453b8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.1.0/24","applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hkvq4mazsdqrao7i3fzwrxxebixbzytb2gtxwumd5qk3juxvsw4xmirq6yfopyjv/providers/Microsoft.Network/applicationGateways/apt1/gatewayIPConfigurations/appGwIpConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwj5zu3x4khgrczuv2lekvj7dno5uiijqsitnhvs5ib3gwq6kt22jaj3knchqkgt7/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"3c76f747-f2e1-4017-ba84-b66c3b7460f8\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1be38253-d662-4b61-882e-9003091f378a","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwj5zu3x4khgrczuv2lekvj7dno5uiijqsitnhvs5ib3gwq6kt22jaj3knchqkgt7/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"3c76f747-f2e1-4017-ba84-b66c3b7460f8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwj5zu3x4khgrczuv2lekvj7dno5uiijqsitnhvs5ib3gwq6kt22jaj3knchqkgt7/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwj5zu3x4khgrczuv2lekvj7dno5uiijqsitnhvs5ib3gwq6kt22jaj3knchqkgt7/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwj5zu3x4khgrczuv2lekvj7dno5uiijqsitnhvs5ib3gwq6kt22jaj3knchqkgt7/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"a272cdee-b9bd-4914-9e11-d09d43df9183\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"186dfe17-55b2-4c26-80d5-857521af2537","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"a272cdee-b9bd-4914-9e11-d09d43df9183\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghno3osnapw4gw2vnfcfeyjvxq7tfajmisnevew2ulnn4scwjdm2ij3u7dxmembso2/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"0f78a228-d5a6-4c8e-a21c-6b61ec91600c\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a7c16b95-67e3-4543-be91-7c135842b658","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"0f78a228-d5a6-4c8e-a21c-6b61ec91600c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss12605Nic/ipConfigurations/vmss12605IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss12605Nic/ipConfigurations/vmss12605IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss12605Nic/ipConfigurations/vmss12605IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss12605Nic/ipConfigurations/vmss12605IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi5gjuajlhd2j462m22em6ty3i2u2gmuhubhsch6kpcohlsujcqc4kxb6im7s3egkl/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"6545843f-f116-42e0-ae60-a5631e47d879\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"748a86a1-261a-439d-b452-602c9de3d292","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"6545843f-f116-42e0-ae60-a5631e47d879\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1e043Nic/ipConfigurations/vmss1e043IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1e043Nic/ipConfigurations/vmss1e043IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjmqdndazxmerwgp5ej5qzy6mdi6k6nzgnso6eexabg4w7r2r75jfxyxzo5m6okzgt/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"b12948fe-d170-42a9-b138-7156ef6f77c9\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a573e9f4-3238-4307-83bf-2da505552876","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"b12948fe-d170-42a9-b138-7156ef6f77c9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1519cNic/ipConfigurations/vmss1519cIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1519cNic/ipConfigurations/vmss1519cIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp52n6eifuk23shtadiu5c7kzef7nrnxd7gkz6ywps6pss4pzos6hkrh5ukyuuajji/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmss11VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs3qudwi4jlhxbzvm33qwjirlulttty2x24tapqvtmuabczkystoctko4tpvey7kwn/providers/Microsoft.Network/virtualNetworks/vmss11VNET","etag":"W/\"e4f851af-16a9-4c31-801e-8bd735ff226a\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a112f234-6468-4029-af9e-395628141286","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss11Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs3qudwi4jlhxbzvm33qwjirlulttty2x24tapqvtmuabczkystoctko4tpvey7kwn/providers/Microsoft.Network/virtualNetworks/vmss11VNET/subnets/vmss11Subnet","etag":"W/\"e4f851af-16a9-4c31-801e-8bd735ff226a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs3qudwi4jlhxbzvm33qwjirlulttty2x24tapqvtmuabczkystoctko4tpvey7kwn/providers/Microsoft.Compute/virtualMachineScaleSets/vmss11/virtualMachines/0/networkInterfaces/vmss1a500Nic/ipConfigurations/vmss1a500IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs3qudwi4jlhxbzvm33qwjirlulttty2x24tapqvtmuabczkystoctko4tpvey7kwn/providers/Microsoft.Compute/virtualMachineScaleSets/vmss11/virtualMachines/1/networkInterfaces/vmss1a500Nic/ipConfigurations/vmss1a500IPConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"d39947cd-f78c-4644-b398-fac513a45c94\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"505e0322-299b-4874-9282-b3d0798ca828","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"d39947cd-f78c-4644-b398-fac513a45c94\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmss1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Network/virtualNetworks/vmss1VNET","etag":"W/\"1bb2ef59-e495-41e9-9d5f-3b26e1492b89\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a4d55924-ae92-4877-b268-feb0cb06a2dc","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet","etag":"W/\"1bb2ef59-e495-41e9-9d5f-3b26e1492b89\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1cce8Nic/ipConfigurations/vmss1cce8IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1cce8Nic/ipConfigurations/vmss1cce8IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/4/networkInterfaces/vmss1cce8Nic/ipConfigurations/vmss1cce8IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/5/networkInterfaces/vmss1cce8Nic/ipConfigurations/vmss1cce8IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/8/networkInterfaces/vmss1cce8Nic/ipConfigurations/vmss1cce8IPConfig"}]}},{"name":"appGwSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/appGwSubnet","etag":"W/\"1bb2ef59-e495-41e9-9d5f-3b26e1492b89\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.1.0/24","applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlfzh47rvit6iuqc2vhnveqtj3hmg6honxxxzawjf6euofkwzs5627danpy7ghjfr/providers/Microsoft.Network/applicationGateways/apt1/gatewayIPConfigurations/appGwIpConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection_3upw_/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"5d390353-a4bf-45f8-a423-ce2bd0a69447\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"4048911e-e4ed-430e-b2f0-306dfcc244b8","addressSpace":{"addressPrefixes":["10.11.0.0/16","10.12.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection_3upw_/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"5d390353-a4bf-45f8-a423-ce2bd0a69447\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.12.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection_3upw_/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection_3upw_/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection_i2el_/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"5df28173-0124-48a7-9e36-adafc4778878\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6f6c0884-4a4d-4e79-89ce-e8e8153dcd8f","addressSpace":{"addressPrefixes":["10.11.0.0/16","10.12.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection_i2el_/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"5df28173-0124-48a7-9e36-adafc4778878\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.12.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection_i2el_/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connection_i2el_/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_kraw_/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"909ed5fd-214d-471f-a180-62adb48b1778\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8514b685-f4f2-4efa-8a30-1c268ec99f4f","addressSpace":{"addressPrefixes":["10.21.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_kraw_/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"909ed5fd-214d-471f-a180-62adb48b1778\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.21.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_kraw_/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_kraw_/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_kraw_/providers/Microsoft.Network/virtualNetworks/vnet2","etag":"W/\"5a1b95d4-52f6-47f7-8614-107b56942263\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"59382b5b-559c-4426-bfdb-6c27c37e359d","addressSpace":{"addressPrefixes":["10.22.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_kraw_/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet","etag":"W/\"5a1b95d4-52f6-47f7-8614-107b56942263\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.22.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_kraw_/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_kraw_/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_zftu_/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"1053849f-aadd-46b7-adb4-68f2c99b4667\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ebd972e5-7059-4bb0-b5a7-9c5503579808","addressSpace":{"addressPrefixes":["10.21.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_zftu_/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"1053849f-aadd-46b7-adb4-68f2c99b4667\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.21.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_zftu_/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_zftu_/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_zftu_/providers/Microsoft.Network/virtualNetworks/vnet2","etag":"W/\"6e0d9449-7e3a-4c34-b50f-3c8399acf6c3\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"461af907-17d6-445f-b33b-4e4cce379fdc","addressSpace":{"addressPrefixes":["10.22.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_zftu_/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet","etag":"W/\"6e0d9449-7e3a-4c34-b50f-3c8399acf6c3\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.22.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_zftu_/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection_zftu_/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ag1Vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basicyzlikf3gtdca3fw25jc4az7iwrl2mqyv4mscpnia5wm3b6c5cawqbgcpyp/providers/Microsoft.Network/virtualNetworks/ag1Vnet","etag":"W/\"6007d52d-9320-4861-bed4-8acae8fcdbd7\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"468cdbfa-b672-4c76-9ab2-9494306dccfb","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basicyzlikf3gtdca3fw25jc4az7iwrl2mqyv4mscpnia5wm3b6c5cawqbgcpyp/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default","etag":"W/\"6007d52d-9320-4861-bed4-8acae8fcdbd7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basicyzlikf3gtdca3fw25jc4az7iwrl2mqyv4mscpnia5wm3b6c5cawqbgcpyp/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"}],"applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_basicyzlikf3gtdca3fw25jc4az7iwrl2mqyv4mscpnia5wm3b6c5cawqbgcpyp/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetrr7xiov6rjuu6alb3lil4e5uib4cdkc4ry67g2kwjcxazbdl/providers/Microsoft.Network/virtualNetworks/vnet2","etag":"W/\"1419629e-7ae4-44dc-bfef-666e741fcac5\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d35c4f6d-09bb-497e-861f-d00c2174cce6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetrr7xiov6rjuu6alb3lil4e5uib4cdkc4ry67g2kwjcxazbdl/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/subnet1","etag":"W/\"1419629e-7ae4-44dc-bfef-666e741fcac5\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetrr7xiov6rjuu6alb3lil4e5uib4cdkc4ry67g2kwjcxazbdl/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP"}],"applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetrr7xiov6rjuu6alb3lil4e5uib4cdkc4ry67g2kwjcxazbdl/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ag1Vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait76mi32fwwn6v2gphokpwg7ihkzfpqvohpv6cqexu7ijh7nx34gi7k74o/providers/Microsoft.Network/virtualNetworks/ag1Vnet","etag":"W/\"511b7546-e67f-4253-bef3-97fb52ffeb72\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"96e763e0-ff2c-4780-9751-f843e0b6cb1e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait76mi32fwwn6v2gphokpwg7ihkzfpqvohpv6cqexu7ijh7nx34gi7k74o/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default","etag":"W/\"511b7546-e67f-4253-bef3-97fb52ffeb72\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait76mi32fwwn6v2gphokpwg7ihkzfpqvohpv6cqexu7ijh7nx34gi7k74o/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"}],"applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait76mi32fwwn6v2gphokpwg7ihkzfpqvohpv6cqexu7ijh7nx34gi7k74o/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ag2Vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait76mi32fwwn6v2gphokpwg7ihkzfpqvohpv6cqexu7ijh7nx34gi7k74o/providers/Microsoft.Network/virtualNetworks/ag2Vnet","etag":"W/\"997d2cb6-09e6-4aee-bfe6-c0bf33747737\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c6fb0e78-e9d6-4b16-968d-7eb95eb69b12","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait76mi32fwwn6v2gphokpwg7ihkzfpqvohpv6cqexu7ijh7nx34gi7k74o/providers/Microsoft.Network/virtualNetworks/ag2Vnet/subnets/default","etag":"W/\"997d2cb6-09e6-4aee-bfe6-c0bf33747737\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait76mi32fwwn6v2gphokpwg7ihkzfpqvohpv6cqexu7ijh7nx34gi7k74o/providers/Microsoft.Network/applicationGateways/ag2/frontendIPConfigurations/appGatewayFrontendIP"}],"applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_no_wait76mi32fwwn6v2gphokpwg7ihkzfpqvohpv6cqexu7ijh7nx34gi7k74o/providers/Microsoft.Network/applicationGateways/ag2/gatewayIPConfigurations/appGatewayFrontendIP"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ag3Vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ipjso2ll6dntlowgzfcw2z7hycdr2isgnwrsb66nn2unwf2v376yccv/providers/Microsoft.Network/virtualNetworks/ag3Vnet","etag":"W/\"9a19f4ad-d8a1-4e7f-8159-52c5ff8ab004\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"991cf4ee-de05-40ca-b9ff-d0947fbfd959","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ipjso2ll6dntlowgzfcw2z7hycdr2isgnwrsb66nn2unwf2v376yccv/providers/Microsoft.Network/virtualNetworks/ag3Vnet/subnets/subnet1","etag":"W/\"9a19f4ad-d8a1-4e7f-8159-52c5ff8ab004\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ipjso2ll6dntlowgzfcw2z7hycdr2isgnwrsb66nn2unwf2v376yccv/providers/Microsoft.Network/applicationGateways/ag3/frontendIPConfigurations/appGatewayFrontendIP"}],"applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_private_ipjso2ll6dntlowgzfcw2z7hycdr2isgnwrsb66nn2unwf2v376yccv/providers/Microsoft.Network/applicationGateways/ag3/gatewayIPConfigurations/appGatewayFrontendIP"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip4ewtyar2x7beor6z4vuh6pe3zbvmwaqfyhtiqpcw5yiytbjowbrhk4/providers/Microsoft.Network/virtualNetworks/vnet4","etag":"W/\"c166c61f-335b-42a5-b8d0-3f4dfd909d9b\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0b45d4f7-b59a-4999-874c-bcd2a593c9c2","addressSpace":{"addressPrefixes":["10.0.0.1/16"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip4ewtyar2x7beor6z4vuh6pe3zbvmwaqfyhtiqpcw5yiytbjowbrhk4/providers/Microsoft.Network/virtualNetworks/vnet4/subnets/subnet1","etag":"W/\"c166c61f-335b-42a5-b8d0-3f4dfd909d9b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.1/28","applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_public_ip4ewtyar2x7beor6z4vuh6pe3zbvmwaqfyhtiqpcw5yiytbjowbrhk4/providers/Microsoft.Network/applicationGateways/test4/gatewayIPConfigurations/appGatewayFrontendIP"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_configdem7pzxy6l7pkry4f62lapt6tq2nj4du2n63kimmnccg/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"0c5a5c70-2684-4c56-a396-7e24f6d6a326\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2e659d52-5df0-40ab-b3eb-2e28fbf6f3db","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_configdem7pzxy6l7pkry4f62lapt6tq2nj4du2n63kimmnccg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"0c5a5c70-2684-4c56-a396-7e24f6d6a326\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_app_gateway_waf_configdem7pzxy6l7pkry4f62lapt6tq2nj4du2n63kimmnccg/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmss1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_38b8_/providers/Microsoft.Network/virtualNetworks/vmss1VNET","etag":"W/\"7ee16a01-597a-4bb4-ba69-f43cbddb0cf4\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f88f91e3-4651-4c78-9d1a-382c90031812","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_38b8_/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet","etag":"W/\"7ee16a01-597a-4bb4-ba69-f43cbddb0cf4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_38b8_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1f30cNic/ipConfigurations/vmss1f30cIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_38b8_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1f30cNic/ipConfigurations/vmss1f30cIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_38b8_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/6/networkInterfaces/vmss1f30cNic/ipConfigurations/vmss1f30cIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_38b8_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/9/networkInterfaces/vmss1f30cNic/ipConfigurations/vmss1f30cIPConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmss1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/virtualNetworks/vmss1VNET","etag":"W/\"9359171e-48e8-411d-828c-75cdaab1c9c3\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7f16ed24-7010-4239-9ba2-0683ba666057","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet","etag":"W/\"9359171e-48e8-411d-828c-75cdaab1c9c3\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1a6c3Nic/ipConfigurations/vmss1a6c3IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_and_modify_ul0o_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/4/networkInterfaces/vmss1a6c3Nic/ipConfigurations/vmss1a6c3IPConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmss1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/virtualNetworks/vmss1VNET","etag":"W/\"131757cf-0a05-4ef1-9383-7ed9d9af161e\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"589bdb6d-c512-498e-b95f-37cc04c2db71","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet","etag":"W/\"131757cf-0a05-4ef1-9383-7ed9d9af161e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1861aNic/ipConfigurations/vmss1861aIPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_0pen_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1861aNic/ipConfigurations/vmss1861aIPConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmss1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_nek3_/providers/Microsoft.Network/virtualNetworks/vmss1VNET","etag":"W/\"ea83e411-d4b0-4d7e-bfc1-f45b18791db0\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"74615939-ccbc-4651-bcde-b3ffda6acb26","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_nek3_/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet","etag":"W/\"ea83e411-d4b0-4d7e-bfc1-f45b18791db0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_nek3_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss10cf6Nic/ipConfigurations/vmss10cf6IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_nek3_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss10cf6Nic/ipConfigurations/vmss10cf6IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_nek3_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss10cf6Nic/ipConfigurations/vmss10cf6IPConfig"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_vms_nek3_/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss10cf6Nic/ipConfigurations/vmss10cf6IPConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peeringmukrm4m7aslveq7erreojue7eggfhncvd4txikytsyppmojwmhnpah/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"d1177b15-461b-47ff-a9ff-8c06057b1aaf\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e2fecb26-38a8-46d0-b11b-b68d5fa2cd5f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peeringmukrm4m7aslveq7erreojue7eggfhncvd4txikytsyppmojwmhnpah/providers/Microsoft.Network/virtualNetworks/vnet2","etag":"W/\"c30f8da0-6533-460d-a030-09bfd5b1dc10\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a8224799-b824-4f09-8e12-de77a6917de1","addressSpace":{"addressPrefixes":["11.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peeringmukrm4m7aslveq7erreojue7eggfhncvd4txikytsyppmojwmhnpah/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet","etag":"W/\"c30f8da0-6533-460d-a030-09bfd5b1dc10\"","properties":{"provisioningState":"Succeeded","addressPrefix":"11.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peeringmukrm4m7aslveq7erreojue7eggfhncvd4txikytsyppmojwmhnpah/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsecbqommzodmacvbpa7q6okwahrn4iu6b564dazfjh2ixggrt/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"f9c63a8e-7095-4808-8d08-9d7fec5f85ec\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"00ed6b2d-e57b-4897-80bf-fdfc045c1074","addressSpace":{"addressPrefixes":["10.11.0.0/16","10.12.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"FrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsecbqommzodmacvbpa7q6okwahrn4iu6b564dazfjh2ixggrt/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd","etag":"W/\"f9c63a8e-7095-4808-8d08-9d7fec5f85ec\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.11.0.0/24"}},{"name":"BackEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsecbqommzodmacvbpa7q6okwahrn4iu6b564dazfjh2ixggrt/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd","etag":"W/\"f9c63a8e-7095-4808-8d08-9d7fec5f85ec\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.12.0.0/24"}},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsecbqommzodmacvbpa7q6okwahrn4iu6b564dazfjh2ixggrt/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"f9c63a8e-7095-4808-8d08-9d7fec5f85ec\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.12.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsecbqommzodmacvbpa7q6okwahrn4iu6b564dazfjh2ixggrt/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"myvnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworks/myvnet1","etag":"W/\"7f92ac89-3606-401c-9585-6a5b08e0ff31\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"99fae051-04b2-4d01-bb94-1687218580e4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet","etag":"W/\"7f92ac89-3606-401c-9585-6a5b08e0ff31\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"myvnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworks/myvnet2","etag":"W/\"18df0a5e-2a8a-4a88-94f1-0eba5bf00d14\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1732bb89-4c24-4855-847c-b339dd7f473d","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet","etag":"W/\"18df0a5e-2a8a-4a88-94f1-0eba5bf00d14\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"myvnet3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworks/myvnet3","etag":"W/\"07fcd368-a3d9-4ef6-9842-ee92eedda20e\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a56d0287-db45-49fb-bc3c-96aa57941d6c","addressSpace":{"addressPrefixes":["10.2.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet","etag":"W/\"07fcd368-a3d9-4ef6-9842-ee92eedda20e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3cwxlgzd2hff7myl455upaaqgqcj7bks7aze7fegm6xda6w3fqq4j4v/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"myvnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworks/myvnet1","etag":"W/\"4d95fdf1-2615-4ffe-b5c6-b169faf74afa\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"18af4693-3551-4766-8218-42643af4bb8b","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet","etag":"W/\"4d95fdf1-2615-4ffe-b5c6-b169faf74afa\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"myvnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworks/myvnet2","etag":"W/\"62542b15-5602-4ffb-9648-e58770339915\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d1db209b-f975-4a44-b144-e4900898cca1","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet","etag":"W/\"62542b15-5602-4ffb-9648-e58770339915\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"myvnet3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworks/myvnet3","etag":"W/\"c6333f5c-b595-47fb-af0d-915408d3de42\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9607f7d8-5794-4bba-9d4a-1ce4178dd23f","addressSpace":{"addressPrefixes":["10.2.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet","etag":"W/\"c6333f5c-b595-47fb-af0d-915408d3de42\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway3e42ylbokj7q6toepd4hsbbwtlvge5ywuv7dsryfqarwamk2xagbhts/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet","etag":"W/\"66c47058-e682-4448-8fbe-8a3d7436f7ac\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"36b3aa93-9605-4af0-908d-ec04b6dad263","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default","etag":"W/\"66c47058-e682-4448-8fbe-8a3d7436f7ac\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"lmazuel-msiVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/virtualNetworks/lmazuel-msiVNET","etag":"W/\"daf1fab6-2a64-492e-a97e-aa3f65444750\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"500b8794-c5bc-4917-8ecb-5340ea00f6c9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"lmazuel-msiSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/virtualNetworks/lmazuel-msiVNET/subnets/lmazuel-msiSubnet","etag":"W/\"daf1fab6-2a64-492e-a97e-aa3f65444750\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Network/networkInterfaces/lmazuel-msiVMNic/ipConfigurations/ipconfiglmazuel-msi"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-test-umVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","etag":"W/\"7ccc29ef-fa4f-49b2-9d12-401e15f8bf90\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9138ac66-3a9b-41a5-9b42-ee4035ec0299","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"sdk-test-umSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet","etag":"W/\"7ccc29ef-fa4f-49b2-9d12-401e15f8bf90\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic/ipConfigurations/ipconfigsdk-test-um"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic/ipConfigurations/ipconfigsdk-test-m"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"46b44565-a853-478a-9832-04d3058d17d2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0688e1a6-a292-45a9-abbf-89ab88adfa3c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"46b44565-a853-478a-9832-04d3058d17d2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet2","etag":"W/\"e3d8bc98-365c-4b2f-ae65-8ee11f4c3cf2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"982ac016-7cb8-4fa3-aaa1-4fee2ca6d459","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet","etag":"W/\"e3d8bc98-365c-4b2f-ae65-8ee11f4c3cf2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworkGateways/gw2/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet3","etag":"W/\"7cb608cb-56eb-472a-aaa8-f4e87e312ca2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5df08db7-af79-475e-b4e6-22108b7c442e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet3/subnets/GatewaySubnet","etag":"W/\"7cb608cb-56eb-472a-aaa8-f4e87e312ca2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworkGateways/gw3/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet3b113294929d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Network/virtualNetworks/vnet3b113294929d","etag":"W/\"9ab612ad-f1c1-478f-b2a8-1f8264db0a74\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"182e6322-d089-4321-9970-7aee3a594a62","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Network/virtualNetworks/vnet3b113294929d/subnets/subnet1","etag":"W/\"9ab612ad-f1c1-478f-b2a8-1f8264db0a74\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Network/networkInterfaces/nicvm98770952395a0/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetaf607829e49b","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Network/virtualNetworks/vnetaf607829e49b","etag":"W/\"42a720b3-8d70-420c-97aa-c15f99572cff\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5f9c7919-5c48-4928-a502-d8b0e4afb9ea","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Network/virtualNetworks/vnetaf607829e49b/subnets/subnet1","etag":"W/\"42a720b3-8d70-420c-97aa-c15f99572cff\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Network/networkInterfaces/nicvm352199f65934e/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"myvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_mod_nukv_/providers/Microsoft.Network/virtualNetworks/myvnet","etag":"W/\"71c0a717-2006-4a65-a574-16b0419a98ff\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{"secondtag":"2","firsttag":"1","thirdtag":""},"properties":{"provisioningState":"Succeeded","resourceGuid":"144c01b7-700c-49e5-b537-28f63e874e17","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm-state-modSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_mod_nukv_/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/vm-state-modSubnet","etag":"W/\"71c0a717-2006-4a65-a574-16b0419a98ff\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_mod_nukv_/providers/Microsoft.Network/networkInterfaces/vm-state-modVMNic/ipConfigurations/ipconfigvm-state-mod"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/virtualNetworks/vmssvnet","etag":"W/\"68b93195-e160-4c83-9a7f-5e9536e31995\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c3aad8e2-bb61-4fde-8e54-7d858f7c9fb6","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1","etag":"W/\"68b93195-e160-4c83-9a7f-5e9536e31995\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7028/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Network/loadBalancers/InternalLb1-7519/frontendIPConfigurations/InternalLb1-7519-FE1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet6162","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/virtualNetworks/vmssvnet6162","etag":"W/\"cfc90937-dc9a-4bb4-b856-e1efe9d103fa\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d5d6ae64-94df-45da-92f3-635c41a333f5","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Network/virtualNetworks/vmssvnet6162/subnets/subnet1","etag":"W/\"cfc90937-dc9a-4bb4-b856-e1efe9d103fa\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Compute/virtualMachineScaleSets/vmss4482/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Compute/virtualMachineScaleSets/vmss4482/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet4272","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8582/providers/Microsoft.Network/virtualNetworks/vmssvnet4272","etag":"W/\"e3ec62df-e8d8-4fd6-90f2-b39d2e3d5a51\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bb9cc535-a683-42bf-ba51-5c0fe5439c74","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8582/providers/Microsoft.Network/virtualNetworks/vmssvnet4272/subnets/subnet1","etag":"W/\"e3ec62df-e8d8-4fd6-90f2-b39d2e3d5a51\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8582/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3359/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8582/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3359/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet4711","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8873/providers/Microsoft.Network/virtualNetworks/vmssvnet4711","etag":"W/\"7dd44e2d-54aa-40ec-aac4-d7e27ec512da\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"4f13de22-9b9d-4578-9108-300f409b54fa","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8873/providers/Microsoft.Network/virtualNetworks/vmssvnet4711/subnets/subnet1","etag":"W/\"7dd44e2d-54aa-40ec-aac4-d7e27ec512da\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8873/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8711/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8873/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8711/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8873/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8711/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet18440","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2415/providers/Microsoft.Network/virtualNetworks/vnet18440","etag":"W/\"087420a1-e5ab-443e-a668-08ea9c80caba\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Failed","resourceGuid":"aec9d742-1180-4dfb-9b98-daa9de631b25","addressSpace":{"addressPrefixes":["10.0.0.0/24"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2415/providers/Microsoft.Network/virtualNetworks/vnet18440/subnets/default","etag":"W/\"087420a1-e5ab-443e-a668-08ea9c80caba\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.0/25"}},{"name":"apps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2415/providers/Microsoft.Network/virtualNetworks/vnet18440/subnets/apps","etag":"W/\"087420a1-e5ab-443e-a668-08ea9c80caba\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.128/25"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet138990755b5e","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/virtualNetworks/vnet138990755b5e","etag":"W/\"f8427631-522f-4c9f-b6cf-1e8b4607bcf4\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7b1160ac-d2e2-4b4c-b586-a37cb41f336b","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/virtualNetworks/vnet138990755b5e/subnets/subnet1","etag":"W/\"f8427631-522f-4c9f-b6cf-1e8b4607bcf4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/networkInterfaces/nicjavavmcc8931117/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet7e9631105505","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/virtualNetworks/vnet7e9631105505","etag":"W/\"e3bb7332-0c4b-4e60-8fab-b57993194430\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"adb0d6b9-a19d-4f6d-bec2-9cf9fe840db4","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/virtualNetworks/vnet7e9631105505/subnets/subnet1","etag":"W/\"e3bb7332-0c4b-4e60-8fab-b57993194430\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Network/networkInterfaces/nicjavavm1e282865e/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet6c8506221f13","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2525/providers/Microsoft.Network/virtualNetworks/vnet6c8506221f13","etag":"W/\"7a2b1aba-abfe-442a-a3d7-a8345238a5d2\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"123a10fe-8cea-48bc-89c7-08cb01dd79c2","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2525/providers/Microsoft.Network/virtualNetworks/vnet6c8506221f13/subnets/subnet1","etag":"W/\"7a2b1aba-abfe-442a-a3d7-a8345238a5d2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2525/providers/Microsoft.Network/networkInterfaces/nicjavavm476969061/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vneta66890089119","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Network/virtualNetworks/vneta66890089119","etag":"W/\"af697d15-1f22-4b34-a42a-767f8cc34314\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"16a5e894-3d04-4e3f-b5fd-b9720bceabac","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Network/virtualNetworks/vneta66890089119/subnets/subnet1","etag":"W/\"af697d15-1f22-4b34-a42a-767f8cc34314\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Network/networkInterfaces/nicjavavm4c785897c/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet6c306640dde2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3029/providers/Microsoft.Network/virtualNetworks/vnet6c306640dde2","etag":"W/\"a701b245-df11-49d3-a581-0ede3916bfcc\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"89625d11-d3e5-45b5-9bd6-3b269eeb9e46","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3029/providers/Microsoft.Network/virtualNetworks/vnet6c306640dde2/subnets/subnet1","etag":"W/\"a701b245-df11-49d3-a581-0ede3916bfcc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3029/providers/Microsoft.Network/networkInterfaces/nicjavavm83e379558/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet99579892e854","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3186/providers/Microsoft.Network/virtualNetworks/vnet99579892e854","etag":"W/\"63761b0d-884c-4c12-8a2f-7efdf379fc34\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9069cf9e-5bec-43a5-ae05-ba8e871c7bb0","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3186/providers/Microsoft.Network/virtualNetworks/vnet99579892e854/subnets/subnet1","etag":"W/\"63761b0d-884c-4c12-8a2f-7efdf379fc34\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3186/providers/Microsoft.Network/networkInterfaces/nicjavavm4de36016f/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet60c703070efe","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3563/providers/Microsoft.Network/virtualNetworks/vnet60c703070efe","etag":"W/\"ad6e662e-e1ad-417b-a489-197ab8762386\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"825217da-41c4-47e2-9852-259b567af912","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3563/providers/Microsoft.Network/virtualNetworks/vnet60c703070efe/subnets/subnet1","etag":"W/\"ad6e662e-e1ad-417b-a489-197ab8762386\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3563/providers/Microsoft.Network/networkInterfaces/nicjavavmf2f398302/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetabf007224bda","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Network/virtualNetworks/vnetabf007224bda","etag":"W/\"9f502c1a-0ae1-4b1d-9eb4-fda1807068fb\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a1819889-25fd-43f0-bc58-73f236966423","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Network/virtualNetworks/vnetabf007224bda/subnets/subnet1","etag":"W/\"9f502c1a-0ae1-4b1d-9eb4-fda1807068fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Network/networkInterfaces/nicjavavm46c88641d/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1d4572532142","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4715/providers/Microsoft.Network/virtualNetworks/vnet1d4572532142","etag":"W/\"d751c449-7144-490c-966d-5d86609d0a45\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0147bbdb-92fb-49bc-a631-d5631ad886c1","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4715/providers/Microsoft.Network/virtualNetworks/vnet1d4572532142/subnets/subnet1","etag":"W/\"d751c449-7144-490c-966d-5d86609d0a45\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4715/providers/Microsoft.Network/networkInterfaces/nicjavavm54c860019/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet7791659363b4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5333/providers/Microsoft.Network/virtualNetworks/vnet7791659363b4","etag":"W/\"15ceabd3-47ac-47f0-b430-b85d04557615\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"190b8518-2e21-43c4-ac04-50baaf361eca","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5333/providers/Microsoft.Network/virtualNetworks/vnet7791659363b4/subnets/subnet1","etag":"W/\"15ceabd3-47ac-47f0-b430-b85d04557615\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5333/providers/Microsoft.Network/networkInterfaces/nicjavavmd8476554d/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetc949007407f8","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/virtualNetworks/vnetc949007407f8","etag":"W/\"73fa3ef8-7891-4f65-8ba9-fcaf9d2f7076\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d73116a2-1372-4bd7-823c-f10f09841e82","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/virtualNetworks/vnetc949007407f8/subnets/subnet1","etag":"W/\"73fa3ef8-7891-4f65-8ba9-fcaf9d2f7076\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/networkInterfaces/nicjavavm39e565117/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetcfb988796f25","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/virtualNetworks/vnetcfb988796f25","etag":"W/\"3f246726-d166-460d-a728-d80b68c83d2e\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"acfdd684-3b23-4a88-a0f6-c86562f12eaa","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/virtualNetworks/vnetcfb988796f25/subnets/subnet1","etag":"W/\"3f246726-d166-460d-a728-d80b68c83d2e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Network/networkInterfaces/nicjavavma8221083d/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet5cd82119a1d0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Network/virtualNetworks/vnet5cd82119a1d0","etag":"W/\"6ca7d5e9-6267-4512-a3ea-ff94770fb8f2\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"59f49f95-c580-4dc2-bc02-93003d38db38","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Network/virtualNetworks/vnet5cd82119a1d0/subnets/subnet1","etag":"W/\"6ca7d5e9-6267-4512-a3ea-ff94770fb8f2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Network/networkInterfaces/nicjavavm39976319b/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet71899620e679","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Network/virtualNetworks/vnet71899620e679","etag":"W/\"da4ca36e-4fa1-4c72-96e8-8983eed9af46\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fed49cd4-d3aa-484f-ba00-8c44f9324428","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Network/virtualNetworks/vnet71899620e679/subnets/subnet1","etag":"W/\"da4ca36e-4fa1-4c72-96e8-8983eed9af46\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Network/networkInterfaces/nicjavavm85b55897f/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet8ee4743959ac","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8703/providers/Microsoft.Network/virtualNetworks/vnet8ee4743959ac","etag":"W/\"bc7485b2-824a-47d4-9f17-1930044fd4b4\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6fcaa048-83d0-4e0e-9bb9-cd8e9ea0fe74","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8703/providers/Microsoft.Network/virtualNetworks/vnet8ee4743959ac/subnets/subnet1","etag":"W/\"bc7485b2-824a-47d4-9f17-1930044fd4b4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8703/providers/Microsoft.Network/networkInterfaces/nicjavavm661119155/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetcb7899590df5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8982/providers/Microsoft.Network/virtualNetworks/vnetcb7899590df5","etag":"W/\"4bcfb7a1-5a55-4dbc-9a8b-337bc84a3fed\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fcad2a60-a599-4fb7-92c1-9715faf84246","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8982/providers/Microsoft.Network/virtualNetworks/vnetcb7899590df5/subnets/subnet1","etag":"W/\"4bcfb7a1-5a55-4dbc-9a8b-337bc84a3fed\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8982/providers/Microsoft.Network/networkInterfaces/nicjavavm68f106789/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet27f9376021c4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9183/providers/Microsoft.Network/virtualNetworks/vnet27f9376021c4","etag":"W/\"a2b9a094-03fe-49aa-9147-2eacb805b0f7\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"dfa1d60b-0f63-4079-9bc2-8ea7b3782b2b","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9183/providers/Microsoft.Network/virtualNetworks/vnet27f9376021c4/subnets/subnet1","etag":"W/\"a2b9a094-03fe-49aa-9147-2eacb805b0f7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9183/providers/Microsoft.Network/networkInterfaces/nicjavavmb2429596e/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet5e479625bfba","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3106/providers/Microsoft.Network/virtualNetworks/vnet5e479625bfba","etag":"W/\"3c3b23c7-6680-4af6-a06c-b525e4437927\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f458dc09-dead-4305-9305-40c88029035d","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3106/providers/Microsoft.Network/virtualNetworks/vnet5e479625bfba/subnets/subnet1","etag":"W/\"3c3b23c7-6680-4af6-a06c-b525e4437927\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3106/providers/Microsoft.Network/networkInterfaces/nicjavavmaf169667e/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet5d4449478ad9","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3256/providers/Microsoft.Network/virtualNetworks/vnet5d4449478ad9","etag":"W/\"b487396c-0b7c-4b18-980d-b16a9c1b8cab\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e4dbfd44-5dde-4350-b00f-8be7583d6270","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3256/providers/Microsoft.Network/virtualNetworks/vnet5d4449478ad9/subnets/subnet1","etag":"W/\"b487396c-0b7c-4b18-980d-b16a9c1b8cab\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest3256/providers/Microsoft.Network/networkInterfaces/nicjavavm2e714975c/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet5b551590acc7","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6444/providers/Microsoft.Network/virtualNetworks/vnet5b551590acc7","etag":"W/\"5ebc7d56-f52c-4428-9b10-bc7436ca8c5a\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e1eb3a51-0289-4177-9382-e0c3d33b9529","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6444/providers/Microsoft.Network/virtualNetworks/vnet5b551590acc7/subnets/subnet1","etag":"W/\"5ebc7d56-f52c-4428-9b10-bc7436ca8c5a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6444/providers/Microsoft.Network/networkInterfaces/nicjavavmefd36064f/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet732873763691","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6976/providers/Microsoft.Network/virtualNetworks/vnet732873763691","etag":"W/\"ce5c9b8f-1a29-4d31-b172-1598aa97ff90\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a43e040c-8050-49e6-bc5e-38556bcf67e4","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6976/providers/Microsoft.Network/virtualNetworks/vnet732873763691/subnets/subnet1","etag":"W/\"ce5c9b8f-1a29-4d31-b172-1598aa97ff90\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6976/providers/Microsoft.Network/networkInterfaces/nicjavavm1ad847173/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet7ba4503663c3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8304/providers/Microsoft.Network/virtualNetworks/vnet7ba4503663c3","etag":"W/\"0a976f26-72d6-4da7-8f52-c95053198597\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6dab1744-c730-49c6-b1fb-955b7b4417a0","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8304/providers/Microsoft.Network/virtualNetworks/vnet7ba4503663c3/subnets/subnet1","etag":"W/\"0a976f26-72d6-4da7-8f52-c95053198597\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest8304/providers/Microsoft.Network/networkInterfaces/nicjavavmaaa950432/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet32363813bcc2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9214/providers/Microsoft.Network/virtualNetworks/vnet32363813bcc2","etag":"W/\"020f4b26-98df-42b8-88d8-e06852e69bd2\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ed154cee-0b6d-4fc2-bb39-4f470454bd7a","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9214/providers/Microsoft.Network/virtualNetworks/vnet32363813bcc2/subnets/subnet1","etag":"W/\"020f4b26-98df-42b8-88d8-e06852e69bd2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9214/providers/Microsoft.Network/networkInterfaces/nicjavavm99c45138c/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet828137293111","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9764/providers/Microsoft.Network/virtualNetworks/vnet828137293111","etag":"W/\"376f5765-3ee4-460d-9f97-806743f9e780\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7bb185c5-7c8f-4686-b051-db2339eb1348","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9764/providers/Microsoft.Network/virtualNetworks/vnet828137293111/subnets/subnet1","etag":"W/\"376f5765-3ee4-460d-9f97-806743f9e780\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9764/providers/Microsoft.Network/networkInterfaces/nicjavavmdb2027529/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"williexu-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/williexu/providers/Microsoft.Network/virtualNetworks/williexu-vnet","etag":"W/\"09ea5a23-e1d2-4380-b1f5-5723331a477d\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5a6f8568-9008-459b-b80e-821c5abe454b","addressSpace":{"addressPrefixes":["172.16.1.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/williexu/providers/Microsoft.Network/virtualNetworks/williexu-vnet/subnets/default","etag":"W/\"09ea5a23-e1d2-4380-b1f5-5723331a477d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"172.16.1.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet14077957b15c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/virtualNetworks/vnet14077957b15c","etag":"W/\"fcb9f0d0-fbb1-4232-96d3-b4d6cc3401e0\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3cbf47f1-ad6a-4bb4-ab05-70fba6bbd4de","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/virtualNetworks/vnet14077957b15c/subnets/subnet1","etag":"W/\"fcb9f0d0-fbb1-4232-96d3-b4d6cc3401e0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/networkInterfaces/nicchashvm87c477632/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetf99444542c46","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/virtualNetworks/vnetf99444542c46","etag":"W/\"7cd7f96d-93bd-4abd-bc6d-d8d9cee50314\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"92fa6678-2e71-4fc5-9904-c5ef1e681b25","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/virtualNetworks/vnetf99444542c46/subnets/subnet1","etag":"W/\"7cd7f96d-93bd-4abd-bc6d-d8d9cee50314\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Network/networkInterfaces/nicchashvm330417655/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet7b646225df2a","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/virtualNetworks/vnet7b646225df2a","etag":"W/\"697ae496-65a8-47d2-81d4-7d2fe178b7d1\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a6c5b3d4-ec10-46a8-8179-c63f761cc1a5","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/virtualNetworks/vnet7b646225df2a/subnets/subnet1","etag":"W/\"697ae496-65a8-47d2-81d4-7d2fe178b7d1\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/networkInterfaces/nicchashvm6d7706674/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetcd136980737d","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/virtualNetworks/vnetcd136980737d","etag":"W/\"cf6c909d-2e50-44f0-a99e-a53a99f74bb6\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f1fbb6ba-bf41-4152-bc6b-1bdde2f39a67","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/virtualNetworks/vnetcd136980737d/subnets/subnet1","etag":"W/\"cf6c909d-2e50-44f0-a99e-a53a99f74bb6\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Network/networkInterfaces/nicchashvm9b8313727/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw2-winVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/virtualNetworks/yugangw2-winVNET","etag":"W/\"fcab2d55-fcb6-47ba-9111-5e7dec7f5a4d\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0fe96ae3-dedc-428c-a41a-ed82f087cfa7","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw2-winSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/virtualNetworks/yugangw2-winVNET/subnets/yugangw2-winSubnet","etag":"W/\"fcab2d55-fcb6-47ba-9111-5e7dec7f5a4d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-winVMNic/ipConfigurations/ipconfigyugangw2-win"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-vm-cmdVMNic/ipConfigurations/ipconfigyugangw2-vm-cmd"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Network/networkInterfaces/yugangw2-11VMNic/ipConfigurations/ipconfigyugangw2-11"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet97f39307cc1f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1480/providers/Microsoft.Network/virtualNetworks/vnet97f39307cc1f","etag":"W/\"41a203ad-73c3-441f-8bd8-df975439229f\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"2b52d660-fd76-46de-84ef-bdbdc9978456","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1480/providers/Microsoft.Network/virtualNetworks/vnet97f39307cc1f/subnets/subnet1","etag":"W/\"41a203ad-73c3-441f-8bd8-df975439229f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1480/providers/Microsoft.Network/networkInterfaces/nicextvm719417512836/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet74895359ae39","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4331/providers/Microsoft.Network/virtualNetworks/vnet74895359ae39","etag":"W/\"bf758bec-e03f-4eee-8cf9-a3a4b2f666f7\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"eadfae3f-d30a-4cc1-b932-fcc51c3e78fc","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4331/providers/Microsoft.Network/virtualNetworks/vnet74895359ae39/subnets/subnet1","etag":"W/\"bf758bec-e03f-4eee-8cf9-a3a4b2f666f7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4331/providers/Microsoft.Network/networkInterfaces/nicextvm2624b0362328/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet8368528351d6","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5713/providers/Microsoft.Network/virtualNetworks/vnet8368528351d6","etag":"W/\"af3b6375-bb04-4e23-88ce-d7d80bac0db0\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b6d0079b-5b97-4d0f-90e9-2727804ff091","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5713/providers/Microsoft.Network/virtualNetworks/vnet8368528351d6/subnets/subnet1","etag":"W/\"af3b6375-bb04-4e23-88ce-d7d80bac0db0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5713/providers/Microsoft.Network/networkInterfaces/nicextvm4741c4241300/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-canary-ssVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/virtualNetworks/yugangw-canary-ssVNET","etag":"W/\"9680a9c6-4d1d-44bb-9196-f7b42e0f2f98\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bd74d751-3b0a-43c3-9dd8-79b0c68d3df7","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-canary-ssSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Network/virtualNetworks/yugangw-canary-ssVNET/subnets/yugangw-canary-ssSubnet","etag":"W/\"9680a9c6-4d1d-44bb-9196-f7b42e0f2f98\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw-canary/providers/Microsoft.Compute/virtualMachineScaleSets/yugangw-canary-ss/virtualMachines/1/networkInterfaces/yugan6806Nic/ipConfigurations/yugan6806IPConfig"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}'}
- headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:04 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['113519']
- x-ms-original-request-ids: [72a80253-c30c-45b6-8aef-de0eda42a9d2, beb66e23-2dba-4b76-b36a-44563b24006c,
- b0b7821e-b24b-4d40-ba07-293f8dca533e, fa03f699-5712-4f9b-a3c6-20bfecf3d031,
- de3a0b0e-610f-4bdb-ac1d-b71e3d07f6cb]
+ body: {string: '{"value":[{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"7a9fbc6c-d902-4ce2-ba72-1c43b3201efc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"},"properties":{"provisioningState":"Succeeded","resourceGuid":"55c22cf6-f423-45d2-92e0-c1e9cd0cc0b1","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"7a9fbc6c-d902-4ce2-ba72-1c43b3201efc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"Dtlcliautomationlab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","etag":"W/\"1fe83bae-1d3a-4b04-af02-731b2b65d150\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"},"properties":{"provisioningState":"Succeeded","resourceGuid":"58d9d284-409c-4aa6-9878-5bd35ac2c617","addressSpace":{"addressPrefixes":["10.0.0.0/20"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"DtlcliautomationlabSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/subnets/DtlcliautomationlabSubnet","etag":"W/\"1fe83bae-1d3a-4b04-af02-731b2b65d150\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/20"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connectionblqko4tugcbupob3psdmqbldxuam/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"8dcd89bf-e4e5-4efa-8a09-d0921c186ec4\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5291d1f1-9cad-4983-89ea-42c88332eaac","addressSpace":{"addressPrefixes":["10.11.0.0/16","10.12.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connectionblqko4tugcbupob3psdmqbldxuam/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"8dcd89bf-e4e5-4efa-8a09-d0921c186ec4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.12.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connectionblqko4tugcbupob3psdmqbldxuam/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connectionblqko4tugcbupob3psdmqbldxuam/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connectionnnuhtnoo2atopkukzs67udmcjqps/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"ad9d6c20-1689-4f66-9113-cde9fa5486c4\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"11bbb0e8-8868-47cd-96fa-fbc588d80786","addressSpace":{"addressPrefixes":["10.11.0.0/16","10.12.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connectionnnuhtnoo2atopkukzs67udmcjqps/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"ad9d6c20-1689-4f66-9113-cde9fa5486c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.12.255.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connectionnnuhtnoo2atopkukzs67udmcjqps/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_cross_premise_connectionnnuhtnoo2atopkukzs67udmcjqps/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"0bd26fbf-75c2-4abb-978d-15c620328048\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default","etag":"W/\"0bd26fbf-75c2-4abb-978d-15c620328048\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet59582","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg88435b/providers/Microsoft.Network/virtualNetworks/vnet59582","etag":"W/\"5b6ee9cf-00f6-4814-a0c6-c655b96fb33a\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Failed","resourceGuid":"8df10961-f012-4388-90a5-53fa7d637d7f","addressSpace":{"addressPrefixes":["10.0.0.0/24"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"apps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg88435b/providers/Microsoft.Network/virtualNetworks/vnet59582/subnets/apps","etag":"W/\"5b6ee9cf-00f6-4814-a0c6-c655b96fb33a\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.128/25"}},{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg88435b/providers/Microsoft.Network/virtualNetworks/vnet59582/subnets/default","etag":"W/\"5b6ee9cf-00f6-4814-a0c6-c655b96fb33a\"","properties":{"provisioningState":"Failed","addressPrefix":"10.0.0.0/25"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-test-umVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","etag":"W/\"7ccc29ef-fa4f-49b2-9d12-401e15f8bf90\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9138ac66-3a9b-41a5-9b42-ee4035ec0299","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"sdk-test-umSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET/subnets/sdk-test-umSubnet","etag":"W/\"7ccc29ef-fa4f-49b2-9d12-401e15f8bf90\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic/ipConfigurations/ipconfigsdk-test-um"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic/ipConfigurations/ipconfigsdk-test-m"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vgw/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"397e4a66-1cd5-4044-8940-273906f0f46f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"295170b5-e5fe-48cc-b1e5-38ec3fc8c6f3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vgw/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet","etag":"W/\"397e4a66-1cd5-4044-8940-273906f0f46f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vgw/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ag1Vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vnet/providers/Microsoft.Network/virtualNetworks/ag1Vnet","etag":"W/\"b0bc3f40-01fd-4abf-968d-f1c1d068af37\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a5897621-acfc-45d3-ae3e-eb27ede58f7b","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vnet/providers/Microsoft.Network/virtualNetworks/ag1Vnet/subnets/default","etag":"W/\"b0bc3f40-01fd-4abf-968d-f1c1d068af37\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vnet/providers/Microsoft.Network/applicationGateways/ag1/frontendIPConfigurations/appGatewayFrontendIP"}],"applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vnet/providers/Microsoft.Network/applicationGateways/ag1/gatewayIPConfigurations/appGatewayFrontendIP"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vnet/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"209e5de8-453b-493f-bfac-335d432d8f33\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"0e37db87-91c4-414c-ae67-4e98f6b306d1","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vnet/providers/Microsoft.Network/virtualNetworks/vnet2","etag":"W/\"39efbccc-8dbb-4db0-8edc-c923619ee87a\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b22dda66-fffe-4da2-89d4-a6bea5e72db8","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"my-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/my-vnet","etag":"W/\"e4906d65-0b18-49c8-a78c-4495a904f67b\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6700697a-522c-4974-b6cf-6e425995fbbb","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"my-subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet1","etag":"W/\"e4906d65-0b18-49c8-a78c-4495a904f67b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/my-nic/ipConfigurations/ipconfig1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet5be67635126c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc6690group/providers/Microsoft.Network/virtualNetworks/vnet5be67635126c","etag":"W/\"24a52c4d-f7d8-4e83-a7be-313699010cf0\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"360c36a2-6117-43d0-8b30-8ede8f9b9026","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc6690group/providers/Microsoft.Network/virtualNetworks/vnet5be67635126c/subnets/subnet1","etag":"W/\"24a52c4d-f7d8-4e83-a7be-313699010cf0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc6690group/providers/Microsoft.Network/networkInterfaces/nicvm9924f60886656/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3009/providers/Microsoft.Network/virtualNetworks/vmssvnet","etag":"W/\"b69420a9-399a-4966-abab-989a215fdc17\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bfc26b1c-9859-4b1b-a9cb-d765aaac4081","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3009/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1","etag":"W/\"b69420a9-399a-4966-abab-989a215fdc17\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3009/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3053/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3009/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3053/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3009/providers/Microsoft.Network/loadBalancers/InternalLb1-817/frontendIPConfigurations/InternalLb1-817-FE1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet7130","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3773/providers/Microsoft.Network/virtualNetworks/vmssvnet7130","etag":"W/\"9e82e5bf-1e70-4c4c-80b8-56c679127a3d\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"55fe2152-60b4-467f-91bd-bf9d2d8ea251","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3773/providers/Microsoft.Network/virtualNetworks/vmssvnet7130/subnets/subnet1","etag":"W/\"9e82e5bf-1e70-4c4c-80b8-56c679127a3d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3773/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8526/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3773/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8526/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3773/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8526/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet1854","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3958/providers/Microsoft.Network/virtualNetworks/vmssvnet1854","etag":"W/\"14696f14-8a08-4f64-93ec-74b45c311d89\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"cd0f3f99-992d-4c83-bdf7-bd887aad2a4f","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3958/providers/Microsoft.Network/virtualNetworks/vmssvnet1854/subnets/subnet1","etag":"W/\"14696f14-8a08-4f64-93ec-74b45c311d89\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet7848","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5537/providers/Microsoft.Network/virtualNetworks/vmssvnet7848","etag":"W/\"8c62b25a-c972-48d1-a1cc-6220ae5fb784\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bedbc51b-5093-45e3-8d8a-0740a69f3e88","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5537/providers/Microsoft.Network/virtualNetworks/vmssvnet7848/subnets/subnet1","etag":"W/\"8c62b25a-c972-48d1-a1cc-6220ae5fb784\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5537/providers/Microsoft.Compute/virtualMachineScaleSets/vmss6796/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5537/providers/Microsoft.Compute/virtualMachineScaleSets/vmss6796/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet2253","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6081/providers/Microsoft.Network/virtualNetworks/vmssvnet2253","etag":"W/\"e281baf0-0ba8-4d8f-83e1-9085e641919c\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"02a5549a-b110-4434-944d-f8bc806408f7","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6081/providers/Microsoft.Network/virtualNetworks/vmssvnet2253/subnets/subnet1","etag":"W/\"e281baf0-0ba8-4d8f-83e1-9085e641919c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6081/providers/Microsoft.Compute/virtualMachineScaleSets/vmss993/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6081/providers/Microsoft.Compute/virtualMachineScaleSets/vmss993/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7721/providers/Microsoft.Network/virtualNetworks/vmssvnet","etag":"W/\"fbfa8642-34f2-4b21-9654-a5591140eba5\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b16ce4e8-f8f1-45b2-bfa3-da999d08b108","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7721/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1","etag":"W/\"fbfa8642-34f2-4b21-9654-a5591140eba5\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7721/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8577/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7721/providers/Microsoft.Compute/virtualMachineScaleSets/vmss8577/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7721/providers/Microsoft.Network/loadBalancers/InternalLb1-3447/frontendIPConfigurations/InternalLb1-3447-FE1"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet5820","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg845/providers/Microsoft.Network/virtualNetworks/vmssvnet5820","etag":"W/\"9a343d54-8780-467f-b082-a41b200ab8fa\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"699c748e-de1a-43f3-be1b-146652a5e342","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg845/providers/Microsoft.Network/virtualNetworks/vmssvnet5820/subnets/subnet1","etag":"W/\"9a343d54-8780-467f-b082-a41b200ab8fa\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg845/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7510/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg845/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7510/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vmssvnet26","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9251/providers/Microsoft.Network/virtualNetworks/vmssvnet26","etag":"W/\"3fd82253-568b-4f97-a040-280ce406af54\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"6c487e6f-3a97-425f-9ee1-8d4af1b4a289","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9251/providers/Microsoft.Network/virtualNetworks/vmssvnet26/subnets/subnet1","etag":"W/\"3fd82253-568b-4f97-a040-280ce406af54\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9251/providers/Microsoft.Compute/virtualMachineScaleSets/vmss4230/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9251/providers/Microsoft.Compute/virtualMachineScaleSets/vmss4230/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet46775","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg24d19947d/providers/Microsoft.Network/virtualNetworks/vnet46775","etag":"W/\"ff7e64a9-51b9-46c3-82c3-8585b06fcf1d\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"107ef335-fbe0-4dd9-a9a5-7b2f4bcff9d6","addressSpace":{"addressPrefixes":["10.0.0.0/24"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"apps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg24d19947d/providers/Microsoft.Network/virtualNetworks/vnet46775/subnets/apps","etag":"W/\"ff7e64a9-51b9-46c3-82c3-8585b06fcf1d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.128/25"}},{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg24d19947d/providers/Microsoft.Network/virtualNetworks/vnet46775/subnets/default","etag":"W/\"ff7e64a9-51b9-46c3-82c3-8585b06fcf1d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/25","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg24d19947d/providers/Microsoft.Network/applicationGateways/ag25493154b/frontendIPConfigurations/frontend56868"}],"applicationGatewayIPConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg24d19947d/providers/Microsoft.Network/applicationGateways/ag25493154b/gatewayIPConfigurations/ipcfg96322"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet00232590ab","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm211028group/providers/Microsoft.Network/virtualNetworks/vnet00232590ab","etag":"W/\"e37f23ed-20aa-4244-8588-81fac3de41f3\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9e92de80-df68-4a13-86bf-31d5a52bc1b6","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm211028group/providers/Microsoft.Network/virtualNetworks/vnet00232590ab/subnets/subnet1","etag":"W/\"e37f23ed-20aa-4244-8588-81fac3de41f3\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm211028group/providers/Microsoft.Network/networkInterfaces/nicvm211028d2485001/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet30868dcb7b","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm977621group/providers/Microsoft.Network/virtualNetworks/vnet30868dcb7b","etag":"W/\"6ced8c68-295e-4448-9142-9395d0ff4b53\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"13cde06d-745f-4a40-b374-e0154dbb0b2f","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm977621group/providers/Microsoft.Network/virtualNetworks/vnet30868dcb7b/subnets/subnet1","etag":"W/\"6ced8c68-295e-4448-9142-9395d0ff4b53\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm977621group/providers/Microsoft.Network/networkInterfaces/nicvm9776213cc00161/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet35d1499277fc","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3526/providers/Microsoft.Network/virtualNetworks/vnet35d1499277fc","etag":"W/\"60973515-74ca-47c4-bd9a-06e03d47e86e\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"64489dde-d606-4353-a510-81a6a0d7e9bb","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3526/providers/Microsoft.Network/virtualNetworks/vnet35d1499277fc/subnets/subnet1","etag":"W/\"60973515-74ca-47c4-bd9a-06e03d47e86e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3526/providers/Microsoft.Network/networkInterfaces/nicjavavmc25681042/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet33b983449943","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3559/providers/Microsoft.Network/virtualNetworks/vnet33b983449943","etag":"W/\"1a569e2c-bdad-4b72-8521-cc240075ac7c\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"88875b65-4b48-486b-82bc-e9b4948740ee","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3559/providers/Microsoft.Network/virtualNetworks/vnet33b983449943/subnets/subnet1","etag":"W/\"1a569e2c-bdad-4b72-8521-cc240075ac7c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3559/providers/Microsoft.Network/networkInterfaces/nicjavavm310260578/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet63407550e244","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3559/providers/Microsoft.Network/virtualNetworks/vnet63407550e244","etag":"W/\"36b51f01-9215-4356-9705-533921d154ad\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ee1323a1-9613-4856-9244-ef456f83ee07","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3559/providers/Microsoft.Network/virtualNetworks/vnet63407550e244/subnets/subnet1","etag":"W/\"36b51f01-9215-4356-9705-533921d154ad\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3559/providers/Microsoft.Network/networkInterfaces/nicjavavm8f1348449/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet83234828ecfc","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4249/providers/Microsoft.Network/virtualNetworks/vnet83234828ecfc","etag":"W/\"c6670b1d-7a61-47f8-81b8-051074f3cf7b\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e244e289-2891-4e7c-b9cd-6356fa9c29e7","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4249/providers/Microsoft.Network/virtualNetworks/vnet83234828ecfc/subnets/subnet1","etag":"W/\"c6670b1d-7a61-47f8-81b8-051074f3cf7b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4249/providers/Microsoft.Network/networkInterfaces/nicjavavm33e277127/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet48f36936ac72","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6555/providers/Microsoft.Network/virtualNetworks/vnet48f36936ac72","etag":"W/\"430f209f-75d9-4a26-9410-1b44ee149cc5\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"53d421e9-5e11-4ae0-aa49-d4f8ac06733f","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6555/providers/Microsoft.Network/virtualNetworks/vnet48f36936ac72/subnets/subnet1","etag":"W/\"430f209f-75d9-4a26-9410-1b44ee149cc5\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6555/providers/Microsoft.Network/networkInterfaces/nicjavavme4e082101/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet2d723083d637","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6964/providers/Microsoft.Network/virtualNetworks/vnet2d723083d637","etag":"W/\"46b1c1a3-9928-4733-930c-a7fdc2f20ab5\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"54cb96fc-a98d-4c9e-9e5a-bd29afb04b87","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6964/providers/Microsoft.Network/virtualNetworks/vnet2d723083d637/subnets/subnet1","etag":"W/\"46b1c1a3-9928-4733-930c-a7fdc2f20ab5\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6964/providers/Microsoft.Network/networkInterfaces/nicjavavm47d214681/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet37775319276c","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7855/providers/Microsoft.Network/virtualNetworks/vnet37775319276c","etag":"W/\"a5df9ab4-01e2-484a-a2c6-b303fc987579\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"062963f6-9c34-4a14-8e2b-18ed3befa5cc","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7855/providers/Microsoft.Network/virtualNetworks/vnet37775319276c/subnets/subnet1","etag":"W/\"a5df9ab4-01e2-484a-a2c6-b303fc987579\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7855/providers/Microsoft.Network/networkInterfaces/nicjavavm05234722e/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetdf93051830b3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8612/providers/Microsoft.Network/virtualNetworks/vnetdf93051830b3","etag":"W/\"21aee182-c712-4e15-b27e-b3d0ffbbd0ab\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"332b6faf-d487-4a43-9768-e8dcd4aac03c","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8612/providers/Microsoft.Network/virtualNetworks/vnetdf93051830b3/subnets/subnet1","etag":"W/\"21aee182-c712-4e15-b27e-b3d0ffbbd0ab\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8612/providers/Microsoft.Network/networkInterfaces/nicjavavmc4d89580d/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetf9432478eace","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1418/providers/Microsoft.Network/virtualNetworks/vnetf9432478eace","etag":"W/\"41c92d2b-3163-45c5-b723-b20fecf8bfb1\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"723adc40-f6a7-40bc-8617-e9cc790ceefc","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1418/providers/Microsoft.Network/virtualNetworks/vnetf9432478eace/subnets/subnet1","etag":"W/\"41c92d2b-3163-45c5-b723-b20fecf8bfb1\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest1418/providers/Microsoft.Network/networkInterfaces/nicjavavmeaf612064/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetd1312529d2f6","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6690/providers/Microsoft.Network/virtualNetworks/vnetd1312529d2f6","etag":"W/\"52688758-776a-497f-92c8-531ca9ab2406\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ba418fa7-84ce-4b6e-990e-396215f1e8a8","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6690/providers/Microsoft.Network/virtualNetworks/vnetd1312529d2f6/subnets/subnet1","etag":"W/\"52688758-776a-497f-92c8-531ca9ab2406\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest6690/providers/Microsoft.Network/networkInterfaces/nicjavavm9cd177013/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet4b9647654fe8","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9036/providers/Microsoft.Network/virtualNetworks/vnet4b9647654fe8","etag":"W/\"86d285e8-3738-4ed2-ae6e-4b85b53b31e4\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"68da0413-db7c-4ff5-9c0f-6c7f43cb3587","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9036/providers/Microsoft.Network/virtualNetworks/vnet4b9647654fe8/subnets/subnet1","etag":"W/\"86d285e8-3738-4ed2-ae6e-4b85b53b31e4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest9036/providers/Microsoft.Network/networkInterfaces/nicjavavm61556001e/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"wilxvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet","etag":"W/\"018d335f-eb43-4e94-85ad-f35a483a7942\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"97088327-6818-4229-8f88-7e385ea37eb9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"wilxsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet/subnets/wilxsubnet","etag":"W/\"018d335f-eb43-4e94-85ad-f35a483a7942\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic/ipConfigurations/ipconfigwilx-vm"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"net55762f","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg55762f/providers/Microsoft.Network/virtualNetworks/net55762f","etag":"W/\"88725f36-9d46-45fd-ad3c-4176a19c1daa\"","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b55e5e8a-3c69-46a9-8981-67f1057c224e","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg55762f/providers/Microsoft.Network/virtualNetworks/net55762f/subnets/subnet1","etag":"W/\"88725f36-9d46-45fd-ad3c-4176a19c1daa\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/29","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg55762f/providers/Microsoft.Network/networkSecurityGroups/nsg55762f"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg55762f/providers/Microsoft.Network/networkInterfaces/nic94285da1e9f/ipConfigurations/primary"}]}},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg55762f/providers/Microsoft.Network/virtualNetworks/net55762f/subnets/subnet2","etag":"W/\"88725f36-9d46-45fd-ad3c-4176a19c1daa\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.8/29"}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet30936a8960","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg55762f/providers/Microsoft.Network/virtualNetworks/vnet30936a8960","etag":"W/\"72ce76b8-e276-4496-8eda-0154b04bda6c\"","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"95b5dd2e-f377-4cf4-bf76-88adef1f6e4f","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg55762f/providers/Microsoft.Network/virtualNetworks/vnet30936a8960/subnets/subnet1","etag":"W/\"72ce76b8-e276-4496-8eda-0154b04bda6c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg55762f/providers/Microsoft.Network/networkInterfaces/ni55762f/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet030228446dd4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3348/providers/Microsoft.Network/virtualNetworks/vnet030228446dd4","etag":"W/\"0027c121-1f97-4d98-9e49-2d709e499b36\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5421f1de-9b23-4c3a-873b-333dae851f00","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3348/providers/Microsoft.Network/virtualNetworks/vnet030228446dd4/subnets/subnet1","etag":"W/\"0027c121-1f97-4d98-9e49-2d709e499b36\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3348/providers/Microsoft.Network/networkInterfaces/nicchashvm15c96414e/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetd5697800ae51","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3348/providers/Microsoft.Network/virtualNetworks/vnetd5697800ae51","etag":"W/\"b9194786-bceb-4c52-8747-8b9e4e8d5ec1\"","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d468d3c6-ffad-466a-9ba8-f9d2f5c409e9","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3348/providers/Microsoft.Network/virtualNetworks/vnetd5697800ae51/subnets/subnet1","etag":"W/\"b9194786-bceb-4c52-8747-8b9e4e8d5ec1\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3348/providers/Microsoft.Network/networkInterfaces/nicchashvmc6939133b/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnet20e58354afad","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5382/providers/Microsoft.Network/virtualNetworks/vnet20e58354afad","etag":"W/\"18769bde-8998-4528-959a-130317ebb740\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b5189882-056a-43a9-b413-3b092ae22b71","addressSpace":{"addressPrefixes":["10.0.0.0/28"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5382/providers/Microsoft.Network/virtualNetworks/vnet20e58354afad/subnets/subnet1","etag":"W/\"18769bde-8998-4528-959a-130317ebb740\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/28","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5382/providers/Microsoft.Network/networkInterfaces/nicextvm920a9662871/ipConfigurations/primary"}]}}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['48011']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30:58 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ x-ms-original-request-ids: [3a062f67-066d-414b-86df-971da3c72948, 221e88f4-99c7-4a5a-956f-1c66745e7265,
+ 971adcb7-ed10-473c-b015-8295d75e1ed6, 8cf793d8-5ff3-4f97-bcc3-2268056561df,
+ 251f6f5a-9862-4003-837a-b7d6f3b85f79]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0cfb2b08-9cce-11e7-b2af-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"test-vnet\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"66c47058-e682-4448-8fbe-8a3d7436f7ac\\\"\",\r\
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1\",\r\n\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"0bd26fbf-75c2-4abb-978d-15c620328048\\\"\",\r\
\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \
\ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\":\
\ [\r\n {\r\n \"name\": \"default\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"66c47058-e682-4448-8fbe-8a3d7436f7ac\\\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"0bd26fbf-75c2-4abb-978d-15c620328048\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n \
\ }\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-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04: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]
- content-length: ['1293']
+ cache-control: [no-cache]
+ content-length: ['1393']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0d1658de-9cce-11e7-8c81-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"66c47058-e682-4448-8fbe-8a3d7436f7ac\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"0bd26fbf-75c2-4abb-978d-15c620328048\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"66c47058-e682-4448-8fbe-8a3d7436f7ac\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"0bd26fbf-75c2-4abb-978d-15c620328048\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:05 GMT']
- ETag: [W/"66c47058-e682-4448-8fbe-8a3d7436f7ac"]
- 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]
- content-length: ['1132']
+ cache-control: [no-cache]
+ content-length: ['1232']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30:58 GMT']
+ etag: [W/"0bd26fbf-75c2-4abb-978d-15c620328048"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0d381790-9cce-11e7-a62e-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"66c47058-e682-4448-8fbe-8a3d7436f7ac\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"0bd26fbf-75c2-4abb-978d-15c620328048\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"66c47058-e682-4448-8fbe-8a3d7436f7ac\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"0bd26fbf-75c2-4abb-978d-15c620328048\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:05 GMT']
- ETag: [W/"66c47058-e682-4448-8fbe-8a3d7436f7ac"]
- 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]
- content-length: ['1132']
+ cache-control: [no-cache]
+ content-length: ['1232']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:00 GMT']
+ etag: [W/"0bd26fbf-75c2-4abb-978d-15c620328048"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"dhcpOptions": {"dnsServers": ["1.2.3.4"]}, "enableDdosProtection":
- false, "subnets": [{"properties": {"addressPrefix": "10.0.0.0/24", "provisioningState":
- "Succeeded"}, "name": "default", "etag": "W/\"66c47058-e682-4448-8fbe-8a3d7436f7ac\"",
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default"}],
- "virtualNetworkPeerings": [], "addressSpace": {"addressPrefixes": ["20.0.0.0/16",
- "10.0.0.0/16"]}, "provisioningState": "Succeeded", "enableVmProtection": false,
- "resourceGuid": "36b3aa93-9605-4af0-908d-ec04b6dad263"}, "location": "westus",
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet",
- "etag": "W/\"66c47058-e682-4448-8fbe-8a3d7436f7ac\"", "tags": {}}'
+ body: 'b''{"etag": "W/\\"0bd26fbf-75c2-4abb-978d-15c620328048\\"", "location":
+ "westus", "properties": {"dhcpOptions": {"dnsServers": ["1.2.3.4"]}, "addressSpace":
+ {"addressPrefixes": ["20.0.0.0/16", "10.0.0.0/16"]}, "virtualNetworkPeerings":
+ [], "enableDdosProtection": false, "resourceGuid": "c14a8f61-c0ac-4d61-a747-ad35f8cd89cb",
+ "subnets": [{"etag": "W/\\"0bd26fbf-75c2-4abb-978d-15c620328048\\"", "name":
+ "default", "properties": {"addressPrefix": "10.0.0.0/24", "provisioningState":
+ "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default"}],
+ "enableVmProtection": false, "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1",
+ "tags": {}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['883']
+ Content-Length: ['987']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0d51976c-9cce-11e7-9453-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"ee1d3990-b6f6-447c-9c75-4f627a8a2cc3\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"2fb8d4f1-3ae5-415f-8734-b03df5b33fa1\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": [\r\n \"1.2.3.4\"\r\n ]\r\n },\r\
\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"ee1d3990-b6f6-447c-9c75-4f627a8a2cc3\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"2fb8d4f1-3ae5-415f-8734-b03df5b33fa1\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/e71dd491-68c3-4e93-adde-2d516aa89da4?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:05 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['1181']
- x-ms-ratelimit-remaining-subscription-writes: ['1186']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3edc0fa9-5b63-4583-ac8c-055d85ce6ef5?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1281']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:30:59 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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0d51976c-9cce-11e7-9453-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e71dd491-68c3-4e93-adde-2d516aa89da4?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3edc0fa9-5b63-4583-ac8c-055d85ce6ef5?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:09 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0d51976c-9cce-11e7-9453-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"1a0f4b9e-230a-4775-afb2-45857e90bc5a\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"9c0b4f14-81c5-4719-bc2c-9b4688a2cc62\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": [\r\n \"1.2.3.4\"\r\n ]\r\n },\r\
\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"1a0f4b9e-230a-4775-afb2-45857e90bc5a\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"9c0b4f14-81c5-4719-bc2c-9b4688a2cc62\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:08 GMT']
- ETag: [W/"1a0f4b9e-230a-4775-afb2-45857e90bc5a"]
- 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]
- content-length: ['1183']
+ cache-control: [no-cache]
+ content-length: ['1283']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:04 GMT']
+ etag: [W/"9c0b4f14-81c5-4719-bc2c-9b4688a2cc62"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0f98b948-9cce-11e7-8a5a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"1a0f4b9e-230a-4775-afb2-45857e90bc5a\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"9c0b4f14-81c5-4719-bc2c-9b4688a2cc62\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": [\r\n \"1.2.3.4\"\r\n ]\r\n },\r\
\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"1a0f4b9e-230a-4775-afb2-45857e90bc5a\\\"\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"9c0b4f14-81c5-4719-bc2c-9b4688a2cc62\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:09 GMT']
- ETag: [W/"1a0f4b9e-230a-4775-afb2-45857e90bc5a"]
- 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]
- content-length: ['1183']
+ cache-control: [no-cache]
+ content-length: ['1283']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:04 GMT']
+ etag: [W/"9c0b4f14-81c5-4719-bc2c-9b4688a2cc62"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"dhcpOptions": {}, "enableDdosProtection": false, "subnets":
- [{"properties": {"addressPrefix": "10.0.0.0/24", "provisioningState": "Succeeded"},
- "name": "default", "etag": "W/\"1a0f4b9e-230a-4775-afb2-45857e90bc5a\"", "id":
- "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default"}],
- "virtualNetworkPeerings": [], "addressSpace": {"addressPrefixes": ["20.0.0.0/16",
- "10.0.0.0/16"]}, "provisioningState": "Succeeded", "enableVmProtection": false,
- "resourceGuid": "36b3aa93-9605-4af0-908d-ec04b6dad263"}, "location": "westus",
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet",
- "etag": "W/\"1a0f4b9e-230a-4775-afb2-45857e90bc5a\"", "tags": {}}'
+ body: 'b''{"etag": "W/\\"9c0b4f14-81c5-4719-bc2c-9b4688a2cc62\\"", "location":
+ "westus", "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes":
+ ["20.0.0.0/16", "10.0.0.0/16"]}, "virtualNetworkPeerings": [], "enableDdosProtection":
+ false, "resourceGuid": "c14a8f61-c0ac-4d61-a747-ad35f8cd89cb", "subnets": [{"etag":
+ "W/\\"9c0b4f14-81c5-4719-bc2c-9b4688a2cc62\\"", "name": "default", "properties":
+ {"addressPrefix": "10.0.0.0/24", "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default"}],
+ "enableVmProtection": false, "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1",
+ "tags": {}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['858']
+ Content-Length: ['962']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0fc0ba9a-9cce-11e7-974b-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"7a72ee89-238e-4b37-a185-59484a03fcf5\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"83aafb9d-599d-4213-be18-1792ab54a615\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\
- \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"7a72ee89-238e-4b37-a185-59484a03fcf5\\\"\"\
+ \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"83aafb9d-599d-4213-be18-1792ab54a615\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5efaf554-a4f3-40e1-801e-1f100b904b5f?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:10 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['1154']
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/97420e98-7c11-4aa6-bfa3-10266394377e?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1254']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31: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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0fc0ba9a-9cce-11e7-974b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5efaf554-a4f3-40e1-801e-1f100b904b5f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/97420e98-7c11-4aa6-bfa3-10266394377e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:12 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [0fc0ba9a-9cce-11e7-974b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"40d0ec94-bd11-44f5-8c86-0c389bf42ff6\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"bab28b0f-0371-488c-9021-6f90bd3f0218\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\
- \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"40d0ec94-bd11-44f5-8c86-0c389bf42ff6\\\"\"\
+ \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"bab28b0f-0371-488c-9021-6f90bd3f0218\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:12 GMT']
- ETag: [W/"40d0ec94-bd11-44f5-8c86-0c389bf42ff6"]
- 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]
- content-length: ['1156']
+ cache-control: [no-cache]
+ content-length: ['1256']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:08 GMT']
+ etag: [W/"bab28b0f-0371-488c-9021-6f90bd3f0218"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [11f5c40c-9cce-11e7-979a-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"40d0ec94-bd11-44f5-8c86-0c389bf42ff6\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"bab28b0f-0371-488c-9021-6f90bd3f0218\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
20.0.0.0/16\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\
- \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"40d0ec94-bd11-44f5-8c86-0c389bf42ff6\\\"\"\
+ \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"bab28b0f-0371-488c-9021-6f90bd3f0218\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:13 GMT']
- ETag: [W/"40d0ec94-bd11-44f5-8c86-0c389bf42ff6"]
- 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]
- content-length: ['1156']
+ cache-control: [no-cache]
+ content-length: ['1256']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:09 GMT']
+ etag: [W/"bab28b0f-0371-488c-9021-6f90bd3f0218"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"dhcpOptions": {"dnsServers": []}, "enableDdosProtection":
- false, "subnets": [{"properties": {"addressPrefix": "10.0.0.0/24", "provisioningState":
- "Succeeded"}, "name": "default", "etag": "W/\"40d0ec94-bd11-44f5-8c86-0c389bf42ff6\"",
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default"}],
- "virtualNetworkPeerings": [], "addressSpace": {"addressPrefixes": ["20.0.0.0/24",
- "10.0.0.0/16"]}, "provisioningState": "Succeeded", "enableVmProtection": false,
- "resourceGuid": "36b3aa93-9605-4af0-908d-ec04b6dad263"}, "location": "westus",
- "id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet",
- "etag": "W/\"40d0ec94-bd11-44f5-8c86-0c389bf42ff6\"", "tags": {}}'
+ body: 'b''{"etag": "W/\\"bab28b0f-0371-488c-9021-6f90bd3f0218\\"", "location":
+ "westus", "properties": {"dhcpOptions": {"dnsServers": []}, "addressSpace":
+ {"addressPrefixes": ["20.0.0.0/24", "10.0.0.0/16"]}, "virtualNetworkPeerings":
+ [], "enableDdosProtection": false, "resourceGuid": "c14a8f61-c0ac-4d61-a747-ad35f8cd89cb",
+ "subnets": [{"etag": "W/\\"bab28b0f-0371-488c-9021-6f90bd3f0218\\"", "name":
+ "default", "properties": {"addressPrefix": "10.0.0.0/24", "provisioningState":
+ "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default"}],
+ "enableVmProtection": false, "provisioningState": "Succeeded"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1",
+ "tags": {}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['874']
+ Content-Length: ['978']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [120a610a-9cce-11e7-9e3e-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"a7661721-5d05-4642-b27f-e939ee3dd507\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"522e5913-d1f8-4685-b806-3549e075b8df\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
20.0.0.0/24\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\
- \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"a7661721-5d05-4642-b27f-e939ee3dd507\\\"\"\
+ \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"522e5913-d1f8-4685-b806-3549e075b8df\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/6daa8462-9a19-4696-a362-fb7bd1495456?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:13 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['1154']
- x-ms-ratelimit-remaining-subscription-writes: ['1175']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/87e0b91f-0059-4839-8f3f-afe783eabef6?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1254']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:09 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-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [120a610a-9cce-11e7-9e3e-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6daa8462-9a19-4696-a362-fb7bd1495456?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/87e0b91f-0059-4839-8f3f-afe783eabef6?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:16 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:13 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [120a610a-9cce-11e7-9e3e-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"9c2e9631-617c-441e-a5dc-19b4881979da\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"46e85d02-319e-41eb-982f-b9baa0487d03\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
20.0.0.0/24\",\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\"\
: {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\
- \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"9c2e9631-617c-441e-a5dc-19b4881979da\\\"\"\
+ \n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"46e85d02-319e-41eb-982f-b9baa0487d03\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:17 GMT']
- ETag: [W/"9c2e9631-617c-441e-a5dc-19b4881979da"]
- 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]
- content-length: ['1156']
+ cache-control: [no-cache]
+ content-length: ['1256']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:13 GMT']
+ etag: [W/"46e85d02-319e-41eb-982f-b9baa0487d03"]
+ 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]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"addressPrefix": "20.0.0.0/24"}, "name": "test-subnet1"}'
+ body: '{"name": "subnet1", "properties": {"addressPrefix": "20.0.0.0/24"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['72']
+ Content-Length: ['67']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [14330a06-9cce-11e7-84bf-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/test-subnet1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/test-subnet1\"\
- ,\r\n \"etag\": \"W/\\\"e94fee01-988b-4d50-b25a-37b7520e4e3f\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ ,\r\n \"etag\": \"W/\\\"7aa05db7-a485-496b-9190-eb161dc5d014\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"20.0.0.0/24\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/34c97fe6-2a42-444f-a3bc-d6fdbc122206?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['360']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:17 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b0b41838-2669-44fd-bbd6-b3d0469f03e8?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['402']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [14330a06-9cce-11e7-84bf-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/34c97fe6-2a42-444f-a3bc-d6fdbc122206?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b0b41838-2669-44fd-bbd6-b3d0469f03e8?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:20 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [14330a06-9cce-11e7-84bf-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/test-subnet1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/test-subnet1\"\
- ,\r\n \"etag\": \"W/\\\"7c31c918-08d8-42ed-9a54-174f8ca844c2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ ,\r\n \"etag\": \"W/\\\"a52153d1-6f0e-4169-b08a-eff1254f54a3\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"20.0.0.0/24\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:21 GMT']
- ETag: [W/"7c31c918-08d8-42ed-9a54-174f8ca844c2"]
- 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]
- content-length: ['361']
+ cache-control: [no-cache]
+ content-length: ['403']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:19 GMT']
+ etag: [W/"a52153d1-6f0e-4169-b08a-eff1254f54a3"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [16f1bada-9cce-11e7-9ae9-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"7c31c918-08d8-42ed-9a54-174f8ca844c2\\\"\",\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"a52153d1-6f0e-4169-b08a-eff1254f54a3\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n \
- \ {\r\n \"name\": \"test-subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/test-subnet1\"\
- ,\r\n \"etag\": \"W/\\\"7c31c918-08d8-42ed-9a54-174f8ca844c2\\\"\",\r\
+ \ {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ ,\r\n \"etag\": \"W/\\\"a52153d1-6f0e-4169-b08a-eff1254f54a3\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"20.0.0.0/24\"\r\n }\r\n }\r\n ]\r\
\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04: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]
- content-length: ['812']
+ cache-control: [no-cache]
+ content-length: ['906']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31: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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [170ac57e-9cce-11e7-8240-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/test-subnet1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"test-subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/test-subnet1\"\
- ,\r\n \"etag\": \"W/\\\"7c31c918-08d8-42ed-9a54-174f8ca844c2\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
+ ,\r\n \"etag\": \"W/\\\"a52153d1-6f0e-4169-b08a-eff1254f54a3\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"20.0.0.0/24\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:21 GMT']
- ETag: [W/"7c31c918-08d8-42ed-9a54-174f8ca844c2"]
- 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]
- content-length: ['361']
+ cache-control: [no-cache]
+ content-length: ['403']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:20 GMT']
+ etag: [W/"a52153d1-6f0e-4169-b08a-eff1254f54a3"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1736e652-9cce-11e7-8cc6-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/test-subnet1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/e7431794-5e5e-4723-a2da-8209ea78398d?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 00:04:22 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/e7431794-5e5e-4723-a2da-8209ea78398d?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/282f4c79-7c3f-4779-98ac-d70fdc0a63b2?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:31:21 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/282f4c79-7c3f-4779-98ac-d70fdc0a63b2?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1736e652-9cce-11e7-8cc6-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e7431794-5e5e-4723-a2da-8209ea78398d?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/282f4c79-7c3f-4779-98ac-d70fdc0a63b2?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:32 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:31 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1e2ee2ae-9cce-11e7-9494-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"default\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"7d438346-94d8-4d83-9259-eb255213e6ff\\\"\",\r\
+ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"b0778de1-c29e-47aa-a233-d35818e31042\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\
\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['412']
+ cache-control: [no-cache]
+ content-length: ['464']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:32 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1e499b52-9cce-11e7-93a3-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"test-vnet\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet\"\
- ,\r\n \"etag\": \"W/\\\"7d438346-94d8-4d83-9259-eb255213e6ff\\\"\",\r\
+ body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1\",\r\n\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
+ ,\r\n \"etag\": \"W/\\\"b0778de1-c29e-47aa-a233-d35818e31042\\\"\",\r\
\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"36b3aa93-9605-4af0-908d-ec04b6dad263\"\
+ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c14a8f61-c0ac-4d61-a747-ad35f8cd89cb\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \
\ \"20.0.0.0/24\",\r\n \"10.0.0.0/16\"\r\n ]\r\
\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\
\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\
- : \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\
- ,\r\n \"etag\": \"W/\\\"7d438346-94d8-4d83-9259-eb255213e6ff\\\"\
+ : \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\
+ ,\r\n \"etag\": \"W/\\\"b0778de1-c29e-47aa-a233-d35818e31042\\\"\
\",\r\n \"properties\": {\r\n \"provisioningState\"\
: \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n \
\ }\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-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:34 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]
- content-length: ['1321']
+ cache-control: [no-cache]
+ content-length: ['1421']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:33 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1e6c1d7e-9cce-11e7-8cd7-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks/test-vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/69cd24f4-0500-4c66-954d-b10f72e985f8?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 00:04:34 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/69cd24f4-0500-4c66-954d-b10f72e985f8?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c1eddb69-6774-4cf3-b338-46278994d8ee?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:31:34 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/c1eddb69-6774-4cf3-b338-46278994d8ee?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [1e6c1d7e-9cce-11e7-8cd7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/69cd24f4-0500-4c66-954d-b10f72e985f8?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c1eddb69-6774-4cf3-b338-46278994d8ee?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:44 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:44 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [253f8746-9cce-11e7-9a0e-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_vnet_test000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
response:
body: {string: '{"value":[]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 00:04:45 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
+ cache-control: [no-cache]
content-length: ['12']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 11 Oct 2017 22:31:44 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_vnet_test000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 11 Oct 2017 22:31:46 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZWTkVUOjVGVEVTVFJMQlIyRTNTVlI3RkRHVzRQNDNJUkNWMkdDN0tGTHxGRkE5RjAzNEIxMEEwRTYzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vnet_peering.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vnet_peering.yaml
index fb3eea8f5b4..f5d3c041cc2 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vnet_peering.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vnet_peering.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_peering000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:48 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:32 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_peering000001?api-version=2017-05-10
@@ -46,72 +46,72 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:49 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"tags": {}, "location": "westus", "properties": {"addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}, "dhcpOptions": {}}}'
+ body: '{"properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}}, "tags": {}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['123']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"967e3b16-df6d-459c-877f-6480b81bd93a\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"5697d310-e718-41bd-bf94-ff19e9382edb\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"e2fecb26-38a8-46d0-b11b-b68d5fa2cd5f\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"ed15d22c-851d-4b41-b1b9-bb0e933bf57d\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\
\ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\
: false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c6043f1-04ca-4a9f-a73b-0bbcf1bce9dc?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2835b8f8-0e76-4d55-a696-b9a28ae4be00?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['766']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:50 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1191']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c6043f1-04ca-4a9f-a73b-0bbcf1bce9dc?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2835b8f8-0e76-4d55-a696-b9a28ae4be00?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:53 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -124,21 +124,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"d1177b15-461b-47ff-a9ff-8c06057b1aaf\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"25ec0493-ebdf-4a7f-b231-f8255ab699ba\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"e2fecb26-38a8-46d0-b11b-b68d5fa2cd5f\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ed15d22c-851d-4b41-b1b9-bb0e933bf57d\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\
@@ -148,8 +148,8 @@ interactions:
cache-control: [no-cache]
content-length: ['767']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:54 GMT']
- etag: [W/"d1177b15-461b-47ff-a9ff-8c06057b1aaf"]
+ date: ['Mon, 16 Oct 2017 21:56:37 GMT']
+ etag: [W/"25ec0493-ebdf-4a7f-b231-f8255ab699ba"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -162,12 +162,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_peering000001?api-version=2017-05-10
@@ -177,77 +177,77 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"tags": {}, "location": "westus", "properties": {"addressSpace": {"addressPrefixes":
- ["11.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "GatewaySubnet", "properties":
- {"addressPrefix": "11.0.0.0/24"}}]}}'
+ body: '{"properties": {"dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix":
+ "11.0.0.0/24"}, "name": "GatewaySubnet"}], "addressSpace": {"addressPrefixes":
+ ["11.0.0.0/16"]}}, "tags": {}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['211']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
- ,\r\n \"etag\": \"W/\\\"5ba31e24-44ba-42f8-b0c2-404b51b609a8\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"d5d2968c-5e65-4d7a-8a20-81cb0159089a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"a8224799-b824-4f09-8e12-de77a6917de1\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"2ed9da6b-b7b8-485f-8bfe-03ffc3f94755\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
11.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"5ba31e24-44ba-42f8-b0c2-404b51b609a8\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"d5d2968c-5e65-4d7a-8a20-81cb0159089a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"11.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/95710644-5f94-4104-9c65-5d52fbef7ccb?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f0ef985f-f662-448a-b9d3-8ac7f050f9d7?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1242']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/95710644-5f94-4104-9c65-5d52fbef7ccb?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f0ef985f-f662-448a-b9d3-8ac7f050f9d7?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:57 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -260,26 +260,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
- ,\r\n \"etag\": \"W/\\\"c4f8924c-94ce-4976-8754-e904507012fd\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"a95ebfe1-beb2-4e5d-ab62-429a28ae9123\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"a8224799-b824-4f09-8e12-de77a6917de1\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"2ed9da6b-b7b8-485f-8bfe-03ffc3f94755\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
11.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"c4f8924c-94ce-4976-8754-e904507012fd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a95ebfe1-beb2-4e5d-ab62-429a28ae9123\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"11.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -288,8 +288,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1244']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:57 GMT']
- etag: [W/"c4f8924c-94ce-4976-8754-e904507012fd"]
+ date: ['Mon, 16 Oct 2017 21:56:42 GMT']
+ etag: [W/"a95ebfe1-beb2-4e5d-ab62-429a28ae9123"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -302,12 +302,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_peering000001?api-version=2017-05-10
@@ -317,70 +317,71 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:58 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"sku": {"name": "Basic"}, "location": "westus", "properties": {"publicIPAllocationMethod":
- "Dynamic", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}'
+ body: '{"properties": {"idleTimeoutInMinutes": 4, "publicIPAddressVersion": "IPv4",
+ "publicIPAllocationMethod": "Dynamic"}, "sku": {"name": "Basic"}, "location":
+ "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['164']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1\"\
- ,\r\n \"etag\": \"W/\\\"2b5ff57e-8c60-42ae-9ccb-f60186b3c104\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"2b041812-2890-4e76-9ef6-61c01ce16599\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"e74cd754-5606-4ac5-86db-3a821b23ee2d\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"05103137-12cc-4aea-9da7-f8b84ea5fb6d\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ef847239-8132-4c36-beed-acf114c5140b?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2b1e035-99ea-4263-ae51-c439ea1d94fc?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['635']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:58 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:43 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1174']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ef847239-8132-4c36-beed-acf114c5140b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2b1e035-99ea-4263-ae51-c439ea1d94fc?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:02 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -393,20 +394,20 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1\"\
- ,\r\n \"etag\": \"W/\\\"e5981b3c-29a0-4357-9cc6-2032e2afe079\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"a6c11787-5b7f-4a6e-892a-89c701f4735c\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"e74cd754-5606-4ac5-86db-3a821b23ee2d\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"05103137-12cc-4aea-9da7-f8b84ea5fb6d\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
@@ -415,8 +416,8 @@ interactions:
cache-control: [no-cache]
content-length: ['636']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:01 GMT']
- etag: [W/"e5981b3c-29a0-4357-9cc6-2032e2afe079"]
+ date: ['Mon, 16 Oct 2017 21:56:46 GMT']
+ etag: [W/"a6c11787-5b7f-4a6e-892a-89c701f4735c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -429,20 +430,20 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1\"\
- ,\r\n \"etag\": \"W/\\\"e5981b3c-29a0-4357-9cc6-2032e2afe079\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"a6c11787-5b7f-4a6e-892a-89c701f4735c\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"e74cd754-5606-4ac5-86db-3a821b23ee2d\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"05103137-12cc-4aea-9da7-f8b84ea5fb6d\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
@@ -451,8 +452,8 @@ interactions:
cache-control: [no-cache]
content-length: ['636']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:02 GMT']
- etag: [W/"e5981b3c-29a0-4357-9cc6-2032e2afe079"]
+ date: ['Mon, 16 Oct 2017 21:56:47 GMT']
+ etag: [W/"a6c11787-5b7f-4a6e-892a-89c701f4735c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -465,26 +466,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
- ,\r\n \"etag\": \"W/\\\"c4f8924c-94ce-4976-8754-e904507012fd\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"a95ebfe1-beb2-4e5d-ab62-429a28ae9123\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"a8224799-b824-4f09-8e12-de77a6917de1\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"2ed9da6b-b7b8-485f-8bfe-03ffc3f94755\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
11.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"c4f8924c-94ce-4976-8754-e904507012fd\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a95ebfe1-beb2-4e5d-ab62-429a28ae9123\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"11.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -493,8 +494,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1244']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:02 GMT']
- etag: [W/"c4f8924c-94ce-4976-8754-e904507012fd"]
+ date: ['Mon, 16 Oct 2017 21:56:48 GMT']
+ etag: [W/"a95ebfe1-beb2-4e5d-ab62-429a28ae9123"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -507,12 +508,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_peering000001?api-version=2017-05-10
@@ -522,41 +523,41 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:03 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:48 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "properties": {"activeActive": false, "sku":
- {"name": "Basic", "tier": "Basic"}, "ipConfigurations": [{"name": "vnetGatewayConfig0",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet"},
+ body: 'b''{"properties": {"vpnType": "RouteBased", "ipConfigurations": [{"properties":
+ {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet"},
"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1"},
- "privateIPAllocationMethod": "Dynamic"}}], "gatewayType": "Vpn", "vpnType":
- "RouteBased"}}'''
+ "privateIPAllocationMethod": "Dynamic"}, "name": "vnetGatewayConfig0"}], "sku":
+ {"tier": "Basic", "name": "Basic"}, "gatewayType": "Vpn", "activeActive": false},
+ "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['720']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"e0487109-b1df-4fe4-8500-3f03eda92156\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bf443a33-bf7b-4be6-bd80-856c3514b8c9\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"c5de77ed-0664-4664-9646-10c2a2d8497f\",\r\n \
+ ,\r\n \"resourceGuid\": \"2a907f58-e90d-40be-bb11-4074f4573518\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"e0487109-b1df-4fe4-8500-3f03eda92156\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bf443a33-bf7b-4be6-bd80-856c3514b8c9\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1\"\
@@ -568,94 +569,38 @@ interactions:
: {\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\"\
: [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1933']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:04 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:49 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:13 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:24 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:34 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -668,22 +613,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:44 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -696,22 +641,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:55 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -724,22 +669,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:06 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -752,22 +697,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:16 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -780,22 +725,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:26 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -808,22 +753,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:37 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -836,22 +781,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:47 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:12 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -864,22 +809,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:57 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -892,22 +837,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:07 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -920,22 +865,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:17 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -948,22 +893,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:28 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -976,22 +921,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:37 GMT']
+ date: ['Mon, 16 Oct 2017 21:59:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1004,22 +949,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:48 GMT']
+ date: ['Mon, 16 Oct 2017 21:59:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1032,22 +977,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:58 GMT']
+ date: ['Mon, 16 Oct 2017 21:59:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1060,22 +1005,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:08 GMT']
+ date: ['Mon, 16 Oct 2017 21:59:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1088,22 +1033,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:19 GMT']
+ date: ['Mon, 16 Oct 2017 21:59:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1116,22 +1061,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:29 GMT']
+ date: ['Mon, 16 Oct 2017 21:59:55 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1144,22 +1089,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:39 GMT']
+ date: ['Mon, 16 Oct 2017 22:00:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1172,22 +1117,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:50 GMT']
+ date: ['Mon, 16 Oct 2017 22:00:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1200,22 +1145,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:01 GMT']
+ date: ['Mon, 16 Oct 2017 22:00:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1228,22 +1173,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:10 GMT']
+ date: ['Mon, 16 Oct 2017 22:00:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1256,22 +1201,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:21 GMT']
+ date: ['Mon, 16 Oct 2017 22:00:49 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1284,22 +1229,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:31 GMT']
+ date: ['Mon, 16 Oct 2017 22:00:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1312,22 +1257,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:41 GMT']
+ date: ['Mon, 16 Oct 2017 22:01:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1340,22 +1285,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:51 GMT']
+ date: ['Mon, 16 Oct 2017 22:01:19 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1368,22 +1313,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:02 GMT']
+ date: ['Mon, 16 Oct 2017 22:01:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1396,22 +1341,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:12 GMT']
+ date: ['Mon, 16 Oct 2017 22:01:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1424,22 +1369,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:22 GMT']
+ date: ['Mon, 16 Oct 2017 22:01:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1452,22 +1397,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:33 GMT']
+ date: ['Mon, 16 Oct 2017 22:02:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1480,22 +1425,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:43 GMT']
+ date: ['Mon, 16 Oct 2017 22:02:12 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1508,22 +1453,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:53 GMT']
+ date: ['Mon, 16 Oct 2017 22:02:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1536,22 +1481,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:03 GMT']
+ date: ['Mon, 16 Oct 2017 22:02:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1564,22 +1509,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:13 GMT']
+ date: ['Mon, 16 Oct 2017 22:02:43 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1592,22 +1537,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:24 GMT']
+ date: ['Mon, 16 Oct 2017 22:02:54 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1620,22 +1565,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:35 GMT']
+ date: ['Mon, 16 Oct 2017 22:03:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1648,22 +1593,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:45 GMT']
+ date: ['Mon, 16 Oct 2017 22:03:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1676,22 +1621,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:55 GMT']
+ date: ['Mon, 16 Oct 2017 22:03:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1704,22 +1649,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:05 GMT']
+ date: ['Mon, 16 Oct 2017 22:03:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1732,22 +1677,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:15 GMT']
+ date: ['Mon, 16 Oct 2017 22:03:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1760,22 +1705,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:26 GMT']
+ date: ['Mon, 16 Oct 2017 22:03:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1788,22 +1733,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:36 GMT']
+ date: ['Mon, 16 Oct 2017 22:04:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1816,22 +1761,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:46 GMT']
+ date: ['Mon, 16 Oct 2017 22:04:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1844,22 +1789,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:56 GMT']
+ date: ['Mon, 16 Oct 2017 22:04:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1872,22 +1817,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:07 GMT']
+ date: ['Mon, 16 Oct 2017 22:04:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1900,22 +1845,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:17 GMT']
+ date: ['Mon, 16 Oct 2017 22:04:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1928,22 +1873,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:28 GMT']
+ date: ['Mon, 16 Oct 2017 22:05:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1956,22 +1901,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:39 GMT']
+ date: ['Mon, 16 Oct 2017 22:05:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1984,22 +1929,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:49 GMT']
+ date: ['Mon, 16 Oct 2017 22:05:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2012,22 +1957,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:00 GMT']
+ date: ['Mon, 16 Oct 2017 22:05:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2040,22 +1985,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:10 GMT']
+ date: ['Mon, 16 Oct 2017 22:05:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2068,22 +2013,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:21 GMT']
+ date: ['Mon, 16 Oct 2017 22:05:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2096,50 +2041,62 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: '{"error":{"code":"MultipleErrorsOccurred","message":"Multiple
+ error occurred: . Please see details.","details":[{"code":"ServerTimeout","message":"The
+ request timed out. Diagnostic information: timestamp ''20171016T220701Z'',
+ subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''b30f9883-b9bf-40b7-b6d3-5a3703655347'',
+ request correlation id ''b30f9883-b9bf-40b7-b6d3-5a3703655347''."},{"code":"ServerTimeout","message":"The
+ request timed out. Diagnostic information: timestamp ''20171016T220701Z'',
+ subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''b30f9883-b9bf-40b7-b6d3-5a3703655347'',
+ request correlation id ''b30f9883-b9bf-40b7-b6d3-5a3703655347''."},{"code":"ServerTimeout","message":"The
+ request timed out. Diagnostic information: timestamp ''20171016T220701Z'',
+ subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''b30f9883-b9bf-40b7-b6d3-5a3703655347'',
+ request correlation id ''b30f9883-b9bf-40b7-b6d3-5a3703655347''."},{"code":"ServerTimeout","message":"The
+ request timed out. Diagnostic information: timestamp ''20171016T220701Z'',
+ subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''b30f9883-b9bf-40b7-b6d3-5a3703655347'',
+ request correlation id ''b30f9883-b9bf-40b7-b6d3-5a3703655347''."}]}}'}
headers:
cache-control: [no-cache]
- content-length: ['30']
+ connection: [close]
+ content-length: ['1254']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:31 GMT']
+ date: ['Mon, 16 Oct 2017 22:07:09 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]
- status: {code: 200, message: OK}
+ x-ms-failure-cause: [gateway]
+ status: {code: 500, message: Internal Server Error}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:41 GMT']
+ date: ['Mon, 16 Oct 2017 22:07:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2152,22 +2109,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:51 GMT']
+ date: ['Mon, 16 Oct 2017 22:07:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2180,22 +2137,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:02 GMT']
+ date: ['Mon, 16 Oct 2017 22:07:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2208,22 +2165,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:12 GMT']
+ date: ['Mon, 16 Oct 2017 22:07:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2236,22 +2193,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:23 GMT']
+ date: ['Mon, 16 Oct 2017 22:07:52 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2264,22 +2221,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:33 GMT']
+ date: ['Mon, 16 Oct 2017 22:08:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2292,22 +2249,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:42 GMT']
+ date: ['Mon, 16 Oct 2017 22:08:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2320,22 +2277,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:53 GMT']
+ date: ['Mon, 16 Oct 2017 22:08:23 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2348,22 +2305,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:03 GMT']
+ date: ['Mon, 16 Oct 2017 22:08:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2376,22 +2333,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:14 GMT']
+ date: ['Mon, 16 Oct 2017 22:08:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2404,22 +2361,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:24 GMT']
+ date: ['Mon, 16 Oct 2017 22:08:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2432,22 +2389,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:34 GMT']
+ date: ['Mon, 16 Oct 2017 22:09:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2460,22 +2417,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:44 GMT']
+ date: ['Mon, 16 Oct 2017 22:09:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2488,22 +2445,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:55 GMT']
+ date: ['Mon, 16 Oct 2017 22:09:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2516,22 +2473,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:05 GMT']
+ date: ['Mon, 16 Oct 2017 22:09:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2544,22 +2501,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:15 GMT']
+ date: ['Mon, 16 Oct 2017 22:09:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2572,22 +2529,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:25 GMT']
+ date: ['Mon, 16 Oct 2017 22:09:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2600,22 +2557,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:36 GMT']
+ date: ['Mon, 16 Oct 2017 22:10:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2628,22 +2585,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:46 GMT']
+ date: ['Mon, 16 Oct 2017 22:10:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2656,22 +2613,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:56 GMT']
+ date: ['Mon, 16 Oct 2017 22:10:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2684,22 +2641,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:06 GMT']
+ date: ['Mon, 16 Oct 2017 22:10:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2712,22 +2669,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:16 GMT']
+ date: ['Mon, 16 Oct 2017 22:10:49 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2740,22 +2697,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:27 GMT']
+ date: ['Mon, 16 Oct 2017 22:10:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2768,22 +2725,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:37 GMT']
+ date: ['Mon, 16 Oct 2017 22:11:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2796,22 +2753,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:47 GMT']
+ date: ['Mon, 16 Oct 2017 22:11:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2824,22 +2781,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:58 GMT']
+ date: ['Mon, 16 Oct 2017 22:11:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2852,22 +2809,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:08 GMT']
+ date: ['Mon, 16 Oct 2017 22:11:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2880,22 +2837,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:18 GMT']
+ date: ['Mon, 16 Oct 2017 22:11:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2908,22 +2865,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:29 GMT']
+ date: ['Mon, 16 Oct 2017 22:12:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2936,22 +2893,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:39 GMT']
+ date: ['Mon, 16 Oct 2017 22:12:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2964,22 +2921,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:49 GMT']
+ date: ['Mon, 16 Oct 2017 22:12:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2992,22 +2949,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:00 GMT']
+ date: ['Mon, 16 Oct 2017 22:12:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3020,22 +2977,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:10 GMT']
+ date: ['Mon, 16 Oct 2017 22:12:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3048,22 +3005,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:20 GMT']
+ date: ['Mon, 16 Oct 2017 22:12:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3076,22 +3033,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:31 GMT']
+ date: ['Mon, 16 Oct 2017 22:13:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3104,22 +3061,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:41 GMT']
+ date: ['Mon, 16 Oct 2017 22:13:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3132,22 +3089,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:51 GMT']
+ date: ['Mon, 16 Oct 2017 22:13:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3160,22 +3117,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:01 GMT']
+ date: ['Mon, 16 Oct 2017 22:13:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3188,22 +3145,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:13 GMT']
+ date: ['Mon, 16 Oct 2017 22:13:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3216,22 +3173,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:23 GMT']
+ date: ['Mon, 16 Oct 2017 22:13:55 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3244,22 +3201,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:33 GMT']
+ date: ['Mon, 16 Oct 2017 22:14:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3272,22 +3229,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:43 GMT']
+ date: ['Mon, 16 Oct 2017 22:14:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3300,22 +3257,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:54 GMT']
+ date: ['Mon, 16 Oct 2017 22:14:26 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3328,22 +3285,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:04 GMT']
+ date: ['Mon, 16 Oct 2017 22:14:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3356,22 +3313,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:14 GMT']
+ date: ['Mon, 16 Oct 2017 22:14:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3384,22 +3341,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:25 GMT']
+ date: ['Mon, 16 Oct 2017 22:14:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3412,22 +3369,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:35 GMT']
+ date: ['Mon, 16 Oct 2017 22:15:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3440,22 +3397,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:45 GMT']
+ date: ['Mon, 16 Oct 2017 22:15:18 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3468,22 +3425,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:56 GMT']
+ date: ['Mon, 16 Oct 2017 22:15:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3496,22 +3453,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:06 GMT']
+ date: ['Mon, 16 Oct 2017 22:15:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3524,22 +3481,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:16 GMT']
+ date: ['Mon, 16 Oct 2017 22:15:49 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3552,22 +3509,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:26 GMT']
+ date: ['Mon, 16 Oct 2017 22:16:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3580,22 +3537,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:37 GMT']
+ date: ['Mon, 16 Oct 2017 22:16:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3608,22 +3565,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:47 GMT']
+ date: ['Mon, 16 Oct 2017 22:16:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3636,22 +3593,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:57 GMT']
+ date: ['Mon, 16 Oct 2017 22:16:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3664,22 +3621,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:07 GMT']
+ date: ['Mon, 16 Oct 2017 22:16:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3692,22 +3649,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:17 GMT']
+ date: ['Mon, 16 Oct 2017 22:16:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3720,22 +3677,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:27 GMT']
+ date: ['Mon, 16 Oct 2017 22:17:02 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3748,22 +3705,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:38 GMT']
+ date: ['Mon, 16 Oct 2017 22:17:12 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3776,22 +3733,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:49 GMT']
+ date: ['Mon, 16 Oct 2017 22:17:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3804,22 +3761,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:59 GMT']
+ date: ['Mon, 16 Oct 2017 22:17:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3832,22 +3789,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:09 GMT']
+ date: ['Mon, 16 Oct 2017 22:17:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3860,22 +3817,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:19 GMT']
+ date: ['Mon, 16 Oct 2017 22:17:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3888,22 +3845,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:30 GMT']
+ date: ['Mon, 16 Oct 2017 22:18:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3916,22 +3873,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:39 GMT']
+ date: ['Mon, 16 Oct 2017 22:18:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3944,22 +3901,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:49 GMT']
+ date: ['Mon, 16 Oct 2017 22:18:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3972,22 +3929,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:00 GMT']
+ date: ['Mon, 16 Oct 2017 22:18:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4000,22 +3957,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:10 GMT']
+ date: ['Mon, 16 Oct 2017 22:18:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4028,22 +3985,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:21 GMT']
+ date: ['Mon, 16 Oct 2017 22:18:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4056,22 +4013,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:31 GMT']
+ date: ['Mon, 16 Oct 2017 22:19:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4084,22 +4041,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:41 GMT']
+ date: ['Mon, 16 Oct 2017 22:19:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4112,22 +4069,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:51 GMT']
+ date: ['Mon, 16 Oct 2017 22:19:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4140,22 +4097,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:01 GMT']
+ date: ['Mon, 16 Oct 2017 22:19:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4168,22 +4125,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:12 GMT']
+ date: ['Mon, 16 Oct 2017 22:19:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4196,22 +4153,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:23 GMT']
+ date: ['Mon, 16 Oct 2017 22:19:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4224,22 +4181,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:33 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:08 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4252,218 +4209,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:53 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:14 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:23 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:34 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:45 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f650d00d-1197-45af-96c6-45fa6e1804ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74340138-f065-492b-8608-8ca98500e722?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:55 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:18 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4476,24 +4237,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"1907c9ab-93c5-4875-bb7f-3b6d43266ecf\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"55483dcb-2e7d-4755-9d35-2d959180b932\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"c5de77ed-0664-4664-9646-10c2a2d8497f\",\r\n \
+ ,\r\n \"resourceGuid\": \"2a907f58-e90d-40be-bb11-4074f4573518\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"1907c9ab-93c5-4875-bb7f-3b6d43266ecf\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"55483dcb-2e7d-4755-9d35-2d959180b932\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/publicIPAddresses/ip1\"\
@@ -4508,7 +4269,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1895']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:55 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:18 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4521,21 +4282,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"d1177b15-461b-47ff-a9ff-8c06057b1aaf\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"25ec0493-ebdf-4a7f-b231-f8255ab699ba\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"e2fecb26-38a8-46d0-b11b-b68d5fa2cd5f\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"ed15d22c-851d-4b41-b1b9-bb0e933bf57d\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\
@@ -4545,8 +4306,8 @@ interactions:
cache-control: [no-cache]
content-length: ['767']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:55 GMT']
- etag: [W/"d1177b15-461b-47ff-a9ff-8c06057b1aaf"]
+ date: ['Mon, 16 Oct 2017 22:20:19 GMT']
+ etag: [W/"25ec0493-ebdf-4a7f-b231-f8255ab699ba"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4559,26 +4320,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
- ,\r\n \"etag\": \"W/\\\"c30f8da0-6533-460d-a030-09bfd5b1dc10\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"019293a2-4ad6-48ec-9bab-8dd27dbbba31\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"a8224799-b824-4f09-8e12-de77a6917de1\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"2ed9da6b-b7b8-485f-8bfe-03ffc3f94755\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
11.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"c30f8da0-6533-460d-a030-09bfd5b1dc10\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"019293a2-4ad6-48ec-9bab-8dd27dbbba31\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"11.0.0.0/24\",\r\n \"ipConfigurations\"\
: [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
@@ -4589,8 +4350,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1583']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:55 GMT']
- etag: [W/"c30f8da0-6533-460d-a030-09bfd5b1dc10"]
+ date: ['Mon, 16 Oct 2017 22:20:19 GMT']
+ etag: [W/"019293a2-4ad6-48ec-9bab-8dd27dbbba31"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4599,26 +4360,26 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2",
- "name": "peering2", "properties": {"allowForwardedTraffic": false, "useRemoteGateways":
- false, "allowVirtualNetworkAccess": false, "remoteVirtualNetwork": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1"},
- "allowGatewayTransit": true}}'''
+ body: 'b''{"properties": {"useRemoteGateways": false, "allowGatewayTransit": true,
+ "allowForwardedTraffic": false, "allowVirtualNetworkAccess": false, "remoteVirtualNetwork":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1"}},
+ "name": "peering2", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['591']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/virtualNetworkPeerings/peering2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"peering2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/virtualNetworkPeerings/peering2\"\
- ,\r\n \"etag\": \"W/\\\"ef09937c-7c6d-4d14-84a7-f0989696e135\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"7093d625-eae7-4e19-a020-70281b8e80d8\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
peeringState\": \"Initiated\",\r\n \"remoteVirtualNetwork\": {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
@@ -4627,38 +4388,38 @@ interactions:
: false,\r\n \"remoteAddressSpace\": {\r\n \"addressPrefixes\": [\r\
\n \"10.0.0.0/16\"\r\n ]\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/986ce7df-4d2f-4bf9-b82f-46f3416eeea2?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58644edf-6f94-40c6-9651-e61aeb202d03?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['905']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:56 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/986ce7df-4d2f-4bf9-b82f-46f3416eeea2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58644edf-6f94-40c6-9651-e61aeb202d03?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:07 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4671,18 +4432,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/virtualNetworkPeerings/peering2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"peering2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/virtualNetworkPeerings/peering2\"\
- ,\r\n \"etag\": \"W/\\\"880f5c02-89bb-410a-91b5-377631c1a324\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"217ca5be-6cfa-4b63-a926-613350816a8d\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringState\": \"Initiated\",\r\n \"remoteVirtualNetwork\": {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
@@ -4694,8 +4455,8 @@ interactions:
cache-control: [no-cache]
content-length: ['906']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:07 GMT']
- etag: [W/"880f5c02-89bb-410a-91b5-377631c1a324"]
+ date: ['Mon, 16 Oct 2017 22:20:31 GMT']
+ etag: [W/"217ca5be-6cfa-4b63-a926-613350816a8d"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4704,26 +4465,26 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1",
- "name": "peering1", "properties": {"allowForwardedTraffic": true, "useRemoteGateways":
- true, "allowVirtualNetworkAccess": false, "remoteVirtualNetwork": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2"},
- "allowGatewayTransit": false}}'''
+ body: 'b''{"properties": {"useRemoteGateways": true, "allowGatewayTransit": false,
+ "allowForwardedTraffic": true, "allowVirtualNetworkAccess": false, "remoteVirtualNetwork":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2"}},
+ "name": "peering1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['590']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"peering1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1\"\
- ,\r\n \"etag\": \"W/\\\"0a19963b-9c38-4954-b22d-41bcb8d6e2ed\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"178ae393-1bf6-424d-895d-b4d7e0693d41\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
peeringState\": \"Connected\",\r\n \"remoteVirtualNetwork\": {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
@@ -4733,38 +4494,38 @@ interactions:
\r\n }\r\n ],\r\n \"remoteAddressSpace\": {\r\n \"addressPrefixes\"\
: [\r\n \"11.0.0.0/16\"\r\n ]\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ad36ed6-b1c2-4064-833c-38604573e835?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ffaa323-1460-4a4a-ba1e-a858692aed4e?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1175']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:08 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1188']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ad36ed6-b1c2-4064-833c-38604573e835?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7ffaa323-1460-4a4a-ba1e-a858692aed4e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:19 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:43 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4777,18 +4538,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"peering1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1\"\
- ,\r\n \"etag\": \"W/\\\"c61303e0-42cb-4d79-8f11-bc1c70826633\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f767fca0-d676-45be-a1a2-39bb4e5da7bb\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringState\": \"Connected\",\r\n \"remoteVirtualNetwork\": {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
@@ -4801,8 +4562,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1176']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:19 GMT']
- etag: [W/"c61303e0-42cb-4d79-8f11-bc1c70826633"]
+ date: ['Mon, 16 Oct 2017 22:20:44 GMT']
+ etag: [W/"f767fca0-d676-45be-a1a2-39bb4e5da7bb"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4815,18 +4576,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"peering1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1\"\
- ,\r\n \"etag\": \"W/\\\"c61303e0-42cb-4d79-8f11-bc1c70826633\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f767fca0-d676-45be-a1a2-39bb4e5da7bb\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringState\": \"Connected\",\r\n \"remoteVirtualNetwork\": {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
@@ -4839,8 +4600,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1176']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:19 GMT']
- etag: [W/"c61303e0-42cb-4d79-8f11-bc1c70826633"]
+ date: ['Mon, 16 Oct 2017 22:20:44 GMT']
+ etag: [W/"f767fca0-d676-45be-a1a2-39bb4e5da7bb"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4853,19 +4614,19 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/virtualNetworkPeerings?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"peering2\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/virtualNetworkPeerings/peering2\"\
- ,\r\n \"etag\": \"W/\\\"03b5dbae-5f4d-4162-84de-c7c9d0fda7d8\\\"\",\r\
+ ,\r\n \"etag\": \"W/\\\"34215c53-d65f-4590-8f07-edd0fb4f3dc3\\\"\",\r\
\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"peeringState\": \"Connected\",\r\n \"remoteVirtualNetwork\"\
: {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
@@ -4878,7 +4639,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1015']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:19 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4891,18 +4652,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"peering1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1\"\
- ,\r\n \"etag\": \"W/\\\"c61303e0-42cb-4d79-8f11-bc1c70826633\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f767fca0-d676-45be-a1a2-39bb4e5da7bb\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringState\": \"Connected\",\r\n \"remoteVirtualNetwork\": {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
@@ -4915,8 +4676,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1176']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:20 GMT']
- etag: [W/"c61303e0-42cb-4d79-8f11-bc1c70826633"]
+ date: ['Mon, 16 Oct 2017 22:20:45 GMT']
+ etag: [W/"f767fca0-d676-45be-a1a2-39bb4e5da7bb"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4925,28 +4686,27 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1",
- "name": "peering1", "etag": "W/\\"c61303e0-42cb-4d79-8f11-bc1c70826633\\"",
- "properties": {"peeringState": "Connected", "allowVirtualNetworkAccess": false,
- "allowForwardedTraffic": true, "remoteVirtualNetwork": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2"},
- "allowGatewayTransit": false, "useRemoteGateways": false, "provisioningState":
- "Succeeded"}}'''
+ body: 'b''{"properties": {"allowGatewayTransit": false, "provisioningState": "Succeeded",
+ "remoteVirtualNetwork": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2"},
+ "allowForwardedTraffic": true, "peeringState": "Connected", "allowVirtualNetworkAccess":
+ false, "useRemoteGateways": false}, "name": "peering1", "etag": "W/\\"f767fca0-d676-45be-a1a2-39bb4e5da7bb\\"",
+ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['740']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"peering1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1\"\
- ,\r\n \"etag\": \"W/\\\"a12463a9-34f4-4aae-8c5b-06c0f98d2442\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"938e9bff-f0bb-4ee3-a4e3-054c467a75d1\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
peeringState\": \"Connected\",\r\n \"remoteVirtualNetwork\": {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
@@ -4955,40 +4715,40 @@ interactions:
: false,\r\n \"remoteAddressSpace\": {\r\n \"addressPrefixes\": [\r\
\n \"11.0.0.0/16\"\r\n ]\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/641ff6a3-49f0-46fc-8074-dd8278f9885f?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8fdaaca4-6550-459c-9c89-101431fc86b2?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['905']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:20 GMT']
+ date: ['Mon, 16 Oct 2017 22:20: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-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/641ff6a3-49f0-46fc-8074-dd8278f9885f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8fdaaca4-6550-459c-9c89-101431fc86b2?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:31 GMT']
+ date: ['Mon, 16 Oct 2017 22:20:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5001,18 +4761,18 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"peering1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1\"\
- ,\r\n \"etag\": \"W/\\\"5d5a80ba-e5d4-4a5e-b708-2e0ef42a189b\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"1fe582f0-5923-4dfb-9de1-ce659b1258c3\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
peeringState\": \"Connected\",\r\n \"remoteVirtualNetwork\": {\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2\"\
@@ -5024,8 +4784,8 @@ interactions:
cache-control: [no-cache]
content-length: ['906']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:31 GMT']
- etag: [W/"5d5a80ba-e5d4-4a5e-b708-2e0ef42a189b"]
+ date: ['Mon, 16 Oct 2017 22:20:57 GMT']
+ etag: [W/"1fe582f0-5923-4dfb-9de1-ce659b1258c3"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5038,51 +4798,51 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings/peering1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/484f9d4c-3a7d-4c6d-967f-41dd634f8188?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/19cb2d53-f602-47a5-9ec1-909d612bd961?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 00:24:31 GMT']
+ date: ['Mon, 16 Oct 2017 22:21:03 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/484f9d4c-3a7d-4c6d-967f-41dd634f8188?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/19cb2d53-f602-47a5-9ec1-909d612bd961?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/484f9d4c-3a7d-4c6d-967f-41dd634f8188?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/19cb2d53-f602-47a5-9ec1-909d612bd961?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:42 GMT']
+ date: ['Mon, 16 Oct 2017 22:21:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5095,12 +4855,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet1/virtualNetworkPeerings?api-version=2017-09-01
@@ -5110,7 +4870,7 @@ interactions:
cache-control: [no-cache]
content-length: ['19']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:43 GMT']
+ date: ['Mon, 16 Oct 2017 22:21:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5123,51 +4883,51 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworks/vnet2/virtualNetworkPeerings/peering2?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31122c24-0496-457a-a0e8-68ac455ad3ec?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/910ad1b0-1ba6-4df7-bb70-e5b8abced95d?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 00:24:44 GMT']
+ date: ['Mon, 16 Oct 2017 22:21:16 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/31122c24-0496-457a-a0e8-68ac455ad3ec?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/910ad1b0-1ba6-4df7-bb70-e5b8abced95d?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet peering delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31122c24-0496-457a-a0e8-68ac455ad3ec?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/910ad1b0-1ba6-4df7-bb70-e5b8abced95d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:54 GMT']
+ date: ['Mon, 16 Oct 2017 22:21:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5180,51 +4940,79 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_peering000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/50ac7974-5986-49d5-81c4-1be437e6f656?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8e415ac4-fc7a-406d-b182-6d11ba1cda06?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 00:24:56 GMT']
+ date: ['Mon, 16 Oct 2017 22:21:29 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/50ac7974-5986-49d5-81c4-1be437e6f656?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8e415ac4-fc7a-406d-b182-6d11ba1cda06?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1187']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway delete]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8e415ac4-fc7a-406d-b182-6d11ba1cda06?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 22:21:38 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/50ac7974-5986-49d5-81c4-1be437e6f656?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8e415ac4-fc7a-406d-b182-6d11ba1cda06?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:06 GMT']
+ date: ['Mon, 16 Oct 2017 22:21:49 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5237,22 +5025,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/50ac7974-5986-49d5-81c4-1be437e6f656?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8e415ac4-fc7a-406d-b182-6d11ba1cda06?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:16 GMT']
+ date: ['Mon, 16 Oct 2017 22:21:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5265,22 +5053,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/50ac7974-5986-49d5-81c4-1be437e6f656?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8e415ac4-fc7a-406d-b182-6d11ba1cda06?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:26 GMT']
+ date: ['Mon, 16 Oct 2017 22:22:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5293,22 +5081,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/50ac7974-5986-49d5-81c4-1be437e6f656?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8e415ac4-fc7a-406d-b182-6d11ba1cda06?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:37 GMT']
+ date: ['Mon, 16 Oct 2017 22:22:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5321,22 +5109,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/50ac7974-5986-49d5-81c4-1be437e6f656?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8e415ac4-fc7a-406d-b182-6d11ba1cda06?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:47 GMT']
+ date: ['Mon, 16 Oct 2017 22:22:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5349,13 +5137,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_peering000001?api-version=2017-05-10
@@ -5364,9 +5152,9 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 00:25:48 GMT']
+ date: ['Mon, 16 Oct 2017 22:22:32 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk5FVDo1RlBFRVJJTkdNVUtSTTRNN0FTTFZFUTdFUlJFT3w2QjgzOTEzRTA2NkJFMDQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk5FVDo1RlBFRVJJTkc1VE80REIzQVNOWEdRTktVQzdHV3xDNzQyMzEwQkU3NDhEMDYwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1199']
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vpn_connection_ipsec.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vpn_connection_ipsec.yaml
index 2d5ceab20fd..f6eac390fb9 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vpn_connection_ipsec.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vpn_connection_ipsec.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:57 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:40 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2017-05-10
@@ -46,72 +46,72 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:58 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:41 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"tags": {}, "properties": {"dhcpOptions": {}, "addressSpace": {"addressPrefixes":
- ["10.11.0.0/16", "10.12.0.0/16"]}}, "location": "westus"}'
+ body: '{"tags": {}, "location": "westus", "properties": {"addressSpace": {"addressPrefixes":
+ ["10.11.0.0/16", "10.12.0.0/16"]}, "dhcpOptions": {}}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['140']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"92976ef3-a639-469c-bfa2-b8c6aad56988\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"98c0456d-5d77-4c3e-ac12-0c6e5d3a23db\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"00ed6b2d-e57b-4897-80bf-fdfc045c1074\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"9e774459-ca0d-40fe-b52b-c60245b37c01\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n ]\r\n },\r\n \"\
dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\"\
: [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d361f6bd-d05f-442e-96f1-d8dff0a66e00?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/976173b7-2542-48d4-86b2-08b8e36de6f7?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['792']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:59 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1194']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d361f6bd-d05f-442e-96f1-d8dff0a66e00?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/976173b7-2542-48d4-86b2-08b8e36de6f7?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:02 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -124,21 +124,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"7b0c69fc-8db2-4940-b6a1-9f9d94f78005\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"7adc9ae0-c32c-4307-8fce-8bad4f190c7a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"00ed6b2d-e57b-4897-80bf-fdfc045c1074\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"9e774459-ca0d-40fe-b52b-c60245b37c01\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n ]\r\n },\r\n \"\
dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\"\
@@ -148,8 +148,8 @@ interactions:
cache-control: [no-cache]
content-length: ['793']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:02 GMT']
- etag: [W/"7b0c69fc-8db2-4940-b6a1-9f9d94f78005"]
+ date: ['Mon, 16 Oct 2017 20:39:45 GMT']
+ etag: [W/"7adc9ae0-c32c-4307-8fce-8bad4f190c7a"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -158,58 +158,58 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"addressPrefix": "10.11.0.0/24"}, "name": "FrontEnd"}'
+ body: '{"name": "FrontEnd", "properties": {"addressPrefix": "10.11.0.0/24"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['69']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"FrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"d547bbc2-a0a5-403d-b6ff-334c9414443c\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bbe7b0f9-1d5d-481f-9cef-ee672f714a8b\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"10.11.0.0/24\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/68e17e11-e310-451b-8eb2-b2f70720cd33?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0ba932bf-7740-499f-a4f7-cdd1ff7435eb?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['405']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:02 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/68e17e11-e310-451b-8eb2-b2f70720cd33?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0ba932bf-7740-499f-a4f7-cdd1ff7435eb?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:06 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -222,26 +222,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"FrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"a7207532-49f2-4ebf-8eed-656ccc90f833\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"1b818bfa-aa40-49f1-a207-ac6d15e2a1d8\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.11.0.0/24\"\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['406']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:06 GMT']
- etag: [W/"a7207532-49f2-4ebf-8eed-656ccc90f833"]
+ date: ['Mon, 16 Oct 2017 20:39:50 GMT']
+ etag: [W/"1b818bfa-aa40-49f1-a207-ac6d15e2a1d8"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -250,58 +250,58 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"addressPrefix": "10.12.0.0/24"}, "name": "BackEnd"}'
+ body: '{"name": "BackEnd", "properties": {"addressPrefix": "10.12.0.0/24"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['68']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"BackEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd\"\
- ,\r\n \"etag\": \"W/\\\"52ca707f-ca51-4381-b928-5acf0f086074\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"68c98f0c-3b8f-4184-89a6-d7e16f269f0b\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"10.12.0.0/24\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78b5c808-8eb6-41a4-9d58-569ae019588c?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9aadc5b2-9f41-4feb-b825-a82629481596?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['403']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:07 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1176']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78b5c808-8eb6-41a4-9d58-569ae019588c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9aadc5b2-9f41-4feb-b825-a82629481596?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:10 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:55 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -314,26 +314,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"BackEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd\"\
- ,\r\n \"etag\": \"W/\\\"22a7c338-d4e1-4702-86c9-b4fad84c1cff\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"96063b3a-5222-4eb4-b9fe-3ad820319496\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.12.0.0/24\"\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['404']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:11 GMT']
- etag: [W/"22a7c338-d4e1-4702-86c9-b4fad84c1cff"]
+ date: ['Mon, 16 Oct 2017 20:39:55 GMT']
+ etag: [W/"96063b3a-5222-4eb4-b9fe-3ad820319496"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -342,58 +342,58 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"addressPrefix": "10.12.255.0/27"}, "name": "GatewaySubnet"}'
+ body: '{"name": "GatewaySubnet", "properties": {"addressPrefix": "10.12.255.0/27"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['76']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"1622f47e-974b-43a1-a7c8-ed115930e83f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"feddc0e3-ccae-41d3-8c98-1b052c92aa3c\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"10.12.255.0/27\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/440bd30f-f36f-4660-8820-cf5d8eab026e?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9356ed91-0c25-4f92-b482-ace04da654cc?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['417']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:11 GMT']
+ date: ['Mon, 16 Oct 2017 20:39:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/440bd30f-f36f-4660-8820-cf5d8eab026e?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9356ed91-0c25-4f92-b482-ace04da654cc?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:14 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -406,26 +406,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"27d33653-4f37-4303-93f2-775a7ccf08d7\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"588c176f-7f0e-4f5b-90ea-51c5fbde4dc0\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.12.255.0/27\"\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['418']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:15 GMT']
- etag: [W/"27d33653-4f37-4303-93f2-775a7ccf08d7"]
+ date: ['Mon, 16 Oct 2017 20:40:00 GMT']
+ etag: [W/"588c176f-7f0e-4f5b-90ea-51c5fbde4dc0"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -438,12 +438,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2017-05-10
@@ -453,941 +453,71 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:15 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:00 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"idleTimeoutInMinutes": 4, "publicIPAddressVersion": "IPv4",
- "publicIPAllocationMethod": "Dynamic"}, "location": "westus", "sku": {"name":
- "Basic"}}'
+ body: '{"properties": {"publicIPAllocationMethod": "Dynamic", "idleTimeoutInMinutes":
+ 4, "publicIPAddressVersion": "IPv4"}, "sku": {"name": "Basic"}, "location":
+ "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['164']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
- ,\r\n \"etag\": \"W/\\\"452ee75a-7cee-472e-928e-cc55fad91775\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"d04e820a-54b7-4a1a-8d09-8ae3538bcd46\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"f520d0a4-5cab-4afa-b5cf-da9a063e94a6\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"4468dfe8-62de-428a-b347-51eefcc682b8\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f0c160e2-05dc-4023-a9a4-0a791372b9ca?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b5f77ba7-8415-4f1b-a163-da16f6553761?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['637']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:16 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:02 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f0c160e2-05dc-4023-a9a4-0a791372b9ca?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
- ,\r\n \"etag\": \"W/\\\"140db588-fff7-4db5-94e4-c23a81c7520c\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"f520d0a4-5cab-4afa-b5cf-da9a063e94a6\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['638']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:19 GMT']
- etag: [W/"140db588-fff7-4db5-94e4-c23a81c7520c"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:19 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"activeActive": false, "vpnType": "RouteBased", "ipConfigurations":
- [{"properties": {"privateIPAllocationMethod": "Dynamic", "publicIPAddress":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1"},
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"}},
- "name": "vnetGatewayConfig0"}], "gatewayType": "Vpn", "sku": {"tier": "Standard",
- "name": "Standard"}}, "location": "westus"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Length: ['727']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
- ,\r\n \"etag\": \"W/\\\"c2582115-d567-4acb-9de2-9cad67ad0922\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"db1fddc4-fa17-4678-b581-de9023060037\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c2582115-d567-4acb-9de2-9cad67ad0922\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"\
- capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\"\
- : \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\
- \n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [],\r\
- \n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\"\
- : []\r\n }\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['1925']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:21 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:31 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:41 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:02 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:12 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:23 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:32 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:53 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:04 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:14 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:24 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:45 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:15 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:27 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:07 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:17 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:38 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:48 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]
- status: {code: 200, message: OK}
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b5f77ba7-8415-4f1b-a163-da16f6553761?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['30']
+ content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:59 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:05 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1400,22 +530,30 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
+ ,\r\n \"etag\": \"W/\\\"a0bc3e1f-a692-4421-a1d3-2debcecb0933\\\"\",\r\n \
+ \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"4468dfe8-62de-428a-b347-51eefcc682b8\"\
+ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
+ : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
+ Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
+ Basic\"\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['30']
+ content-length: ['638']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:09 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:06 GMT']
+ etag: [W/"a0bc3e1f-a692-4421-a1d3-2debcecb0933"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1428,78 +566,100 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2017-05-10
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
cache-control: [no-cache]
- content-length: ['30']
+ content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:19 GMT']
+ date: ['Mon, 16 Oct 2017 20:40: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]
status: {code: 200, message: OK}
- request:
- body: null
+ body: 'b''{"location": "westus", "properties": {"vpnType": "RouteBased", "ipConfigurations":
+ [{"name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod":
+ "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1"}}}],
+ "gatewayType": "Vpn", "sku": {"name": "Standard", "tier": "Standard"}, "activeActive":
+ false}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['727']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ body: {string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
+ ,\r\n \"etag\": \"W/\\\"e38c0571-0203-49bc-b332-e272317b8ee0\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"resourceGuid\": \"656730bd-df1a-4069-9d0c-9f6d066e1e50\",\r\n \
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"e38c0571-0203-49bc-b332-e272317b8ee0\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
+ \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
+ \ \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"\
+ capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\"\
+ : \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\
+ \n \"vpnClientConfiguration\": {\r\n \"vpnClientProtocols\": [],\r\
+ \n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\"\
+ : []\r\n }\r\n }\r\n}"}
headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01']
cache-control: [no-cache]
- content-length: ['30']
+ content-length: ['1925']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:29 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:07 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]
- status: {code: 200, message: OK}
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:39 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:18 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1512,22 +672,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:50 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1540,22 +700,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:00 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1568,22 +728,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:10 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1596,22 +756,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:21 GMT']
+ date: ['Mon, 16 Oct 2017 20:40:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1624,22 +784,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:30 GMT']
+ date: ['Mon, 16 Oct 2017 20:41:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1652,22 +812,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:41 GMT']
+ date: ['Mon, 16 Oct 2017 20:41:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1680,22 +840,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:51 GMT']
+ date: ['Mon, 16 Oct 2017 20:41:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1708,22 +868,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:02 GMT']
+ date: ['Mon, 16 Oct 2017 20:41:41 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1736,22 +896,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:12 GMT']
+ date: ['Mon, 16 Oct 2017 20:41:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1764,22 +924,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:22 GMT']
+ date: ['Mon, 16 Oct 2017 20:42:02 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1792,22 +952,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:33 GMT']
+ date: ['Mon, 16 Oct 2017 20:42:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1820,22 +980,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:42 GMT']
+ date: ['Mon, 16 Oct 2017 20:42:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1848,22 +1008,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:53 GMT']
+ date: ['Mon, 16 Oct 2017 20:42:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1876,22 +1036,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:03 GMT']
+ date: ['Mon, 16 Oct 2017 20:42:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1904,22 +1064,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:13 GMT']
+ date: ['Mon, 16 Oct 2017 20:42:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1932,22 +1092,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:24 GMT']
+ date: ['Mon, 16 Oct 2017 20:43:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1960,22 +1120,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:34 GMT']
+ date: ['Mon, 16 Oct 2017 20:43:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1988,22 +1148,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:44 GMT']
+ date: ['Mon, 16 Oct 2017 20:43:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2016,22 +1176,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:55 GMT']
+ date: ['Mon, 16 Oct 2017 20:43:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2044,22 +1204,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:05 GMT']
+ date: ['Mon, 16 Oct 2017 20:43:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2072,22 +1232,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:15 GMT']
+ date: ['Mon, 16 Oct 2017 20:43:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2100,22 +1260,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:26 GMT']
+ date: ['Mon, 16 Oct 2017 20:44:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2128,22 +1288,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:36 GMT']
+ date: ['Mon, 16 Oct 2017 20:44:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2156,22 +1316,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:46 GMT']
+ date: ['Mon, 16 Oct 2017 20:44:26 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2184,22 +1344,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:56 GMT']
+ date: ['Mon, 16 Oct 2017 20:44:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2212,22 +1372,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:07 GMT']
+ date: ['Mon, 16 Oct 2017 20:44:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2240,22 +1400,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:18 GMT']
+ date: ['Mon, 16 Oct 2017 20:44:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2268,22 +1428,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:28 GMT']
+ date: ['Mon, 16 Oct 2017 20:45:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2296,22 +1456,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:39 GMT']
+ date: ['Mon, 16 Oct 2017 20:45:18 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2324,22 +1484,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:48 GMT']
+ date: ['Mon, 16 Oct 2017 20:45:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2352,22 +1512,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:59 GMT']
+ date: ['Mon, 16 Oct 2017 20:45:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2380,22 +1540,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:10 GMT']
+ date: ['Mon, 16 Oct 2017 20:45:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2408,22 +1568,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:20 GMT']
+ date: ['Mon, 16 Oct 2017 20:45:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2436,22 +1596,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:30 GMT']
+ date: ['Mon, 16 Oct 2017 20:46:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2464,22 +1624,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:41 GMT']
+ date: ['Mon, 16 Oct 2017 20:46:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2492,22 +1652,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:51 GMT']
+ date: ['Mon, 16 Oct 2017 20:46:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2520,22 +1680,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:01 GMT']
+ date: ['Mon, 16 Oct 2017 20:46:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2548,22 +1708,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:12 GMT']
+ date: ['Mon, 16 Oct 2017 20:46:52 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2576,22 +1736,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:22 GMT']
+ date: ['Mon, 16 Oct 2017 20:47:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2604,22 +1764,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:32 GMT']
+ date: ['Mon, 16 Oct 2017 20:47:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2632,22 +1792,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:42 GMT']
+ date: ['Mon, 16 Oct 2017 20:47:23 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2660,22 +1820,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:53 GMT']
+ date: ['Mon, 16 Oct 2017 20:47:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2688,22 +1848,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:03 GMT']
+ date: ['Mon, 16 Oct 2017 20:47:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2716,22 +1876,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:13 GMT']
+ date: ['Mon, 16 Oct 2017 20:47:54 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2744,22 +1904,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:23 GMT']
+ date: ['Mon, 16 Oct 2017 20:48:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2772,22 +1932,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:33 GMT']
+ date: ['Mon, 16 Oct 2017 20:48:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2800,22 +1960,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:44 GMT']
+ date: ['Mon, 16 Oct 2017 20:48:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2828,22 +1988,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:54 GMT']
+ date: ['Mon, 16 Oct 2017 20:48:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2856,22 +2016,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:04 GMT']
+ date: ['Mon, 16 Oct 2017 20:48:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2884,22 +2044,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:14 GMT']
+ date: ['Mon, 16 Oct 2017 20:48:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2912,22 +2072,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:25 GMT']
+ date: ['Mon, 16 Oct 2017 20:49:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2940,22 +2100,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:35 GMT']
+ date: ['Mon, 16 Oct 2017 20:49:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2968,22 +2128,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:45 GMT']
+ date: ['Mon, 16 Oct 2017 20:49:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2996,22 +2156,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:56 GMT']
+ date: ['Mon, 16 Oct 2017 20:49:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3024,22 +2184,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:06 GMT']
+ date: ['Mon, 16 Oct 2017 20:49:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3052,22 +2212,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:16 GMT']
+ date: ['Mon, 16 Oct 2017 20:49:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3080,22 +2240,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:26 GMT']
+ date: ['Mon, 16 Oct 2017 20:50:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3108,22 +2268,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:37 GMT']
+ date: ['Mon, 16 Oct 2017 20:50:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3136,22 +2296,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:47 GMT']
+ date: ['Mon, 16 Oct 2017 20:50:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3164,22 +2324,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:57 GMT']
+ date: ['Mon, 16 Oct 2017 20:50:40 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3192,22 +2352,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:07 GMT']
+ date: ['Mon, 16 Oct 2017 20:50:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3220,22 +2380,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:17 GMT']
+ date: ['Mon, 16 Oct 2017 20:51:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3248,22 +2408,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:28 GMT']
+ date: ['Mon, 16 Oct 2017 20:51:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3276,22 +2436,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:37 GMT']
+ date: ['Mon, 16 Oct 2017 20:51:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3304,22 +2464,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:47 GMT']
+ date: ['Mon, 16 Oct 2017 20:51:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3332,22 +2492,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:58 GMT']
+ date: ['Mon, 16 Oct 2017 20:51:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3360,22 +2520,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:08 GMT']
+ date: ['Mon, 16 Oct 2017 20:51:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3388,22 +2548,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:19 GMT']
+ date: ['Mon, 16 Oct 2017 20:52:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3416,22 +2576,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:30 GMT']
+ date: ['Mon, 16 Oct 2017 20:52:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3444,22 +2604,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:39 GMT']
+ date: ['Mon, 16 Oct 2017 20:52:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3472,22 +2632,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:50 GMT']
+ date: ['Mon, 16 Oct 2017 20:52:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3500,22 +2660,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:00 GMT']
+ date: ['Mon, 16 Oct 2017 20:52:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3528,22 +2688,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:11 GMT']
+ date: ['Mon, 16 Oct 2017 20:52:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3556,22 +2716,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:20 GMT']
+ date: ['Mon, 16 Oct 2017 20:53:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3584,22 +2744,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:31 GMT']
+ date: ['Mon, 16 Oct 2017 20:53:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3612,22 +2772,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:41 GMT']
+ date: ['Mon, 16 Oct 2017 20:53:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3640,22 +2800,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:52 GMT']
+ date: ['Mon, 16 Oct 2017 20:53:40 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3668,22 +2828,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:02 GMT']
+ date: ['Mon, 16 Oct 2017 20:53:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3696,22 +2856,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:12 GMT']
+ date: ['Mon, 16 Oct 2017 20:54:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3724,22 +2884,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:23 GMT']
+ date: ['Mon, 16 Oct 2017 20:54:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3752,22 +2912,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:33 GMT']
+ date: ['Mon, 16 Oct 2017 20:54:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3780,22 +2940,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:43 GMT']
+ date: ['Mon, 16 Oct 2017 20:54:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3808,22 +2968,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:54 GMT']
+ date: ['Mon, 16 Oct 2017 20:54:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3836,22 +2996,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:04 GMT']
+ date: ['Mon, 16 Oct 2017 20:54:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3864,22 +3024,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:14 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3892,22 +3052,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:25 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3920,22 +3080,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:35 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3948,22 +3108,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:45 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3976,22 +3136,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:55 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4004,22 +3164,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:06 GMT']
+ date: ['Mon, 16 Oct 2017 20:55:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4032,22 +3192,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:15 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4060,22 +3220,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:26 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4088,22 +3248,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:36 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4116,22 +3276,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:47 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4144,22 +3304,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:57 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4172,22 +3332,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:07 GMT']
+ date: ['Mon, 16 Oct 2017 20:56:59 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4200,22 +3360,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:18 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4228,22 +3388,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:28 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4256,22 +3416,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:38 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4284,22 +3444,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:48 GMT']
+ date: ['Mon, 16 Oct 2017 20:57:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4312,22 +3472,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:58 GMT']
+ date: ['Mon, 16 Oct 2017 20:58:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4340,22 +3500,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:09 GMT']
+ date: ['Mon, 16 Oct 2017 20:58:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4368,22 +3528,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:19 GMT']
+ date: ['Mon, 16 Oct 2017 20:58:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4396,22 +3556,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:29 GMT']
+ date: ['Mon, 16 Oct 2017 20:58:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4424,22 +3584,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:40 GMT']
+ date: ['Mon, 16 Oct 2017 20:58:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4452,22 +3612,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:51 GMT']
+ date: ['Mon, 16 Oct 2017 20:58:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4480,22 +3640,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:01 GMT']
+ date: ['Mon, 16 Oct 2017 20:59:08 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4508,22 +3668,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:10 GMT']
+ date: ['Mon, 16 Oct 2017 20:59:19 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4536,22 +3696,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:21 GMT']
+ date: ['Mon, 16 Oct 2017 20:59:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4564,22 +3724,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:31 GMT']
+ date: ['Mon, 16 Oct 2017 20:59:39 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4592,22 +3752,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:41 GMT']
+ date: ['Mon, 16 Oct 2017 20:59:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4620,22 +3780,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:51 GMT']
+ date: ['Mon, 16 Oct 2017 21:00:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4648,22 +3808,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:02 GMT']
+ date: ['Mon, 16 Oct 2017 21:00:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4676,22 +3836,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:12 GMT']
+ date: ['Mon, 16 Oct 2017 21:00:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4704,22 +3864,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:22 GMT']
+ date: ['Mon, 16 Oct 2017 21:00:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4732,22 +3892,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:33 GMT']
+ date: ['Mon, 16 Oct 2017 21:00:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4760,22 +3920,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:00:52 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4788,22 +3948,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:53 GMT']
+ date: ['Mon, 16 Oct 2017 21:01:02 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4816,22 +3976,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:03 GMT']
+ date: ['Mon, 16 Oct 2017 21:01:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4844,22 +4004,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:14 GMT']
+ date: ['Mon, 16 Oct 2017 21:01:23 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4872,22 +4032,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:24 GMT']
+ date: ['Mon, 16 Oct 2017 21:01:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4900,22 +4060,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:34 GMT']
+ date: ['Mon, 16 Oct 2017 21:01:43 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4928,22 +4088,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:45 GMT']
+ date: ['Mon, 16 Oct 2017 21:01:54 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4956,22 +4116,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:55 GMT']
+ date: ['Mon, 16 Oct 2017 21:02:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4984,22 +4144,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:26:06 GMT']
+ date: ['Mon, 16 Oct 2017 21:02:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5012,22 +4172,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:26:16 GMT']
+ date: ['Mon, 16 Oct 2017 21:02:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5040,22 +4200,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:26:26 GMT']
+ date: ['Mon, 16 Oct 2017 21:02:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5068,22 +4228,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:26:36 GMT']
+ date: ['Mon, 16 Oct 2017 21:02:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5096,22 +4256,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:26:47 GMT']
+ date: ['Mon, 16 Oct 2017 21:02:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5124,22 +4284,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:26:56 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5152,22 +4312,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:07 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5180,22 +4340,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f75ca4d1-e94c-4ec9-95fa-de325c83d731?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64f8da04-78d5-4b69-bebb-74b22c0b9117?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:18 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5208,24 +4368,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
- ,\r\n \"etag\": \"W/\\\"8cee417e-49f8-4392-b562-87ce723be802\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"646e1034-a75d-4c9e-a8e5-8d4b7b6d4324\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"db1fddc4-fa17-4678-b581-de9023060037\",\r\n \
+ ,\r\n \"resourceGuid\": \"656730bd-df1a-4069-9d0c-9f6d066e1e50\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"8cee417e-49f8-4392-b562-87ce723be802\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"646e1034-a75d-4c9e-a8e5-8d4b7b6d4324\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\
@@ -5240,7 +4400,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1889']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:18 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5253,12 +4413,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network local-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2017-05-10
@@ -5268,70 +4428,70 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:18 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:28 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"gatewayIpAddress": "131.107.72.22", "localNetworkAddressSpace":
- {"addressPrefixes": ["10.61.0.0/16", "10.62.0.0/16"]}}, "location": "westus"}'
+ body: '{"location": "westus", "properties": {"gatewayIpAddress": "131.107.72.22",
+ "localNetworkAddressSpace": {"addressPrefixes": ["10.61.0.0/16", "10.62.0.0/16"]}}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network local-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['158']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"lgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
- ,\r\n \"etag\": \"W/\\\"ef088fd9-19e1-4553-8f0d-ca46f90d9e89\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"021203c5-248c-4212-8dac-ba72ea977557\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"1efed79a-5231-4d79-9322-0ac68b53bea8\",\r\n \
+ ,\r\n \"resourceGuid\": \"ff2908c8-6d29-417d-a023-85d5ade8136e\",\r\n \
\ \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \
\ \"10.61.0.0/16\",\r\n \"10.62.0.0/16\"\r\n ]\r\n },\r\
\n \"gatewayIpAddress\": \"131.107.72.22\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/494f02e6-a700-45b1-85fc-234c7d715dc5?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/118b41da-5245-42f4-bcce-5d6d666ef64d?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['660']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:18 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network local-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/494f02e6-a700-45b1-85fc-234c7d715dc5?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/118b41da-5245-42f4-bcce-5d6d666ef64d?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:29 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:40 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5344,21 +4504,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network local-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"lgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
- ,\r\n \"etag\": \"W/\\\"71e6639a-f9b4-45eb-b15e-e0a5b2f7d6e7\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"d5d7a05c-d63c-4006-8240-6176552b3857\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"1efed79a-5231-4d79-9322-0ac68b53bea8\",\r\n \
+ ,\r\n \"resourceGuid\": \"ff2908c8-6d29-417d-a023-85d5ade8136e\",\r\n \
\ \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \
\ \"10.61.0.0/16\",\r\n \"10.62.0.0/16\"\r\n ]\r\n },\r\
\n \"gatewayIpAddress\": \"131.107.72.22\"\r\n }\r\n}"}
@@ -5366,8 +4526,8 @@ interactions:
cache-control: [no-cache]
content-length: ['661']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:30 GMT']
- etag: [W/"71e6639a-f9b4-45eb-b15e-e0a5b2f7d6e7"]
+ date: ['Mon, 16 Oct 2017 21:03:40 GMT']
+ etag: [W/"d5d7a05c-d63c-4006-8240-6176552b3857"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5380,12 +4540,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2017-05-10
@@ -5395,95 +4555,132 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:30 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:41 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"parameters": {}, "template": {"parameters": {}, "$schema":
- "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "variables": {}, "resources": [{"tags": {}, "apiVersion": "2015-06-15", "dependsOn":
- [], "type": "Microsoft.Network/connections", "name": "conn1", "location": "westus",
- "properties": {"routingWeight": 10, "localNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},
- "connectionType": "IPSec", "sharedKey": "AzureA1b2C3", "enableBgp": false, "usePolicyBasedTrafficSelectors":
- false, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},
- "authorizationKey": null}}], "outputs": {"resource": {"value": "[reference(\''conn1\'')]",
- "type": "object"}}, "contentVersion": "1.0.0.0"}, "mode": "Incremental"}}'''
+ body: 'b''{"properties": {"mode": "Incremental", "template": {"contentVersion":
+ "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "resources": [{"apiVersion": "2015-06-15", "properties": {"authorizationKey":
+ null, "enableBgp": false, "localNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},
+ "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},
+ "routingWeight": 10, "usePolicyBasedTrafficSelectors": false, "connectionType":
+ "IPSec", "sharedKey": "AzureA1b2C3"}, "name": "conn1", "type": "Microsoft.Network/connections",
+ "tags": {}, "location": "westus", "dependsOn": []}], "outputs": {"resource":
+ {"value": "[reference(\''conn1\'')]", "type": "object"}}, "variables": {}, "parameters":
+ {}}, "parameters": {}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['1107']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_LM7KKVu52f4FUlyjdFtlUojOnFdR9Rgs","name":"vpn_connection_deploy_LM7KKVu52f4FUlyjdFtlUojOnFdR9Rgs","properties":{"templateHash":"5475226721020640000","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:27:31.8610332Z","duration":"PT0.2582536S","correlationId":"6c9e58ef-316b-43bb-a4ad-60f760f6d3c2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC","name":"vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC","properties":{"templateHash":"1489720567955604867","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T21:03:43.0300344Z","duration":"PT0.5069468S","correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_LM7KKVu52f4FUlyjdFtlUojOnFdR9Rgs/operationStatuses/08586958260338748319?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC/operationStatuses/08586934190629545220?api-version=2017-05-10']
cache-control: [no-cache]
content-length: ['694']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:31 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958260338748319?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T05%3A03%3A52Z%20and%20correlationId%20eq%20%273a8cce9d-31a8-4801-8f31-12027dc6029c%27&api-version=2015-04-01
response:
- body: {string: '{"status":"Running"}'}
+ body: {string: '{"value":[]}'}
headers:
cache-control: [no-cache]
- content-length: ['20']
+ content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:01 GMT']
+ date: ['Mon, 16 Oct 2017 21:03:51 GMT']
expires: ['-1']
pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T05%3A04%3A02Z%20and%20correlationId%20eq%20%273a8cce9d-31a8-4801-8f31-12027dc6029c%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508185302","nbf":"1508185302","exp":"1508189202","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYGgI37xNW28b/+vHc9i0ErpCMvxsUs4+6OA8Wqo/5dEz8VgA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"8p-xBZvEoEeFrFmm18c0AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","description":"","eventDataId":"b6412b47-1c11-48fe-a27d-81eacf7f6628","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eb1642ef-f55c-4e9f-917d-ad9b6631da9b","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1/events/b6412b47-1c11-48fe-a27d-81eacf7f6628/ticks/636437846275700189","level":"Informational","resourceGroupName":"cli_test_vpn_connection_ipsec000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"8fb6a53d-6b8f-4e69-b031-5cc919051cc0","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Created","serviceRequestId":"95ad5c58-f44f-45f0-884a-122a5b7dda95"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T21:03:47.5700189Z","submissionTimestamp":"2017-10-16T21:04:00.6982845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508185302","nbf":"1508185302","exp":"1508189202","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYGgI37xNW28b/+vHc9i0ErpCMvxsUs4+6OA8Wqo/5dEz8VgA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"8p-xBZvEoEeFrFmm18c0AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","description":"","eventDataId":"3d6c49f1-fb5d-41d2-9103-48607927bdbf","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eb1642ef-f55c-4e9f-917d-ad9b6631da9b","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1/events/3d6c49f1-fb5d-41d2-9103-48607927bdbf/ticks/636437846254899621","level":"Informational","resourceGroupName":"cli_test_vpn_connection_ipsec000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"8fb6a53d-6b8f-4e69-b031-5cc919051cc0","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T21:03:45.4899621Z","submissionTimestamp":"2017-10-16T21:04:00.6982845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508185302","nbf":"1508185302","exp":"1508189202","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYGgI37xNW28b/+vHc9i0ErpCMvxsUs4+6OA8Wqo/5dEz8VgA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"8p-xBZvEoEeFrFmm18c0AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","description":"","eventDataId":"b792c1d0-8008-49d8-b911-b8a32716570d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7cfaaecc-b2b5-11e7-981b-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC/events/b792c1d0-8008-49d8-b911-b8a32716570d/ticks/636437846232864168","level":"Informational","resourceGroupName":"cli_test_vpn_connection_ipsec000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T21:03:43.2864168Z","submissionTimestamp":"2017-10-16T21:04:00.1533592Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508185302","nbf":"1508185302","exp":"1508189202","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYGgI37xNW28b/+vHc9i0ErpCMvxsUs4+6OA8Wqo/5dEz8VgA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"8p-xBZvEoEeFrFmm18c0AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","description":"","eventDataId":"156b63c7-2464-4a6d-af29-8a22c72e6e8d","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7cfaaecc-b2b5-11e7-981b-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC/events/156b63c7-2464-4a6d-af29-8a22c72e6e8d/ticks/636437846218175783","level":"Informational","resourceGroupName":"cli_test_vpn_connection_ipsec000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T21:03:41.8175783Z","submissionTimestamp":"2017-10-16T21:04:00.1523584Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['14251']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 21:04:02 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958260338748319?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934190629545220?api-version=2017-05-10
response:
body: {string: '{"status":"Succeeded"}'}
headers:
cache-control: [no-cache]
content-length: ['22']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:32 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:12 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5494,22 +4691,57 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 monitorclient/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?$filter=eventTimestamp%20ge%202017-09-05T05%3A04%3A13Z%20and%20correlationId%20eq%20%273a8cce9d-31a8-4801-8f31-12027dc6029c%27&api-version=2015-04-01
+ response:
+ body: {string: '{"value":[{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508185302","nbf":"1508185302","exp":"1508189202","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYGgI37xNW28b/+vHc9i0ErpCMvxsUs4+6OA8Wqo/5dEz8VgA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"8p-xBZvEoEeFrFmm18c0AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","description":"","eventDataId":"b6412b47-1c11-48fe-a27d-81eacf7f6628","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eb1642ef-f55c-4e9f-917d-ad9b6631da9b","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1/events/b6412b47-1c11-48fe-a27d-81eacf7f6628/ticks/636437846275700189","level":"Informational","resourceGroupName":"cli_test_vpn_connection_ipsec000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"8fb6a53d-6b8f-4e69-b031-5cc919051cc0","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"properties":{"statusCode":"Created","serviceRequestId":"95ad5c58-f44f-45f0-884a-122a5b7dda95"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T21:03:47.5700189Z","submissionTimestamp":"2017-10-16T21:04:00.6982845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Network/connections/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508185302","nbf":"1508185302","exp":"1508189202","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYGgI37xNW28b/+vHc9i0ErpCMvxsUs4+6OA8Wqo/5dEz8VgA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"8p-xBZvEoEeFrFmm18c0AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","description":"","eventDataId":"3d6c49f1-fb5d-41d2-9103-48607927bdbf","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eb1642ef-f55c-4e9f-917d-ad9b6631da9b","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1/events/3d6c49f1-fb5d-41d2-9103-48607927bdbf/ticks/636437846254899621","level":"Informational","resourceGroupName":"cli_test_vpn_connection_ipsec000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1","resourceType":{"value":"Microsoft.Network/connections","localizedValue":"Microsoft.Network/connections"},"operationId":"8fb6a53d-6b8f-4e69-b031-5cc919051cc0","operationName":{"value":"Microsoft.Network/connections/write","localizedValue":"Microsoft.Network/connections/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T21:03:45.4899621Z","submissionTimestamp":"2017-10-16T21:04:00.6982845Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508185302","nbf":"1508185302","exp":"1508189202","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYGgI37xNW28b/+vHc9i0ErpCMvxsUs4+6OA8Wqo/5dEz8VgA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"8p-xBZvEoEeFrFmm18c0AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","description":"","eventDataId":"b792c1d0-8008-49d8-b911-b8a32716570d","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7cfaaecc-b2b5-11e7-981b-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC/events/b792c1d0-8008-49d8-b911-b8a32716570d/ticks/636437846232864168","level":"Informational","resourceGroupName":"cli_test_vpn_connection_ipsec000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2017-10-16T21:03:43.2864168Z","submissionTimestamp":"2017-10-16T21:04:00.1533592Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC"},"caller":"admin2@AzureSDKTeam.onmicrosoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/","iat":"1508185302","nbf":"1508185302","exp":"1508189202","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"Y2NgYGgI37xNW28b/+vHc9i0ErpCMvxsUs4+6OA8Wqo/5dEz8VgA","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","e_exp":"262800","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Admin2","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Admin2","groups":"e4bb0b56-1014-40f8-88ab-3d8a8cb0e086,8a9b1617-fc8d-4aa9-a42f-99868d314699","ipaddr":"167.220.1.229","name":"Admin2","http://schemas.microsoft.com/identity/claims/objectidentifier":"5963f50c-7c43-405c-af7e-53294de76abd","puid":"1003BFFD959F8423","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"sDgexRwCNIfY-hzQjjCDvZT7Izdfo4Syrr4x0dDNzR4","http://schemas.microsoft.com/identity/claims/tenantid":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"admin2@AzureSDKTeam.onmicrosoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"admin2@AzureSDKTeam.onmicrosoft.com","uti":"8p-xBZvEoEeFrFmm18c0AA","ver":"1.0","wids":"62e90394-69f5-4237-9190-012177145e10"},"correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","description":"","eventDataId":"156b63c7-2464-4a6d-af29-8a22c72e6e8d","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7cfaaecc-b2b5-11e7-981b-a0b3ccf7272a","clientIpAddress":"167.220.0.229","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC/events/156b63c7-2464-4a6d-af29-8a22c72e6e8d/ticks/636437846218175783","level":"Informational","resourceGroupName":"cli_test_vpn_connection_ipsec000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Microsoft.Resources/deployments/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2017-10-16T21:03:41.8175783Z","submissionTimestamp":"2017-10-16T21:04:00.1523584Z","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['14251']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 21:04:12 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_LM7KKVu52f4FUlyjdFtlUojOnFdR9Rgs","name":"vpn_connection_deploy_LM7KKVu52f4FUlyjdFtlUojOnFdR9Rgs","properties":{"templateHash":"5475226721020640000","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:28:04.2048472Z","duration":"PT32.6020676S","correlationId":"6c9e58ef-316b-43bb-a4ad-60f760f6d3c2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},"localNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},"connectionType":"IPsec","routingWeight":10,"sharedKey":"AzureA1b2C3","enableBgp":false,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC","name":"vpn_connection_deploy_AOoChZK1oAlVQzoyLcvW4nsblBmNuvPC","properties":{"templateHash":"1489720567955604867","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T21:03:59.5987092Z","duration":"PT17.0756216S","correlationId":"3a8cce9d-31a8-4801-8f31-12027dc6029c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"532854dd-07e9-4716-ab13-572231b7573c","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},"localNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},"connectionType":"IPsec","routingWeight":10,"sharedKey":"AzureA1b2C3","enableBgp":false,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"}]}}'}
headers:
cache-control: [no-cache]
content-length: ['1684']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:32 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:13 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5520,21 +4752,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy add]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\"\
- ,\r\n \"etag\": \"W/\\\"dcff139b-ba19-4e7c-8c25-2ef0ef663968\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"8e22eed7-b96b-4f03-9b4c-0662fbc99f78\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"532854dd-07e9-4716-ab13-572231b7573c\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
@@ -5546,7 +4778,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1287']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:33 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5555,34 +4787,34 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"tags": {}, "etag": "W/\\"dcff139b-ba19-4e7c-8c25-2ef0ef663968\\"",
- "properties": {"connectionType": "IPsec", "routingWeight": 10, "localNetworkGateway2":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},
- "resourceGuid": "f43cae7d-b5ef-40b0-a534-a1cbb6ec8701", "ipsecPolicies": [{"pfsGroup":
- "PFS24", "ikeIntegrity": "SHA384", "ipsecEncryption": "GCMAES256", "ikeEncryption":
- "AES256", "saLifeTimeSeconds": 7200, "ipsecIntegrity": "GCMAES256", "saDataSizeKilobytes":
- 2048, "dhGroup": "DHGroup24"}], "sharedKey": "AzureA1b2C3", "enableBgp": false,
- "usePolicyBasedTrafficSelectors": false, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"}},
- "location": "westus", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"}'''
+ body: 'b''{"etag": "W/\\"8e22eed7-b96b-4f03-9b4c-0662fbc99f78\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1",
+ "tags": {}, "location": "westus", "properties": {"usePolicyBasedTrafficSelectors":
+ false, "localNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},
+ "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},
+ "routingWeight": 10, "enableBgp": false, "connectionType": "IPsec", "sharedKey":
+ "AzureA1b2C3", "ipsecPolicies": [{"ipsecIntegrity": "GCMAES256", "saDataSizeKilobytes":
+ 2048, "ipsecEncryption": "GCMAES256", "dhGroup": "DHGroup24", "pfsGroup": "PFS24",
+ "ikeIntegrity": "SHA384", "saLifeTimeSeconds": 7200, "ikeEncryption": "AES256"}],
+ "resourceGuid": "532854dd-07e9-4716-ab13-572231b7573c"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy add]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['1200']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\"\
- ,\r\n \"etag\": \"W/\\\"4883ecf9-1439-45b6-b5c5-976abcf26273\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"a476a4c5-fcd5-49bc-b4f2-b46f60d7bdc7\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"532854dd-07e9-4716-ab13-572231b7573c\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
@@ -5595,11 +4827,11 @@ interactions:
: \"PFS24\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n\
\ \"egressBytesTransferred\": 0\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79aaf225-24db-4e39-b495-9ea79588e22b?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2a1aeba4-2aa0-42f4-a7a1-d04a647f921f?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1562']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:33 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5613,22 +4845,50 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy add]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2a1aeba4-2aa0-42f4-a7a1-d04a647f921f?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['30']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 16 Oct 2017 21:04:25 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]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79aaf225-24db-4e39-b495-9ea79588e22b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2a1aeba4-2aa0-42f4-a7a1-d04a647f921f?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5641,22 +4901,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy add]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79aaf225-24db-4e39-b495-9ea79588e22b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2a1aeba4-2aa0-42f4-a7a1-d04a647f921f?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5669,21 +4929,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy add]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\"\
- ,\r\n \"etag\": \"W/\\\"c6984f6f-a9d3-4cfd-816b-43a9d5f2482f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"b1f71c10-0e35-4187-bb19-8d94bfd69f04\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"532854dd-07e9-4716-ab13-572231b7573c\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
@@ -5700,7 +4960,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1599']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:46 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5713,21 +4973,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\"\
- ,\r\n \"etag\": \"W/\\\"c6984f6f-a9d3-4cfd-816b-43a9d5f2482f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"b1f71c10-0e35-4187-bb19-8d94bfd69f04\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"532854dd-07e9-4716-ab13-572231b7573c\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
@@ -5744,7 +5004,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1599']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:56 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5757,21 +5017,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy clear]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\"\
- ,\r\n \"etag\": \"W/\\\"c6984f6f-a9d3-4cfd-816b-43a9d5f2482f\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"b1f71c10-0e35-4187-bb19-8d94bfd69f04\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"532854dd-07e9-4716-ab13-572231b7573c\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
@@ -5788,7 +5048,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1599']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:56 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5797,32 +5057,31 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"tags": {}, "etag": "W/\\"c6984f6f-a9d3-4cfd-816b-43a9d5f2482f\\"",
- "properties": {"connectionType": "IPsec", "routingWeight": 10, "localNetworkGateway2":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},
- "resourceGuid": "f43cae7d-b5ef-40b0-a534-a1cbb6ec8701", "sharedKey": "AzureA1b2C3",
- "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "virtualNetworkGateway1":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"}},
- "location": "westus", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"}'''
+ body: 'b''{"etag": "W/\\"b1f71c10-0e35-4187-bb19-8d94bfd69f04\\"", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1",
+ "tags": {}, "location": "westus", "properties": {"usePolicyBasedTrafficSelectors":
+ false, "localNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},
+ "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},
+ "routingWeight": 10, "enableBgp": false, "connectionType": "IPsec", "sharedKey":
+ "AzureA1b2C3", "resourceGuid": "532854dd-07e9-4716-ab13-572231b7573c"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy clear]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['962']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\"\
- ,\r\n \"etag\": \"W/\\\"c5941388-06e8-494e-bbb9-e6dc7ef60921\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"7c4a378e-9255-4191-98dc-c9d8e0152444\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"532854dd-07e9-4716-ab13-572231b7573c\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
@@ -5831,40 +5090,40 @@ interactions:
: [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\"\
: 0\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b48e30b3-1124-4dfd-bedf-fc04d7e1f47c?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff7aa575-b683-4791-b884-18beb35fdca0?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1250']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:56 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:48 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-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy clear]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b48e30b3-1124-4dfd-bedf-fc04d7e1f47c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff7aa575-b683-4791-b884-18beb35fdca0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:29:07 GMT']
+ date: ['Mon, 16 Oct 2017 21:04:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5877,22 +5136,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy clear]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b48e30b3-1124-4dfd-bedf-fc04d7e1f47c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ff7aa575-b683-4791-b884-18beb35fdca0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:29:17 GMT']
+ date: ['Mon, 16 Oct 2017 21:05:09 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5905,21 +5164,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy clear]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\"\
- ,\r\n \"etag\": \"W/\\\"c545b1bf-64da-4a74-a7ba-755b4086aca0\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"55e31416-be96-45ba-85a9-04801dca10b6\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"532854dd-07e9-4716-ab13-572231b7573c\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
@@ -5931,7 +5190,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1287']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:29:17 GMT']
+ date: ['Mon, 16 Oct 2017 21:05:10 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5944,21 +5203,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection ipsec-policy list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\"\
- ,\r\n \"etag\": \"W/\\\"c545b1bf-64da-4a74-a7ba-755b4086aca0\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"55e31416-be96-45ba-85a9-04801dca10b6\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"f43cae7d-b5ef-40b0-a534-a1cbb6ec8701\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"532854dd-07e9-4716-ab13-572231b7573c\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\
\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\
\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\"\
@@ -5970,7 +5229,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1287']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:29:19 GMT']
+ date: ['Mon, 16 Oct 2017 21:05:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5983,13 +5242,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2017-05-10
@@ -5998,11 +5257,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 00:29:20 GMT']
+ date: ['Mon, 16 Oct 2017 21:05:12 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVlBOOjVGQ09OTkVDVElPTjo1RklQU0VDQlFPTU1aT0RNQXxBQjJDMjQ1QkNFQTRDREQ1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVlBOOjVGQ09OTkVDVElPTjo1RklQU0VDQUxLVERDN1BQTHxFM0RGNkQ1MTRGQjNGMzMxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vpn_gateway.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vpn_gateway.yaml
index 6897e17967b..061671faa9d 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vpn_gateway.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_vpn_gateway.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:41 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:44 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -46,43 +46,44 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:41 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:45 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"sku": {"name": "Basic"}, "location": "westus", "properties": {"publicIPAddressVersion":
- "IPv4", "publicIPAllocationMethod": "Dynamic", "idleTimeoutInMinutes": 4}}'
+ body: '{"sku": {"name": "Basic"}, "properties": {"publicIPAddressVersion": "IPv4",
+ "publicIPAllocationMethod": "Dynamic", "idleTimeoutInMinutes": 4}, "location":
+ "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['164']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- ,\r\n \"etag\": \"W/\\\"0631638e-8a3c-4243-83e5-f10937140a80\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"1ef8a569-9144-4064-b351-bc3a583702d2\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"9f6723ea-4e74-4130-bd6d-1aade5749c77\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"8f21f540-96b5-44de-9815-7422950d6f48\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/530a499b-e0c6-4a27-9814-c9e0aaa88a11?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a24ef2b5-f702-402a-8d34-2aa676047bde?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['641']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:45 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -94,22 +95,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/530a499b-e0c6-4a27-9814-c9e0aaa88a11?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a24ef2b5-f702-402a-8d34-2aa676047bde?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:49 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:50 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -122,20 +123,20 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- ,\r\n \"etag\": \"W/\\\"70eff1e7-4363-4213-b285-53f979b1bd82\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"0aefaef4-c272-4532-a5d7-12bc8d4a920a\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"9f6723ea-4e74-4130-bd6d-1aade5749c77\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"8f21f540-96b5-44de-9815-7422950d6f48\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
@@ -144,8 +145,8 @@ interactions:
cache-control: [no-cache]
content-length: ['642']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:50 GMT']
- etag: [W/"70eff1e7-4363-4213-b285-53f979b1bd82"]
+ date: ['Mon, 16 Oct 2017 21:30:51 GMT']
+ etag: [W/"0aefaef4-c272-4532-a5d7-12bc8d4a920a"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -158,12 +159,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -173,70 +174,71 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:50 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:51 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"sku": {"name": "Basic"}, "location": "westus", "properties": {"publicIPAddressVersion":
- "IPv4", "publicIPAllocationMethod": "Dynamic", "idleTimeoutInMinutes": 4}}'
+ body: '{"sku": {"name": "Basic"}, "properties": {"publicIPAddressVersion": "IPv4",
+ "publicIPAllocationMethod": "Dynamic", "idleTimeoutInMinutes": 4}, "location":
+ "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['164']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- ,\r\n \"etag\": \"W/\\\"815aae1d-48f1-445e-bc23-c0b7fa387c0d\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"71aca1e3-705d-4746-8a72-38ed5a5fa107\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"967ba7a8-2170-4c8f-8ec2-e860489255e7\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"cf95945b-9177-4861-914c-ec44386eab67\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1adb2b7b-a3be-4a51-a5d0-bdf8d6c93187?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd282ce5-0483-4f40-a59b-10cb36884b6e?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['641']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:49 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:52 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1adb2b7b-a3be-4a51-a5d0-bdf8d6c93187?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd282ce5-0483-4f40-a59b-10cb36884b6e?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:53 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -249,20 +251,20 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- ,\r\n \"etag\": \"W/\\\"9e9557c9-358d-4b58-8830-21e12a05dcfb\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"0c3ed91e-1517-4f19-a72a-e150e2ce8217\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"967ba7a8-2170-4c8f-8ec2-e860489255e7\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"cf95945b-9177-4861-914c-ec44386eab67\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
@@ -271,8 +273,8 @@ interactions:
cache-control: [no-cache]
content-length: ['642']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:53 GMT']
- etag: [W/"9e9557c9-358d-4b58-8830-21e12a05dcfb"]
+ date: ['Mon, 16 Oct 2017 21:30:56 GMT']
+ etag: [W/"0c3ed91e-1517-4f19-a72a-e150e2ce8217"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -285,12 +287,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -300,70 +302,71 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:53 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:57 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"sku": {"name": "Basic"}, "location": "westus", "properties": {"publicIPAddressVersion":
- "IPv4", "publicIPAllocationMethod": "Dynamic", "idleTimeoutInMinutes": 4}}'
+ body: '{"sku": {"name": "Basic"}, "properties": {"publicIPAddressVersion": "IPv4",
+ "publicIPAllocationMethod": "Dynamic", "idleTimeoutInMinutes": 4}, "location":
+ "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['164']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\
- ,\r\n \"etag\": \"W/\\\"59727f9e-6640-4503-8391-c1ecdb8a7dea\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"0d3a2d0b-e367-45a1-8911-2765dd322754\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"ae68c92d-e829-48a5-8dd0-5cf8a7984a89\"\
+ : \"Updating\",\r\n \"resourceGuid\": \"d101b62d-b146-4136-a37b-1012982332ae\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
Basic\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8b5ffe9-dc70-43a8-bd0a-c835114d84b1?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5de211ee-41bc-49b5-8dfd-36f88a4857d0?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['641']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:30:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8b5ffe9-dc70-43a8-bd0a-c835114d84b1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5de211ee-41bc-49b5-8dfd-36f88a4857d0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:57 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -376,20 +379,20 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\
- ,\r\n \"etag\": \"W/\\\"2db2762f-a55b-4b53-8cbb-96eadd48a09b\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"774def3a-8921-40f5-b3d5-1b052a400d7f\\\"\",\r\n \
\ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"ae68c92d-e829-48a5-8dd0-5cf8a7984a89\"\
+ : \"Succeeded\",\r\n \"resourceGuid\": \"d101b62d-b146-4136-a37b-1012982332ae\"\
,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
: \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
@@ -398,8 +401,8 @@ interactions:
cache-control: [no-cache]
content-length: ['642']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:57 GMT']
- etag: [W/"2db2762f-a55b-4b53-8cbb-96eadd48a09b"]
+ date: ['Mon, 16 Oct 2017 21:31:01 GMT']
+ etag: [W/"774def3a-8921-40f5-b3d5-1b052a400d7f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -412,12 +415,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -427,77 +430,77 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:58 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"subnets": [{"name":
- "GatewaySubnet", "properties": {"addressPrefix": "10.0.0.0/24"}}], "addressSpace":
- {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}'
+ body: '{"properties": {"dhcpOptions": {}, "subnets": [{"name": "GatewaySubnet",
+ "properties": {"addressPrefix": "10.0.0.0/24"}}], "addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}}, "location": "westus", "tags": {}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['211']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myvnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1\"\
- ,\r\n \"etag\": \"W/\\\"284baebe-20a3-4625-86ba-c1a514c6167c\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"2f4beeb6-6dd5-4042-a238-a1a036dac1dd\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"99fae051-04b2-4d01-bb94-1687218580e4\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"9d1ee7e5-ef55-416a-9580-2c5efb055180\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"284baebe-20a3-4625-86ba-c1a514c6167c\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"2f4beeb6-6dd5-4042-a238-a1a036dac1dd\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6434eff2-98ad-45c6-b525-46d5e9cf0cb9?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d31b77a6-5cb9-4f94-94f5-c809aac58304?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1248']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:55:58 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6434eff2-98ad-45c6-b525-46d5e9cf0cb9?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d31b77a6-5cb9-4f94-94f5-c809aac58304?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:02 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:06 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -510,26 +513,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myvnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1\"\
- ,\r\n \"etag\": \"W/\\\"48ffab29-a01c-4e30-808f-1f450d05de91\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f29f631d-60cd-425f-acdb-6da3c7cfc228\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"99fae051-04b2-4d01-bb94-1687218580e4\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"9d1ee7e5-ef55-416a-9580-2c5efb055180\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"48ffab29-a01c-4e30-808f-1f450d05de91\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f29f631d-60cd-425f-acdb-6da3c7cfc228\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -538,8 +541,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1250']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:01 GMT']
- etag: [W/"48ffab29-a01c-4e30-808f-1f450d05de91"]
+ date: ['Mon, 16 Oct 2017 21:31:06 GMT']
+ etag: [W/"f29f631d-60cd-425f-acdb-6da3c7cfc228"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -552,12 +555,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -567,77 +570,77 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:02 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:08 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"subnets": [{"name":
- "GatewaySubnet", "properties": {"addressPrefix": "10.1.0.0/24"}}], "addressSpace":
- {"addressPrefixes": ["10.1.0.0/16"]}, "dhcpOptions": {}}}'
+ body: '{"properties": {"dhcpOptions": {}, "subnets": [{"name": "GatewaySubnet",
+ "properties": {"addressPrefix": "10.1.0.0/24"}}], "addressSpace": {"addressPrefixes":
+ ["10.1.0.0/16"]}}, "location": "westus", "tags": {}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['211']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2\"\
- ,\r\n \"etag\": \"W/\\\"19119763-e8b0-4b1e-b493-a0de12672116\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"ad1cef17-73d6-4939-b1a8-c8c41ffe9260\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"1732bb89-4c24-4855-847c-b339dd7f473d\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"e3beaf02-6a42-45c4-8383-710e06e24faa\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"19119763-e8b0-4b1e-b493-a0de12672116\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"ad1cef17-73d6-4939-b1a8-c8c41ffe9260\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.1.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bb9f40a-a29a-4a43-9f9a-ca825bbc9809?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0b5f34b4-0a74-48d9-85d1-dd3849ac240b?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1248']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:02 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:08 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bb9f40a-a29a-4a43-9f9a-ca825bbc9809?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0b5f34b4-0a74-48d9-85d1-dd3849ac240b?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:06 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -650,26 +653,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2\"\
- ,\r\n \"etag\": \"W/\\\"f9b645ab-200d-4070-86d7-b863ef782777\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"5f22722d-c484-4357-9a75-01cb105a429c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"1732bb89-4c24-4855-847c-b339dd7f473d\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"e3beaf02-6a42-45c4-8383-710e06e24faa\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"f9b645ab-200d-4070-86d7-b863ef782777\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"5f22722d-c484-4357-9a75-01cb105a429c\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.1.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -678,8 +681,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1250']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:06 GMT']
- etag: [W/"f9b645ab-200d-4070-86d7-b863ef782777"]
+ date: ['Mon, 16 Oct 2017 21:31:13 GMT']
+ etag: [W/"5f22722d-c484-4357-9a75-01cb105a429c"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -692,12 +695,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -707,77 +710,77 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:06 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:14 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"subnets": [{"name":
- "GatewaySubnet", "properties": {"addressPrefix": "10.2.0.0/24"}}], "addressSpace":
- {"addressPrefixes": ["10.2.0.0/16"]}, "dhcpOptions": {}}}'
+ body: '{"properties": {"dhcpOptions": {}, "subnets": [{"name": "GatewaySubnet",
+ "properties": {"addressPrefix": "10.2.0.0/24"}}], "addressSpace": {"addressPrefixes":
+ ["10.2.0.0/16"]}}, "location": "westus", "tags": {}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['211']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myvnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3\"\
- ,\r\n \"etag\": \"W/\\\"9a6dd40d-eda9-4590-afbf-7a077380eac9\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f2cec1ec-274c-43fe-a9fa-c842b5b24f32\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"a56d0287-db45-49fb-bc3c-96aa57941d6c\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"93cab981-1194-48ff-aa2f-eb3038b1aef8\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.2.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"9a6dd40d-eda9-4590-afbf-7a077380eac9\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f2cec1ec-274c-43fe-a9fa-c842b5b24f32\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.2.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ec2fb18-33fb-49d4-bc0c-357073919aac?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8dddfa71-6b3b-421b-9843-253b437f8239?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1248']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:10 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ec2fb18-33fb-49d4-bc0c-357073919aac?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8dddfa71-6b3b-421b-9843-253b437f8239?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:13 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:18 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -790,26 +793,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"myvnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3\"\
- ,\r\n \"etag\": \"W/\\\"c1a26593-7c18-49e8-8555-a7f818626b64\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"a59940f9-b9ea-49ef-9fb9-f2c340996aa7\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"a56d0287-db45-49fb-bc3c-96aa57941d6c\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"93cab981-1194-48ff-aa2f-eb3038b1aef8\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.2.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"c1a26593-7c18-49e8-8555-a7f818626b64\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a59940f9-b9ea-49ef-9fb9-f2c340996aa7\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.2.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -818,8 +821,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1250']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:13 GMT']
- etag: [W/"c1a26593-7c18-49e8-8555-a7f818626b64"]
+ date: ['Mon, 16 Oct 2017 21:31:19 GMT']
+ etag: [W/"a59940f9-b9ea-49ef-9fb9-f2c340996aa7"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -832,12 +835,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -847,41 +850,40 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:13 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:19 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "properties": {"sku": {"name": "Basic", "tier":
- "Basic"}, "vpnType": "RouteBased", "gatewayType": "Vpn", "ipConfigurations":
- [{"name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet"},
+ body: 'b''{"properties": {"ipConfigurations": [{"name": "vnetGatewayConfig0",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet"},
"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1"}}}],
- "activeActive": false}}'''
+ "gatewayType": "Vpn", "activeActive": false, "vpnType": "RouteBased", "sku":
+ {"name": "Basic", "tier": "Basic"}}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['725']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -893,28 +895,28 @@ interactions:
: {\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\"\
: [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/17b099b9-e76a-42f0-a512-f51210e79239?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/384542cd-6ca1-4f5e-ba6f-6f4f3a3d195b?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1938']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:15 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:21 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -924,41 +926,40 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:14 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:22 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "properties": {"sku": {"name": "Basic", "tier":
- "Basic"}, "vpnType": "RouteBased", "gatewayType": "Vpn", "ipConfigurations":
- [{"name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet"},
+ body: 'b''{"properties": {"ipConfigurations": [{"name": "vnetGatewayConfig0",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet"},
"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2"}}}],
- "activeActive": false}}'''
+ "gatewayType": "Vpn", "activeActive": false, "vpnType": "RouteBased", "sku":
+ {"name": "Basic", "tier": "Basic"}}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['725']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c21f5988-0daf-4e9f-a53b-2d3046f1b8b3\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
+ ,\r\n \"resourceGuid\": \"e8f4fd0e-e31f-4029-91cd-5b6accd5ce9d\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c21f5988-0daf-4e9f-a53b-2d3046f1b8b3\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
@@ -970,28 +971,28 @@ interactions:
: {\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\"\
: [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7bdc8104-3b4f-4f12-8f18-a0a837ae6da0?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e2047a98-6a6b-4c1b-8d99-51b222a58a99?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1938']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:15 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:23 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -1001,42 +1002,41 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:15 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:24 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "westus", "properties": {"vpnType": "RouteBased", "activeActive":
- false, "sku": {"name": "Standard", "tier": "Standard"}, "gatewayType": "Vpn",
- "ipConfigurations": [{"name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet"},
+ body: 'b''{"properties": {"enableBgp": true, "ipConfigurations": [{"name": "vnetGatewayConfig0",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet"},
"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3"}}}],
- "enableBgp": true, "bgpSettings": {"peerWeight": 50, "bgpPeeringAddress": "10.2.250.250",
- "asn": 12345}}}'''
+ "gatewayType": "Vpn", "activeActive": false, "vpnType": "RouteBased", "sku":
+ {"name": "Standard", "tier": "Standard"}, "bgpSettings": {"peerWeight": 50,
+ "asn": 12345, "bgpPeeringAddress": "10.2.250.250"}}, "location": "westus"}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['836']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\"\
- ,\r\n \"etag\": \"W/\\\"f815fca9-80e6-45da-ba28-a3e47b110ed1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"522a0cfa-1631-4ffc-abd8-07d4bf96c3e2\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"dc444201-b56a-4392-afcb-030b94aca7a2\",\r\n \
+ ,\r\n \"resourceGuid\": \"76448300-39cd-4af5-97c2-74ee2e7a4447\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"f815fca9-80e6-45da-ba28-a3e47b110ed1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"522a0cfa-1631-4ffc-abd8-07d4bf96c3e2\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\
@@ -1051,40 +1051,40 @@ interactions:
\ \"bgpPeeringAddress\": \"10.2.250.250\",\r\n \"peerWeight\": 50\r\n\
\ }\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f5ef1c94-6b7a-4161-a708-416f11368379?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f67c1b2-9277-475e-9ec1-cbda61c7b510?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['2062']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:16 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1097,7 +1097,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:16 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:26 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1110,24 +1110,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1140,7 +1140,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:56:47 GMT']
+ date: ['Mon, 16 Oct 2017 21:31:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1153,24 +1153,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1183,7 +1183,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:57:17 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:26 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1196,24 +1196,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1226,7 +1226,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:57:48 GMT']
+ date: ['Mon, 16 Oct 2017 21:32:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1239,24 +1239,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1269,7 +1269,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:18 GMT']
+ date: ['Mon, 16 Oct 2017 21:33:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1282,24 +1282,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1312,7 +1312,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:58:48 GMT']
+ date: ['Mon, 16 Oct 2017 21:33:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1325,24 +1325,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1355,7 +1355,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:18 GMT']
+ date: ['Mon, 16 Oct 2017 21:34:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1368,24 +1368,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1398,7 +1398,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 18 Sep 2017 23:59:48 GMT']
+ date: ['Mon, 16 Oct 2017 21:34:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1411,24 +1411,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1441,7 +1441,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:19 GMT']
+ date: ['Mon, 16 Oct 2017 21:35:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1454,24 +1454,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1484,7 +1484,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:00:49 GMT']
+ date: ['Mon, 16 Oct 2017 21:35:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1497,24 +1497,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1527,7 +1527,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:19 GMT']
+ date: ['Mon, 16 Oct 2017 21:36:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1540,24 +1540,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1570,7 +1570,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:01:49 GMT']
+ date: ['Mon, 16 Oct 2017 21:37:07 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1583,24 +1583,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1613,7 +1613,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:19 GMT']
+ date: ['Mon, 16 Oct 2017 21:37:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1626,24 +1626,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1656,7 +1656,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:02:50 GMT']
+ date: ['Mon, 16 Oct 2017 21:38:08 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1669,24 +1669,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1699,7 +1699,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:20 GMT']
+ date: ['Mon, 16 Oct 2017 21:38:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1712,24 +1712,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1742,7 +1742,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:03:51 GMT']
+ date: ['Mon, 16 Oct 2017 21:39:08 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1755,24 +1755,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1785,7 +1785,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:21 GMT']
+ date: ['Mon, 16 Oct 2017 21:39:42 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1798,24 +1798,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1828,7 +1828,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:04:51 GMT']
+ date: ['Mon, 16 Oct 2017 21:40:12 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1841,24 +1841,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1871,7 +1871,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:21 GMT']
+ date: ['Mon, 16 Oct 2017 21:40:43 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1884,24 +1884,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1914,7 +1914,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:05:51 GMT']
+ date: ['Mon, 16 Oct 2017 21:41:13 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1927,24 +1927,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -1957,7 +1957,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:22 GMT']
+ date: ['Mon, 16 Oct 2017 21:41:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1970,24 +1970,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2000,7 +2000,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:06:52 GMT']
+ date: ['Mon, 16 Oct 2017 21:42:14 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2013,24 +2013,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2043,7 +2043,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:22 GMT']
+ date: ['Mon, 16 Oct 2017 21:42:44 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2056,24 +2056,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2086,7 +2086,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:07:52 GMT']
+ date: ['Mon, 16 Oct 2017 21:43:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2099,24 +2099,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2129,7 +2129,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:22 GMT']
+ date: ['Mon, 16 Oct 2017 21:43:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2142,24 +2142,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2172,7 +2172,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:08:53 GMT']
+ date: ['Mon, 16 Oct 2017 21:44:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2185,24 +2185,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2215,7 +2215,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:23 GMT']
+ date: ['Mon, 16 Oct 2017 21:44:45 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2228,24 +2228,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2258,7 +2258,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:09:53 GMT']
+ date: ['Mon, 16 Oct 2017 21:45:16 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2271,24 +2271,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2301,7 +2301,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:23 GMT']
+ date: ['Mon, 16 Oct 2017 21:45:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2314,24 +2314,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2344,7 +2344,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:10:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:46:17 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2357,24 +2357,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2387,7 +2387,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:24 GMT']
+ date: ['Mon, 16 Oct 2017 21:46:47 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2400,24 +2400,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2430,7 +2430,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:11:54 GMT']
+ date: ['Mon, 16 Oct 2017 21:47:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2443,24 +2443,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2473,7 +2473,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:24 GMT']
+ date: ['Mon, 16 Oct 2017 21:47:57 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2486,24 +2486,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2516,7 +2516,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:12:55 GMT']
+ date: ['Mon, 16 Oct 2017 21:48:28 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2529,24 +2529,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2559,7 +2559,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:25 GMT']
+ date: ['Mon, 16 Oct 2017 21:48:58 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2572,24 +2572,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2602,7 +2602,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:13:55 GMT']
+ date: ['Mon, 16 Oct 2017 21:49:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2615,24 +2615,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2645,7 +2645,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:26 GMT']
+ date: ['Mon, 16 Oct 2017 21:50:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2658,24 +2658,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2688,7 +2688,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:14:55 GMT']
+ date: ['Mon, 16 Oct 2017 21:50:29 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2701,24 +2701,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2731,7 +2731,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:26 GMT']
+ date: ['Mon, 16 Oct 2017 21:51:00 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2744,24 +2744,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2774,7 +2774,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:15:56 GMT']
+ date: ['Mon, 16 Oct 2017 21:51:30 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2787,24 +2787,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2817,7 +2817,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:26 GMT']
+ date: ['Mon, 16 Oct 2017 21:52:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2830,24 +2830,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2860,7 +2860,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:16:57 GMT']
+ date: ['Mon, 16 Oct 2017 21:52:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2873,24 +2873,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2903,7 +2903,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:26 GMT']
+ date: ['Mon, 16 Oct 2017 21:53:01 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2916,24 +2916,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2946,7 +2946,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:17:57 GMT']
+ date: ['Mon, 16 Oct 2017 21:53:32 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -2959,24 +2959,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -2989,7 +2989,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:27 GMT']
+ date: ['Mon, 16 Oct 2017 21:54:02 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3002,24 +3002,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"43ffdd3e-2719-40d4-8b6d-67614caa4cd8\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -3032,7 +3032,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1782']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:18:57 GMT']
+ date: ['Mon, 16 Oct 2017 21:54:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3045,37 +3045,39 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"18e00200-1604-449d-998a-4246bd658f3b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"18e00200-1604-449d-998a-4246bd658f3b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
\ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
: 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
+ : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\"\
+ ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['1900']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:27 GMT']
+ date: ['Mon, 16 Oct 2017 21:55:03 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3088,37 +3090,39 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
+ ,\r\n \"etag\": \"W/\\\"520e5653-c2bc-4917-a427-9259fb466fbc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"e8f4fd0e-e31f-4029-91cd-5b6accd5ce9d\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"520e5653-c2bc-4917-a427-9259fb466fbc\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
\ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
: 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
+ : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.1.0.254\"\
+ ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['1900']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:19:58 GMT']
+ date: ['Mon, 16 Oct 2017 21:55:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3131,37 +3135,39 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\"\
+ ,\r\n \"etag\": \"W/\\\"082378d7-7158-407a-8073-f7ae86787de3\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"76448300-39cd-4af5-97c2-74ee2e7a4447\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"082378d7-7158-407a-8073-f7ae86787de3\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ \ \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"\
+ capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\"\
+ : \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\": false,\r\
+ \n \"bgpSettings\": {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\"\
+ : \"10.2.250.250\",\r\n \"peerWeight\": 50\r\n }\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['1908']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:28 GMT']
+ date: ['Mon, 16 Oct 2017 21:55:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3174,37 +3180,39 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"18e00200-1604-449d-998a-4246bd658f3b\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"etag\": \"W/\\\"18e00200-1604-449d-998a-4246bd658f3b\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
\ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
: 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
+ : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\"\
+ ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['1900']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:20:58 GMT']
+ date: ['Mon, 16 Oct 2017 21:55:04 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3217,37 +3225,39 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
+ ,\r\n \"etag\": \"W/\\\"520e5653-c2bc-4917-a427-9259fb466fbc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"e8f4fd0e-e31f-4029-91cd-5b6accd5ce9d\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"520e5653-c2bc-4917-a427-9259fb466fbc\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
\ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
: 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
+ : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.1.0.254\"\
+ ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['1900']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:28 GMT']
+ date: ['Mon, 16 Oct 2017 21:55:05 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3260,37 +3270,39 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\"\
+ ,\r\n \"etag\": \"W/\\\"082378d7-7158-407a-8073-f7ae86787de3\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"resourceGuid\": \"76448300-39cd-4af5-97c2-74ee2e7a4447\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\"\
+ ,\r\n \"etag\": \"W/\\\"082378d7-7158-407a-8073-f7ae86787de3\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
+ publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\
+ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ \ \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"\
+ capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\"\
+ : \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\": false,\r\
+ \n \"bgpSettings\": {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\"\
+ : \"10.2.250.250\",\r\n \"peerWeight\": 50\r\n }\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['1908']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:21:59 GMT']
+ date: ['Mon, 16 Oct 2017 21:55:05 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3303,130 +3315,87 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
response:
- body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c285670a-8254-4836-ad0d-35818cec0d93\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:29 GMT']
+ date: ['Mon, 16 Oct 2017 21:55: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]
status: {code: 200, message: OK}
- request:
- body: null
+ body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
+ {"variables": {}, "resources": [{"name": "conn1to2", "apiVersion": "2015-06-15",
+ "tags": {}, "properties": {"enableBgp": false, "routingWeight": 10, "connectionType":
+ "Vnet2Vnet", "authorizationKey": null, "usePolicyBasedTrafficSelectors": false,
+ "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},
+ "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},
+ "sharedKey": "123"}, "dependsOn": [], "location": "westus", "type": "Microsoft.Network/connections"}],
+ "parameters": {}, "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"resource": {"value": "[reference(\''conn1to2\'')]", "type": "object"}}}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['1122']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"b6271498-2399-447b-92b4-526786490a65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"b6271498-2399-447b-92b4-526786490a65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
- : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\"\
- ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_zeInUgWIdjvhX8egi61Lupd62OtCcX9b","name":"vpn_connection_deploy_zeInUgWIdjvhX8egi61Lupd62OtCcX9b","properties":{"templateHash":"3206447433878614586","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T21:55:08.2358469Z","duration":"PT0.7504969S","correlationId":"73332e64-77f8-4cc7-be34-7081004a6254","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_zeInUgWIdjvhX8egi61Lupd62OtCcX9b/operationStatuses/08586934159779922705?api-version=2017-05-10']
cache-control: [no-cache]
- content-length: ['1900']
+ content-length: ['694']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:59 GMT']
+ date: ['Mon, 16 Oct 2017 21:55: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]
- status: {code: 200, message: OK}
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934159779922705?api-version=2017-05-10
response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ body: {string: '{"status":"Running"}'}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['20']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:22:59 GMT']
+ date: ['Mon, 16 Oct 2017 21:55:38 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]
status: {code: 200, message: OK}
- request:
@@ -3434,42 +3403,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934159779922705?api-version=2017-05-10
response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ body: {string: '{"status":"Succeeded"}'}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['22']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:23:29 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:09 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]
status: {code: 200, message: OK}
- request:
@@ -3477,42 +3429,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_zeInUgWIdjvhX8egi61Lupd62OtCcX9b","name":"vpn_connection_deploy_zeInUgWIdjvhX8egi61Lupd62OtCcX9b","properties":{"templateHash":"3206447433878614586","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T21:55:41.2326894Z","duration":"PT33.7473394S","correlationId":"73332e64-77f8-4cc7-be34-7081004a6254","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"cfb78c84-c983-45f2-bde5-fdc603b3a786","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"connectionType":"Vnet2Vnet","routingWeight":10,"sharedKey":"123","enableBgp":false,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2"}]}}'}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['1696']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:00 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:09 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]
status: {code: 200, message: OK}
- request:
@@ -3520,37 +3455,33 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
+ body: {string: "{\r\n \"name\": \"conn1to2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2\"\
+ ,\r\n \"etag\": \"W/\\\"87def235-a107-475a-abf0-dc036480ce9b\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"cfb78c84-c983-45f2-bde5-fdc603b3a786\"\
+ ,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
+ \r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
+ \r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\"\
+ : 10,\r\n \"sharedKey\": \"123\",\r\n \"enableBgp\": false,\r\n \"\
+ usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n\
+ \ \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\"\
+ : 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['1782']
+ content-length: ['1302']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:24:29 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -3563,1375 +3494,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25:00 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:25: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:26:00 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:26: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:27:34 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28:04 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:28: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:29: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:29: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:30: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:30: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:31:07 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:31: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:32:07 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:32:38 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:33: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:33:39 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:34:09 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:34:40 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:35:10 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"c783640f-247d-455e-97e1-bf3f2aa5d674\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1782']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:35:41 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"cc682827-ac81-4efb-be93-4dd3f0da326d\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"cc682827-ac81-4efb-be93-4dd3f0da326d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
- : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.1.0.254\"\
- ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1900']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:36:12 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\"\
- ,\r\n \"etag\": \"W/\\\"df94d9d7-458e-494c-a3ec-dd78f4755d23\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"dc444201-b56a-4392-afcb-030b94aca7a2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"df94d9d7-458e-494c-a3ec-dd78f4755d23\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"\
- capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\"\
- : \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\": false,\r\
- \n \"bgpSettings\": {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\"\
- : \"10.2.250.250\",\r\n \"peerWeight\": 50\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1908']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:36:12 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"b6271498-2399-447b-92b4-526786490a65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"b6271498-2399-447b-92b4-526786490a65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
- : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\"\
- ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1900']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:36:13 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"cc682827-ac81-4efb-be93-4dd3f0da326d\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"cc682827-ac81-4efb-be93-4dd3f0da326d\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
- : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.1.0.254\"\
- ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1900']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:36:13 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\"\
- ,\r\n \"etag\": \"W/\\\"df94d9d7-458e-494c-a3ec-dd78f4755d23\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"dc444201-b56a-4392-afcb-030b94aca7a2\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"df94d9d7-458e-494c-a3ec-dd78f4755d23\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"\
- capacity\": 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\"\
- : \"RouteBased\",\r\n \"enableBgp\": true,\r\n \"activeActive\": false,\r\
- \n \"bgpSettings\": {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\"\
- : \"10.2.250.250\",\r\n \"peerWeight\": 50\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1908']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:36:14 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:36:14 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"template": {"parameters": {}, "contentVersion": "1.0.0.0",
- "variables": {}, "resources": [{"apiVersion": "2015-06-15", "name": "conn1to2",
- "type": "Microsoft.Network/connections", "dependsOn": [], "location": "westus",
- "properties": {"routingWeight": 10, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},
- "usePolicyBasedTrafficSelectors": false, "sharedKey": "123", "virtualNetworkGateway2":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},
- "authorizationKey": null, "connectionType": "Vnet2Vnet", "enableBgp": false},
- "tags": {}}], "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "outputs": {"resource": {"value": "[reference(\''conn1to2\'')]", "type": "object"}}},
- "parameters": {}, "mode": "Incremental"}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
- Connection: [keep-alive]
- Content-Length: ['1122']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_oc2VqPGbWdQdTfrlAyluZkHH6wrrbkGY","name":"vpn_connection_deploy_oc2VqPGbWdQdTfrlAyluZkHH6wrrbkGY","properties":{"templateHash":"16573168242525669803","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:36:16.4880082Z","duration":"PT0.4587618S","correlationId":"3f67977e-727b-4000-9159-12a5920d72ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_oc2VqPGbWdQdTfrlAyluZkHH6wrrbkGY/operationStatuses/08586958255094483683?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['695']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:36:16 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958255094483683?api-version=2017-05-10
- response:
- body: {string: '{"status":"Running"}'}
- headers:
- cache-control: [no-cache]
- content-length: ['20']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:36:46 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958255094483683?api-version=2017-05-10
- response:
- body: {string: '{"status":"Succeeded"}'}
- headers:
- cache-control: [no-cache]
- content-length: ['22']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:17 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_oc2VqPGbWdQdTfrlAyluZkHH6wrrbkGY","name":"vpn_connection_deploy_oc2VqPGbWdQdTfrlAyluZkHH6wrrbkGY","properties":{"templateHash":"16573168242525669803","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:37:02.2280908Z","duration":"PT46.1988444S","correlationId":"3f67977e-727b-4000-9159-12a5920d72ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"ae903443-4135-4f8e-8515-61f495fc3032","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"connectionType":"Vnet2Vnet","routingWeight":10,"sharedKey":"123","enableBgp":false,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2"}]}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1697']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:18 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"conn1to2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2\"\
- ,\r\n \"etag\": \"W/\\\"1448691d-187a-4f11-a0d7-178ee8c17c9b\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
- ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"ae903443-4135-4f8e-8515-61f495fc3032\"\
- ,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- \r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- \r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\"\
- : 10,\r\n \"sharedKey\": \"123\",\r\n \"enableBgp\": false,\r\n \"\
- usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n\
- \ \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\"\
- : 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1302']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection update]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
- ,\r\n \"etag\": \"W/\\\"d7000d8f-7299-4c24-8d0d-7f30670065da\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
+ ,\r\n \"etag\": \"W/\\\"c762a71b-a8b8-43e0-98c1-6cc4a52c68e0\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"2504f506-4ec1-48c0-a116-b591a04d445d\",\r\n \
+ ,\r\n \"resourceGuid\": \"d98f3ba2-f786-4482-b617-51288a3fd6e0\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"d7000d8f-7299-4c24-8d0d-7f30670065da\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"c762a71b-a8b8-43e0-98c1-6cc4a52c68e0\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\
@@ -4946,7 +3526,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1900']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:19 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -4959,24 +3539,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
- ,\r\n \"etag\": \"W/\\\"cc682827-ac81-4efb-be93-4dd3f0da326d\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"520e5653-c2bc-4917-a427-9259fb466fbc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"9fe81fa1-828f-470f-b0fe-f484a3ae2830\",\r\n \
+ ,\r\n \"resourceGuid\": \"e8f4fd0e-e31f-4029-91cd-5b6accd5ce9d\",\r\n \
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"cc682827-ac81-4efb-be93-4dd3f0da326d\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"520e5653-c2bc-4917-a427-9259fb466fbc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\
@@ -4991,7 +3571,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1900']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:20 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:11 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5000,50 +3580,49 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"etag": "W/\\"1448691d-187a-4f11-a0d7-178ee8c17c9b\\"", "location":
- "westus", "tags": {}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2",
- "properties": {"routingWeight": 25, "virtualNetworkGateway1": {"etag": "W/\\"d7000d8f-7299-4c24-8d0d-7f30670065da\\"",
- "location": "westus", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1",
- "properties": {"vpnType": "RouteBased", "activeActive": false, "resourceGuid":
- "2504f506-4ec1-48c0-a116-b591a04d445d", "sku": {"name": "Basic", "tier": "Basic",
- "capacity": 2}, "gatewayType": "Vpn", "ipConfigurations": [{"etag": "W/\\"d7000d8f-7299-4c24-8d0d-7f30670065da\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0",
+ body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2",
+ "properties": {"enableBgp": false, "routingWeight": 25, "connectionType": "Vnet2Vnet",
+ "usePolicyBasedTrafficSelectors": false, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1",
+ "properties": {"enableBgp": false, "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0",
"name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet"},
- "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1"}}}],
- "enableBgp": false, "bgpSettings": {"peerWeight": 0, "bgpPeeringAddress": "10.0.0.254",
- "asn": 65515}}}, "usePolicyBasedTrafficSelectors": false, "resourceGuid": "ae903443-4135-4f8e-8515-61f495fc3032",
- "sharedKey": "123", "virtualNetworkGateway2": {"etag": "W/\\"cc682827-ac81-4efb-be93-4dd3f0da326d\\"",
- "location": "westus", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2",
- "properties": {"vpnType": "RouteBased", "activeActive": false, "resourceGuid":
- "9fe81fa1-828f-470f-b0fe-f484a3ae2830", "sku": {"name": "Basic", "tier": "Basic",
- "capacity": 2}, "gatewayType": "Vpn", "ipConfigurations": [{"etag": "W/\\"cc682827-ac81-4efb-be93-4dd3f0da326d\\"",
- "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0",
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1"}},
+ "etag": "W/\\"c762a71b-a8b8-43e0-98c1-6cc4a52c68e0\\""}], "gatewayType": "Vpn",
+ "activeActive": false, "vpnType": "RouteBased", "sku": {"name": "Basic", "tier":
+ "Basic", "capacity": 2}, "bgpSettings": {"peerWeight": 0, "asn": 65515, "bgpPeeringAddress":
+ "10.0.0.254"}, "resourceGuid": "d98f3ba2-f786-4482-b617-51288a3fd6e0"}, "location":
+ "westus", "etag": "W/\\"c762a71b-a8b8-43e0-98c1-6cc4a52c68e0\\""}, "resourceGuid":
+ "cfb78c84-c983-45f2-bde5-fdc603b3a786", "ipsecPolicies": [], "sharedKey": "123",
+ "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2",
+ "properties": {"enableBgp": false, "ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0",
"name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet"},
- "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2"}}}],
- "enableBgp": false, "bgpSettings": {"peerWeight": 0, "bgpPeeringAddress": "10.1.0.254",
- "asn": 65515}}}, "connectionType": "Vnet2Vnet", "ipsecPolicies": [], "enableBgp":
- false}}'''
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2"}},
+ "etag": "W/\\"520e5653-c2bc-4917-a427-9259fb466fbc\\""}], "gatewayType": "Vpn",
+ "activeActive": false, "vpnType": "RouteBased", "sku": {"name": "Basic", "tier":
+ "Basic", "capacity": 2}, "bgpSettings": {"peerWeight": 0, "asn": 65515, "bgpPeeringAddress":
+ "10.1.0.254"}, "resourceGuid": "e8f4fd0e-e31f-4029-91cd-5b6accd5ce9d"}, "location":
+ "westus", "etag": "W/\\"520e5653-c2bc-4917-a427-9259fb466fbc\\""}}, "location":
+ "westus", "etag": "W/\\"87def235-a107-475a-abf0-dc036480ce9b\\"", "tags": {}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['3505']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1to2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2\"\
- ,\r\n \"etag\": \"W/\\\"41e98885-3460-4d27-9755-869981f320ca\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"58038f7a-e4d7-4353-80ec-a0a0cecbdaba\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"ae903443-4135-4f8e-8515-61f495fc3032\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"cfb78c84-c983-45f2-bde5-fdc603b3a786\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\"\
@@ -5052,40 +3631,40 @@ interactions:
\ \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\
\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33f50f7c-1e0c-435c-9138-6124271aff8f?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bbb54956-a066-473e-b05e-fe9c2b896bb3?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1265']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:21 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:12 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-ms-ratelimit-remaining-subscription-writes: ['1191']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33f50f7c-1e0c-435c-9138-6124271aff8f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bbb54956-a066-473e-b05e-fe9c2b896bb3?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['30']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:31 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:22 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5098,22 +3677,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33f50f7c-1e0c-435c-9138-6124271aff8f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bbb54956-a066-473e-b05e-fe9c2b896bb3?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:42 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5126,21 +3705,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"conn1to2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2\"\
- ,\r\n \"etag\": \"W/\\\"f486b360-c8be-45d5-9c7e-8c4be99fc552\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"244cc19e-821b-4f36-936f-fc5cb84e783c\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"ae903443-4135-4f8e-8515-61f495fc3032\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"cfb78c84-c983-45f2-bde5-fdc603b3a786\"\
,\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\
\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\
\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\"\
@@ -5152,7 +3731,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1302']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:33 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -5165,12 +3744,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -5180,70 +3759,69 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:34 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"template": {"parameters": {}, "contentVersion": "1.0.0.0",
- "variables": {}, "resources": [{"apiVersion": "2015-06-15", "name": "conn2to1",
- "type": "Microsoft.Network/connections", "dependsOn": [], "location": "westus",
- "properties": {"routingWeight": 10, "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},
- "usePolicyBasedTrafficSelectors": false, "sharedKey": "123", "virtualNetworkGateway2":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},
- "authorizationKey": null, "connectionType": "Vnet2Vnet", "enableBgp": false},
- "tags": {}}], "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "outputs": {"resource": {"value": "[reference(\''conn2to1\'')]", "type": "object"}}},
- "parameters": {}, "mode": "Incremental"}}'''
+ body: 'b''{"properties": {"mode": "Incremental", "parameters": {}, "template":
+ {"variables": {}, "resources": [{"name": "conn2to1", "apiVersion": "2015-06-15",
+ "tags": {}, "properties": {"enableBgp": false, "routingWeight": 10, "connectionType":
+ "Vnet2Vnet", "authorizationKey": null, "usePolicyBasedTrafficSelectors": false,
+ "virtualNetworkGateway1": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},
+ "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},
+ "sharedKey": "123"}, "dependsOn": [], "location": "westus", "type": "Microsoft.Network/connections"}],
+ "parameters": {}, "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "outputs": {"resource": {"value": "[reference(\''conn2to1\'')]", "type": "object"}}}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['1122']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_jFPtZxO29IeauoUYOrlwz9eLgmDa9WFi","name":"vpn_connection_deploy_jFPtZxO29IeauoUYOrlwz9eLgmDa9WFi","properties":{"templateHash":"4112069386588436542","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T00:37:45.8841278Z","duration":"PT0.5374243S","correlationId":"70dc651b-9c75-491d-8442-420152a2f939","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_9NoKtd16LLg90RLN1WqZ5s70Xz3zWnHo","name":"vpn_connection_deploy_9NoKtd16LLg90RLN1WqZ5s70Xz3zWnHo","properties":{"templateHash":"18235503251783149694","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-16T21:56:35.9675746Z","duration":"PT0.1784968S","correlationId":"50dbe76a-2ffe-43b3-ba86-1f2575367a95","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_jFPtZxO29IeauoUYOrlwz9eLgmDa9WFi/operationStatuses/08586958254201309102?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_9NoKtd16LLg90RLN1WqZ5s70Xz3zWnHo/operationStatuses/08586934158896885396?api-version=2017-05-10']
cache-control: [no-cache]
- content-length: ['694']
+ content-length: ['695']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:37:45 GMT']
+ date: ['Mon, 16 Oct 2017 21:56:35 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586958254201309102?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586934158896885396?api-version=2017-05-10
response:
body: {string: '{"status":"Succeeded"}'}
headers:
cache-control: [no-cache]
content-length: ['22']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:38:15 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:05 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5254,22 +3832,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vpn-connection create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_jFPtZxO29IeauoUYOrlwz9eLgmDa9WFi","name":"vpn_connection_deploy_jFPtZxO29IeauoUYOrlwz9eLgmDa9WFi","properties":{"templateHash":"4112069386588436542","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T00:38:16.4019162Z","duration":"PT31.0552127S","correlationId":"70dc651b-9c75-491d-8442-420152a2f939","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"def8c2e7-548d-4645-a6ee-4e37ef19ac8f","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"connectionType":"Vnet2Vnet","routingWeight":10,"sharedKey":"123","enableBgp":false,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn2to1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_9NoKtd16LLg90RLN1WqZ5s70Xz3zWnHo","name":"vpn_connection_deploy_9NoKtd16LLg90RLN1WqZ5s70Xz3zWnHo","properties":{"templateHash":"18235503251783149694","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-16T21:57:01.0901582Z","duration":"PT25.3010804S","correlationId":"50dbe76a-2ffe-43b3-ba86-1f2575367a95","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"2a2cf5de-89d3-426e-8237-75f0da6c45b0","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"connectionType":"Vnet2Vnet","routingWeight":10,"sharedKey":"123","enableBgp":false,"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn2to1"}]}}'}
headers:
cache-control: [no-cache]
- content-length: ['1696']
+ content-length: ['1697']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:38:16 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:06 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5280,13 +3858,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-learned-routes]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/getLearnedRoutes?api-version=2017-09-01
@@ -5296,9 +3874,9 @@ interactions:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:38:20 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:07 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e4c2c8d7-8a1e-47f6-9deb-7bc33dcedf31?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5138a2e3-a88f-43c9-9593-705dd3ad7412?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5309,24 +3887,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-learned-routes]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e4c2c8d7-8a1e-47f6-9deb-7bc33dcedf31?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5138a2e3-a88f-43c9-9593-705dd3ad7412?api-version=2017-09-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:38:30 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:17 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e4c2c8d7-8a1e-47f6-9deb-7bc33dcedf31?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5138a2e3-a88f-43c9-9593-705dd3ad7412?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5336,27 +3914,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-learned-routes]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e4c2c8d7-8a1e-47f6-9deb-7bc33dcedf31?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5138a2e3-a88f-43c9-9593-705dd3ad7412?api-version=2017-09-01
response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"\",\r\
- \n \"network\": \"10.1.0.0/16\",\r\n \"nextHop\": \"40.112.249.248\"\
- ,\r\n \"origin\": \"Network\",\r\n \"weight\": 0\r\n }\r\n ]\r\
- \n}"}
+ body: {string: "{\r\n \"value\": []\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['180']
+ content-length: ['19']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:38:41 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:28 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e4c2c8d7-8a1e-47f6-9deb-7bc33dcedf31?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5138a2e3-a88f-43c9-9593-705dd3ad7412?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5368,13 +3943,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-advertised-routes]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/getAdvertisedRoutes?api-version=2017-09-01&peer=10.1.1.1
@@ -5384,37 +3959,37 @@ interactions:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:38:43 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:28 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/caef6a78-2b89-46bd-a8da-8fa4ea5a4f01?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/507cc873-dd3f-4c16-93ba-ca926943563e?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1187']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-advertised-routes]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/caef6a78-2b89-46bd-a8da-8fa4ea5a4f01?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/507cc873-dd3f-4c16-93ba-ca926943563e?api-version=2017-09-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:38:53 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:39 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/caef6a78-2b89-46bd-a8da-8fa4ea5a4f01?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/507cc873-dd3f-4c16-93ba-ca926943563e?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5424,27 +3999,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-advertised-routes]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/caef6a78-2b89-46bd-a8da-8fa4ea5a4f01?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/507cc873-dd3f-4c16-93ba-ca926943563e?api-version=2017-09-01
response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"\",\r\
- \n \"network\": \"10.0.0.0/16\",\r\n \"nextHop\": \"Virtual Network\"\
- ,\r\n \"origin\": \"Network\",\r\n \"weight\": 0\r\n }\r\n ]\r\
- \n}"}
+ body: {string: "{\r\n \"value\": []\r\n}"}
headers:
cache-control: [no-cache]
- content-length: ['181']
+ content-length: ['19']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:39:03 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:49 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/caef6a78-2b89-46bd-a8da-8fa4ea5a4f01?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/507cc873-dd3f-4c16-93ba-ca926943563e?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5456,13 +4028,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-bgp-peer-status]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/getBgpPeerStatus?api-version=2017-09-01&peer=10.1.1.1
@@ -5472,37 +4044,37 @@ interactions:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:39:05 GMT']
+ date: ['Mon, 16 Oct 2017 21:57:50 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/46155d75-b890-47c6-a00e-13dbf0d61ec9?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/c924c22c-97ac-4016-b027-5f71e195bbc0?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-bgp-peer-status]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/46155d75-b890-47c6-a00e-13dbf0d61ec9?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/c924c22c-97ac-4016-b027-5f71e195bbc0?api-version=2017-09-01
response:
body: {string: 'null'}
headers:
cache-control: [no-cache]
content-length: ['4']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:39:16 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:00 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/46155d75-b890-47c6-a00e-13dbf0d61ec9?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/c924c22c-97ac-4016-b027-5f71e195bbc0?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5512,24 +4084,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway list-bgp-peer-status]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/46155d75-b890-47c6-a00e-13dbf0d61ec9?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/c924c22c-97ac-4016-b027-5f71e195bbc0?api-version=2017-09-01
response:
body: {string: "{\r\n \"value\": []\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['19']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 00:39:26 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:11 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/46155d75-b890-47c6-a00e-13dbf0d61ec9?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/c924c22c-97ac-4016-b027-5f71e195bbc0?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -5541,13 +4113,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2017-05-10
@@ -5556,11 +4128,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 00:39:28 GMT']
+ date: ['Mon, 16 Oct 2017 21:58:12 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVlBOOjVGR0FURVdBWTNDV1hMR1pEMkhGRjdNWUw0NTVVUHw2Rjg2NDM4QUFDRTkwOUIwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVlBOOjVGR0FURVdBWUpOWE1MV0ZQT1FCRlVPWFJQNkVDR3xBQTc2RDdDMTcwMjE4MDYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_watcher.yaml b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_watcher.yaml
index 523fd269b85..8797b9abb35 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_watcher.yaml
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/recordings/latest/test_network_watcher.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"tags": {"use": "az-test"}, "location": "westcentralus"}'
+ body: '{"location": "westcentralus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['57']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001?api-version=2017-05-10
@@ -20,6805 +20,24 @@ interactions:
cache-control: [no-cache]
content-length: ['335']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:13 GMT']
+ date: ['Mon, 16 Oct 2017 16:51:28 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 201, message: Created}
-- request:
- body: '{"properties": {"supportsHttpsTrafficOnly": false}, "kind": "Storage",
- "sku": {"name": "Standard_LRS"}, "location": "westcentralus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [storage account create]
- Connection: [keep-alive]
- Content-Length: ['132']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 storagemanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002?api-version=2017-06-01
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:32:16 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/93464cc4-fedf-4cca-bcc7-64d13d463f6b?monitor=true&api-version=2017-06-01']
- pragma: [no-cache]
- server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [storage account create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 storagemanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/93464cc4-fedf-4cca-bcc7-64d13d463f6b?monitor=true&api-version=2017-06-01
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002","kind":"Storage","location":"westcentralus","name":"clitestnw000002","properties":{"creationTime":"2017-09-19T15:32:16.6791602Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://clitestnw000002.blob.core.windows.net/","file":"https://clitestnw000002.file.core.windows.net/","queue":"https://clitestnw000002.queue.core.windows.net/","table":"https://clitestnw000002.table.core.windows.net/"},"primaryLocation":"westcentralus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
-
- '}
- headers:
- cache-control: [no-cache]
- content-length: ['978']
- content-type: [application/json]
- date: ['Tue, 19 Sep 2017 15:32:33 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [storage account keys list]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 storagemanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002/listKeys?api-version=2017-06-01
- response:
- body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"h/z8vhosIyU4DWJuJjK0ei204YMA4sQ2UucNr9QNNdPf354XY5M1JPlMFqXFoH2C9BY74rwo27I5kMm/HEhi0g=="},{"keyName":"key2","permissions":"Full","value":"gFMtTNhRJal6QB1/9dG3aRauCCZb2XvySLcwBFMakFLf9l3uZqbMYqqknyHAiY/e2IVVVlxIYvKCFBqnVKuuxQ=="}]}
-
- '}
- headers:
- cache-control: [no-cache]
- content-length: ['289']
- content-type: [application/json]
- date: ['Tue, 19 Sep 2017 15:32:35 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nw397590\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590\"\
- ,\r\n \"etag\": \"W/\\\"8ddecce8-9d72-4696-ad9f-7365d1490801\\\"\",\r\
- \n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\"\
- : \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\
- \r\n },\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n \
- \ }\r\n ]\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['527']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32: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]
- status: {code: 200, message: OK}
-- request:
- body: '{"location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Length: ['22']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"westus-watcher\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher\"\
- ,\r\n \"etag\": \"W/\\\"eee3d000-151b-4097-b7ba-d55408410d37\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
- \ \"runningOperationIds\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6b9197e-32de-4e81-8135-ff6ababdea87?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['471']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:37 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: '{"location": "westus2"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Length: ['23']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"westus2-watcher\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher\"\
- ,\r\n \"etag\": \"W/\\\"96ecd2c3-77c9-4aad-b72c-444eed2b93cb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
- \ \"runningOperationIds\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/88dda550-edcc-41c5-b11e-f3cb386b1a63?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['474']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:39 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1191']
- status: {code: 201, message: Created}
-- request:
- body: '{"location": "westcentralus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Length: ['29']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"westcentralus-watcher\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher\"\
- ,\r\n \"etag\": \"W/\\\"278c5892-5de7-4c9c-b269-f5708a1ea79d\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\
- \ \"runningOperationIds\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/52a8cdde-ed4a-48fd-ae6a-b6b22efe5e5e?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['492']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:40 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1167']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"eee3d000-151b-4097-b7ba-d55408410d37\"","type":"Microsoft.Network/networkWatchers","location":"westus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"278c5892-5de7-4c9c-b269-f5708a1ea79d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westus2-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher","etag":"W/\"96ecd2c3-77c9-4aad-b72c-444eed2b93cb\"","type":"Microsoft.Network/networkWatchers","location":"westus2","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1682']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:40 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [41eefe0a-c4f7-4ee9-98ed-e9d8da5731ad, 9e00e1d2-6aa2-4fae-af06-9c8d09289a85,
- 777dd0ca-5a69-4576-aa38-c36033761bdd, 028d3f9d-ed06-441c-87da-acc3ee9e0632]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"eee3d000-151b-4097-b7ba-d55408410d37\"","type":"Microsoft.Network/networkWatchers","location":"westus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"278c5892-5de7-4c9c-b269-f5708a1ea79d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westus2-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher","etag":"W/\"96ecd2c3-77c9-4aad-b72c-444eed2b93cb\"","type":"Microsoft.Network/networkWatchers","location":"westus2","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1682']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:40 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [d84569b0-ec72-448b-92d1-257edf2e7723, 41907a25-1128-4623-afbf-fc8bdcea7a0e,
- d2554598-2932-4360-ab16-6fde18e5f1cf, 00b6dc0d-ed1d-4058-b0fd-d9c21e4eca56]
- status: {code: 200, message: OK}
-- request:
- body: '{"tags": {"foo": "doo"}, "location": "westus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Length: ['46']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"westus-watcher\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher\"\
- ,\r\n \"etag\": \"W/\\\"d2f73e94-c2e3-40b7-857b-e268d604255e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\"\
- ,\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": {\r\
- \n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\"\
- : []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/10fd9f77-2ca5-4c1a-bda5-759119100a6f?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['508']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:41 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-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: '{"tags": {"foo": "doo"}, "location": "westus2"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Length: ['47']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"westus2-watcher\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher\"\
- ,\r\n \"etag\": \"W/\\\"8c9c2536-c6ff-427c-ae49-9ab0635db2eb\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\"\
- ,\r\n \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": {\r\
- \n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\"\
- : []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/580cc5f7-2e00-4167-8961-d81d2dfe36c9?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['511']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32: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-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"278c5892-5de7-4c9c-b269-f5708a1ea79d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westus2-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher","etag":"W/\"8c9c2536-c6ff-427c-ae49-9ab0635db2eb\"","type":"Microsoft.Network/networkWatchers","location":"westus2","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1724']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:43 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [5ec60630-0376-458a-bb4a-95b6d608ae78, a8c20c7f-0d91-4075-94c7-ad8ace03b174,
- 33b39d17-9891-4838-b768-16354a662d7b, b8efc4c5-2aa7-4a69-9bc1-8946c3792b51]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"278c5892-5de7-4c9c-b269-f5708a1ea79d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westus2-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher","etag":"W/\"8c9c2536-c6ff-427c-ae49-9ab0635db2eb\"","type":"Microsoft.Network/networkWatchers","location":"westus2","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1724']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:44 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [bd96391b-b6c4-4728-a113-ef9e5479a10b, 99bdeaeb-2164-4859-b08e-75323b404f6e,
- c3d60416-8739-49af-bf60-54545f017f4e, e4cfb3cd-9b21-4dd8-a699-3a1e9e550a08]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus2-watcher?api-version=2017-09-01
- response:
- body: {string: ''}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/13a12ea5-3a5d-499e-8737-baca9335f1f5?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:32:44 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/13a12ea5-3a5d-499e-8737-baca9335f1f5?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/13a12ea5-3a5d-499e-8737-baca9335f1f5?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"278c5892-5de7-4c9c-b269-f5708a1ea79d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:56 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [dd64a9df-8e79-4cb1-a834-f527399f41ef, 790a9b94-5576-4a05-b744-2a2378bbde89,
- 6c7ef066-576a-4eae-8a37-d63aff160e8e]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"278c5892-5de7-4c9c-b269-f5708a1ea79d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:56 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [2dcec8cc-3575-4577-9f6d-7300f1427dc8, 6bb7e56e-fa19-4b23-9b66-7bf8e7375cf3,
- 05a5ffc1-1d75-4803-8da7-fb3c9c70f08c]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [storage container create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 storagemanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2017-06-01
- response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8582/providers/Microsoft.Storage/storageAccounts/stg1340","kind":"Storage","location":"eastus","name":"stg1340","properties":{"creationTime":"2017-09-18T06:57:40.2215524Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg1340.blob.core.windows.net/","file":"https://stg1340.file.core.windows.net/","queue":"https://stg1340.queue.core.windows.net/","table":"https://stg1340.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5013/providers/Microsoft.Storage/storageAccounts/stg1820","kind":"Storage","location":"eastus","name":"stg1820","properties":{"creationTime":"2017-09-19T09:07:22.5323109Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg1820.blob.core.windows.net/","file":"https://stg1820.file.core.windows.net/","queue":"https://stg1820.queue.core.windows.net/","table":"https://stg1820.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Storage/storageAccounts/stg1865","kind":"Storage","location":"eastus","name":"stg1865","properties":{"creationTime":"2017-09-18T06:36:49.8608249Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg1865.blob.core.windows.net/","file":"https://stg1865.file.core.windows.net/","queue":"https://stg1865.queue.core.windows.net/","table":"https://stg1865.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8340/providers/Microsoft.Storage/storageAccounts/stg207","kind":"Storage","location":"eastus","name":"stg207","properties":{"creationTime":"2017-09-19T08:55:19.9653212Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg207.blob.core.windows.net/","file":"https://stg207.file.core.windows.net/","queue":"https://stg207.queue.core.windows.net/","table":"https://stg207.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9115/providers/Microsoft.Storage/storageAccounts/stg2202","kind":"Storage","location":"eastus","name":"stg2202","properties":{"creationTime":"2017-09-17T07:49:43.3767832Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg2202.blob.core.windows.net/","file":"https://stg2202.file.core.windows.net/","queue":"https://stg2202.queue.core.windows.net/","table":"https://stg2202.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Storage/storageAccounts/stg22420","kind":"Storage","location":"eastus","name":"stg22420","properties":{"creationTime":"2017-09-19T09:23:54.6021418Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg22420.blob.core.windows.net/","file":"https://stg22420.file.core.windows.net/","queue":"https://stg22420.queue.core.windows.net/","table":"https://stg22420.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8340/providers/Microsoft.Storage/storageAccounts/stg2651","kind":"Storage","location":"eastus","name":"stg2651","properties":{"creationTime":"2017-09-19T08:55:50.8237999Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg2651.blob.core.windows.net/","file":"https://stg2651.file.core.windows.net/","queue":"https://stg2651.queue.core.windows.net/","table":"https://stg2651.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Storage/storageAccounts/stg27284","kind":"Storage","location":"eastus","name":"stg27284","properties":{"creationTime":"2017-09-18T07:13:31.3309713Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg27284.blob.core.windows.net/","file":"https://stg27284.file.core.windows.net/","queue":"https://stg27284.queue.core.windows.net/","table":"https://stg27284.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8873/providers/Microsoft.Storage/storageAccounts/stg293","kind":"Storage","location":"eastus","name":"stg293","properties":{"creationTime":"2017-09-18T06:45:20.4867652Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg293.blob.core.windows.net/","file":"https://stg293.file.core.windows.net/","queue":"https://stg293.queue.core.windows.net/","table":"https://stg293.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Storage/storageAccounts/stg3612","kind":"Storage","location":"eastus","name":"stg3612","properties":{"creationTime":"2017-09-19T08:48:41.5491768Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg3612.blob.core.windows.net/","file":"https://stg3612.file.core.windows.net/","queue":"https://stg3612.queue.core.windows.net/","table":"https://stg3612.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7623/providers/Microsoft.Storage/storageAccounts/stg38577","kind":"Storage","location":"eastus","name":"stg38577","properties":{"creationTime":"2017-09-18T06:36:51.1849152Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg38577.blob.core.windows.net/","file":"https://stg38577.file.core.windows.net/","queue":"https://stg38577.queue.core.windows.net/","table":"https://stg38577.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9687/providers/Microsoft.Storage/storageAccounts/stg5166","kind":"Storage","location":"eastus","name":"stg5166","properties":{"creationTime":"2017-09-19T08:48:40.9490913Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg5166.blob.core.windows.net/","file":"https://stg5166.file.core.windows.net/","queue":"https://stg5166.queue.core.windows.net/","table":"https://stg5166.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5013/providers/Microsoft.Storage/storageAccounts/stg5993","kind":"Storage","location":"eastus","name":"stg5993","properties":{"creationTime":"2017-09-19T09:07:53.3502917Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg5993.blob.core.windows.net/","file":"https://stg5993.file.core.windows.net/","queue":"https://stg5993.queue.core.windows.net/","table":"https://stg5993.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8873/providers/Microsoft.Storage/storageAccounts/stg6335","kind":"Storage","location":"eastus","name":"stg6335","properties":{"creationTime":"2017-09-18T06:44:15.7904200Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg6335.blob.core.windows.net/","file":"https://stg6335.file.core.windows.net/","queue":"https://stg6335.queue.core.windows.net/","table":"https://stg6335.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg588/providers/Microsoft.Storage/storageAccounts/stg6847","kind":"Storage","location":"eastus","name":"stg6847","properties":{"creationTime":"2017-09-19T09:23:53.9470749Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg6847.blob.core.windows.net/","file":"https://stg6847.file.core.windows.net/","queue":"https://stg6847.queue.core.windows.net/","table":"https://stg6847.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7925/providers/Microsoft.Storage/storageAccounts/stg7126","kind":"Storage","location":"eastus","name":"stg7126","properties":{"creationTime":"2017-09-18T07:13:30.0188574Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg7126.blob.core.windows.net/","file":"https://stg7126.file.core.windows.net/","queue":"https://stg7126.queue.core.windows.net/","table":"https://stg7126.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8582/providers/Microsoft.Storage/storageAccounts/stg9104","kind":"Storage","location":"eastus","name":"stg9104","properties":{"creationTime":"2017-09-18T06:56:34.3854695Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg9104.blob.core.windows.net/","file":"https://stg9104.file.core.windows.net/","queue":"https://stg9104.queue.core.windows.net/","table":"https://stg9104.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg983/providers/Microsoft.Storage/storageAccounts/stg9460","kind":"Storage","location":"eastus","name":"stg9460","properties":{"creationTime":"2017-09-17T07:49:07.6818577Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stg9460.blob.core.windows.net/","file":"https://stg9460.file.core.windows.net/","queue":"https://stg9460.queue.core.windows.net/","table":"https://stg9460.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-4700/providers/Microsoft.Storage/storageAccounts/stga6d04255919","kind":"Storage","location":"eastus","name":"stga6d04255919","properties":{"creationTime":"2017-09-17T10:10:35.5914139Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stga6d04255919.blob.core.windows.net/","file":"https://stga6d04255919.file.core.windows.net/","queue":"https://stga6d04255919.queue.core.windows.net/","table":"https://stga6d04255919.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgvm08165226729219d/providers/Microsoft.Storage/storageAccounts/stgbc9915671bed","kind":"Storage","location":"eastus","name":"stgbc9915671bed","properties":{"creationTime":"2017-09-19T11:56:26.8574029Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbc9915671bed.blob.core.windows.net/","file":"https://stgbc9915671bed.file.core.windows.net/","queue":"https://stgbc9915671bed.queue.core.windows.net/","table":"https://stgbc9915671bed.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3029/providers/Microsoft.Storage/storageAccounts/stgbnc113","kind":"Storage","location":"eastus","name":"stgbnc113","properties":{"creationTime":"2017-09-18T12:18:49.3338153Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc113.blob.core.windows.net/","file":"https://stgbnc113.file.core.windows.net/","queue":"https://stgbnc113.queue.core.windows.net/","table":"https://stgbnc113.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Storage/storageAccounts/stgbnc2167","kind":"Storage","location":"eastus","name":"stgbnc2167","properties":{"creationTime":"2017-09-18T12:08:53.9474079Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc2167.blob.core.windows.net/","file":"https://stgbnc2167.file.core.windows.net/","queue":"https://stgbnc2167.queue.core.windows.net/","table":"https://stgbnc2167.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4018/providers/Microsoft.Storage/storageAccounts/stgbnc2940","kind":"Storage","location":"eastus","name":"stgbnc2940","properties":{"creationTime":"2017-09-17T07:46:32.2507463Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc2940.blob.core.windows.net/","file":"https://stgbnc2940.file.core.windows.net/","queue":"https://stgbnc2940.queue.core.windows.net/","table":"https://stgbnc2940.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Storage/storageAccounts/stgbnc3443","kind":"Storage","location":"eastus","name":"stgbnc3443","properties":{"creationTime":"2017-09-17T07:36:00.0543104Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc3443.blob.core.windows.net/","file":"https://stgbnc3443.file.core.windows.net/","queue":"https://stgbnc3443.queue.core.windows.net/","table":"https://stgbnc3443.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8703/providers/Microsoft.Storage/storageAccounts/stgbnc413","kind":"Storage","location":"eastus","name":"stgbnc413","properties":{"creationTime":"2017-09-17T07:43:20.6107431Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc413.blob.core.windows.net/","file":"https://stgbnc413.file.core.windows.net/","queue":"https://stgbnc413.queue.core.windows.net/","table":"https://stgbnc413.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Storage/storageAccounts/stgbnc443","kind":"Storage","location":"eastus","name":"stgbnc443","properties":{"creationTime":"2017-09-18T12:00:00.6933608Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc443.blob.core.windows.net/","file":"https://stgbnc443.file.core.windows.net/","queue":"https://stgbnc443.queue.core.windows.net/","table":"https://stgbnc443.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest9183/providers/Microsoft.Storage/storageAccounts/stgbnc5267","kind":"Storage","location":"eastus","name":"stgbnc5267","properties":{"creationTime":"2017-09-18T12:15:41.3715831Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc5267.blob.core.windows.net/","file":"https://stgbnc5267.file.core.windows.net/","queue":"https://stgbnc5267.queue.core.windows.net/","table":"https://stgbnc5267.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8442/providers/Microsoft.Storage/storageAccounts/stgbnc5565","kind":"Storage","location":"eastus","name":"stgbnc5565","properties":{"creationTime":"2017-09-19T05:09:13.5323835Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc5565.blob.core.windows.net/","file":"https://stgbnc5565.file.core.windows.net/","queue":"https://stgbnc5565.queue.core.windows.net/","table":"https://stgbnc5565.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest711/providers/Microsoft.Storage/storageAccounts/stgbnc6175","kind":"Storage","location":"eastus","name":"stgbnc6175","properties":{"creationTime":"2017-09-19T04:51:15.7687427Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc6175.blob.core.windows.net/","file":"https://stgbnc6175.file.core.windows.net/","queue":"https://stgbnc6175.queue.core.windows.net/","table":"https://stgbnc6175.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5759/providers/Microsoft.Storage/storageAccounts/stgbnc6498","kind":"Storage","location":"eastus","name":"stgbnc6498","properties":{"creationTime":"2017-09-19T05:02:54.9810316Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc6498.blob.core.windows.net/","file":"https://stgbnc6498.file.core.windows.net/","queue":"https://stgbnc6498.queue.core.windows.net/","table":"https://stgbnc6498.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Storage/storageAccounts/stgbnc6807","kind":"Storage","location":"eastus","name":"stgbnc6807","properties":{"creationTime":"2017-09-17T07:26:37.8856143Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc6807.blob.core.windows.net/","file":"https://stgbnc6807.file.core.windows.net/","queue":"https://stgbnc6807.queue.core.windows.net/","table":"https://stgbnc6807.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest1448/providers/Microsoft.Storage/storageAccounts/stgbnc8957","kind":"Storage","location":"eastus","name":"stgbnc8957","properties":{"creationTime":"2017-09-19T05:12:35.9210959Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgbnc8957.blob.core.windows.net/","file":"https://stgbnc8957.file.core.windows.net/","queue":"https://stgbnc8957.queue.core.windows.net/","table":"https://stgbnc8957.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-438/providers/Microsoft.Storage/storageAccounts/stgf4a72643fcb","kind":"Storage","location":"eastus","name":"stgf4a72643fcb","properties":{"creationTime":"2017-09-19T11:13:01.5384230Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgf4a72643fcb.blob.core.windows.net/","file":"https://stgf4a72643fcb.file.core.windows.net/","queue":"https://stgf4a72643fcb.queue.core.windows.net/","table":"https://stgf4a72643fcb.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6224/providers/Microsoft.Storage/storageAccounts/stgjavavm00498259bea","kind":"Storage","location":"eastus","name":"stgjavavm00498259bea","properties":{"creationTime":"2017-09-19T05:05:49.3861720Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm00498259bea.blob.core.windows.net/","file":"https://stgjavavm00498259bea.file.core.windows.net/","queue":"https://stgjavavm00498259bea.queue.core.windows.net/","table":"https://stgjavavm00498259bea.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Storage/storageAccounts/stgjavavm1e202271cdd","kind":"Storage","location":"eastus","name":"stgjavavm1e202271cdd","properties":{"creationTime":"2017-09-18T11:54:44.4758872Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm1e202271cdd.blob.core.windows.net/","file":"https://stgjavavm1e202271cdd.file.core.windows.net/","queue":"https://stgjavavm1e202271cdd.queue.core.windows.net/","table":"https://stgjavavm1e202271cdd.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5759/providers/Microsoft.Storage/storageAccounts/stgjavavm36939008fa1","kind":"Storage","location":"eastus","name":"stgjavavm36939008fa1","properties":{"creationTime":"2017-09-19T05:03:13.0649036Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm36939008fa1.blob.core.windows.net/","file":"https://stgjavavm36939008fa1.file.core.windows.net/","queue":"https://stgjavavm36939008fa1.queue.core.windows.net/","table":"https://stgjavavm36939008fa1.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7040/providers/Microsoft.Storage/storageAccounts/stgjavavm39976972a0c","kind":"Storage","location":"eastus","name":"stgjavavm39976972a0c","properties":{"creationTime":"2017-09-18T12:01:05.7136120Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm39976972a0c.blob.core.windows.net/","file":"https://stgjavavm39976972a0c.file.core.windows.net/","queue":"https://stgjavavm39976972a0c.queue.core.windows.net/","table":"https://stgjavavm39976972a0c.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Storage/storageAccounts/stgjavavm39e72092f28","kind":"Storage","location":"eastus","name":"stgjavavm39e72092f28","properties":{"creationTime":"2017-09-17T07:15:09.9021500Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm39e72092f28.blob.core.windows.net/","file":"https://stgjavavm39e72092f28.file.core.windows.net/","queue":"https://stgjavavm39e72092f28.queue.core.windows.net/","table":"https://stgjavavm39e72092f28.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest710/providers/Microsoft.Storage/storageAccounts/stgjavavm3e469063e2f","kind":"Storage","location":"eastus","name":"stgjavavm3e469063e2f","properties":{"creationTime":"2017-09-19T04:58:58.6207413Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm3e469063e2f.blob.core.windows.net/","file":"https://stgjavavm3e469063e2f.file.core.windows.net/","queue":"https://stgjavavm3e469063e2f.queue.core.windows.net/","table":"https://stgjavavm3e469063e2f.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3867/providers/Microsoft.Storage/storageAccounts/stgjavavm46c16759340","kind":"Storage","location":"eastus","name":"stgjavavm46c16759340","properties":{"creationTime":"2017-09-18T12:09:26.5929252Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm46c16759340.blob.core.windows.net/","file":"https://stgjavavm46c16759340.file.core.windows.net/","queue":"https://stgjavavm46c16759340.queue.core.windows.net/","table":"https://stgjavavm46c16759340.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2525/providers/Microsoft.Storage/storageAccounts/stgjavavm47676893378","kind":"Storage","location":"eastus","name":"stgjavavm47676893378","properties":{"creationTime":"2017-09-17T07:40:13.4276239Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm47676893378.blob.core.windows.net/","file":"https://stgjavavm47676893378.file.core.windows.net/","queue":"https://stgjavavm47676893378.queue.core.windows.net/","table":"https://stgjavavm47676893378.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest711/providers/Microsoft.Storage/storageAccounts/stgjavavm4a717867784","kind":"Storage","location":"eastus","name":"stgjavavm4a717867784","properties":{"creationTime":"2017-09-19T04:51:50.5444107Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm4a717867784.blob.core.windows.net/","file":"https://stgjavavm4a717867784.file.core.windows.net/","queue":"https://stgjavavm4a717867784.queue.core.windows.net/","table":"https://stgjavavm4a717867784.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest28/providers/Microsoft.Storage/storageAccounts/stgjavavm4c7744371f4","kind":"Storage","location":"eastus","name":"stgjavavm4c7744371f4","properties":{"creationTime":"2017-09-17T07:36:33.3369632Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm4c7744371f4.blob.core.windows.net/","file":"https://stgjavavm4c7744371f4.file.core.windows.net/","queue":"https://stgjavavm4c7744371f4.queue.core.windows.net/","table":"https://stgjavavm4c7744371f4.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3186/providers/Microsoft.Storage/storageAccounts/stgjavavm4de5302151e","kind":"Storage","location":"eastus","name":"stgjavavm4de5302151e","properties":{"creationTime":"2017-09-17T07:31:22.5666109Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm4de5302151e.blob.core.windows.net/","file":"https://stgjavavm4de5302151e.file.core.windows.net/","queue":"https://stgjavavm4de5302151e.queue.core.windows.net/","table":"https://stgjavavm4de5302151e.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4715/providers/Microsoft.Storage/storageAccounts/stgjavavm54c841265c3","kind":"Storage","location":"eastus","name":"stgjavavm54c841265c3","properties":{"creationTime":"2017-09-18T12:12:36.4198443Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm54c841265c3.blob.core.windows.net/","file":"https://stgjavavm54c841265c3.file.core.windows.net/","queue":"https://stgjavavm54c841265c3.queue.core.windows.net/","table":"https://stgjavavm54c841265c3.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest8982/providers/Microsoft.Storage/storageAccounts/stgjavavm68f57552b39","kind":"Storage","location":"eastus","name":"stgjavavm68f57552b39","properties":{"creationTime":"2017-09-18T11:56:55.2199875Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm68f57552b39.blob.core.windows.net/","file":"https://stgjavavm68f57552b39.file.core.windows.net/","queue":"https://stgjavavm68f57552b39.queue.core.windows.net/","table":"https://stgjavavm68f57552b39.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7600/providers/Microsoft.Storage/storageAccounts/stgjavavm85b86495531","kind":"Storage","location":"eastus","name":"stgjavavm85b86495531","properties":{"creationTime":"2017-09-17T07:27:42.6222024Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavm85b86495531.blob.core.windows.net/","file":"https://stgjavavm85b86495531.file.core.windows.net/","queue":"https://stgjavavm85b86495531.queue.core.windows.net/","table":"https://stgjavavm85b86495531.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6939/providers/Microsoft.Storage/storageAccounts/stgjavavma8214524b14","kind":"Storage","location":"eastus","name":"stgjavavma8214524b14","properties":{"creationTime":"2017-09-17T07:20:54.4724331Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavma8214524b14.blob.core.windows.net/","file":"https://stgjavavma8214524b14.file.core.windows.net/","queue":"https://stgjavavma8214524b14.queue.core.windows.net/","table":"https://stgjavavma8214524b14.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest120/providers/Microsoft.Storage/storageAccounts/stgjavavmcc864804d3e","kind":"Storage","location":"eastus","name":"stgjavavmcc864804d3e","properties":{"creationTime":"2017-09-18T11:49:33.4158647Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavmcc864804d3e.blob.core.windows.net/","file":"https://stgjavavmcc864804d3e.file.core.windows.net/","queue":"https://stgjavavmcc864804d3e.queue.core.windows.net/","table":"https://stgjavavmcc864804d3e.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5333/providers/Microsoft.Storage/storageAccounts/stgjavavmd8445442428","kind":"Storage","location":"eastus","name":"stgjavavmd8445442428","properties":{"creationTime":"2017-09-17T07:23:02.0616101Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavmd8445442428.blob.core.windows.net/","file":"https://stgjavavmd8445442428.file.core.windows.net/","queue":"https://stgjavavmd8445442428.queue.core.windows.net/","table":"https://stgjavavmd8445442428.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest288/providers/Microsoft.Storage/storageAccounts/stgjavavmebb29712e18","kind":"Storage","location":"eastus","name":"stgjavavmebb29712e18","properties":{"creationTime":"2017-09-19T04:41:37.6887662Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavmebb29712e18.blob.core.windows.net/","file":"https://stgjavavmebb29712e18.file.core.windows.net/","queue":"https://stgjavavmebb29712e18.queue.core.windows.net/","table":"https://stgjavavmebb29712e18.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3563/providers/Microsoft.Storage/storageAccounts/stgjavavmf2f094936c8","kind":"Storage","location":"eastus","name":"stgjavavmf2f094936c8","properties":{"creationTime":"2017-09-18T12:04:15.8172949Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavmf2f094936c8.blob.core.windows.net/","file":"https://stgjavavmf2f094936c8.file.core.windows.net/","queue":"https://stgjavavmf2f094936c8.queue.core.windows.net/","table":"https://stgjavavmf2f094936c8.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4440/providers/Microsoft.Storage/storageAccounts/stgjavavmf9f12358a74","kind":"Storage","location":"eastus","name":"stgjavavmf9f12358a74","properties":{"creationTime":"2017-09-19T04:48:19.5100612Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavmf9f12358a74.blob.core.windows.net/","file":"https://stgjavavmf9f12358a74.file.core.windows.net/","queue":"https://stgjavavmf9f12358a74.queue.core.windows.net/","table":"https://stgjavavmf9f12358a74.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest288/providers/Microsoft.Storage/storageAccounts/stgjavavmfa68863860c","kind":"Storage","location":"eastus","name":"stgjavavmfa68863860c","properties":{"creationTime":"2017-09-19T04:46:42.7353870Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgjavavmfa68863860c.blob.core.windows.net/","file":"https://stgjavavmfa68863860c.file.core.windows.net/","queue":"https://stgjavavmfa68863860c.queue.core.windows.net/","table":"https://stgjavavmfa68863860c.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc9231group/providers/Microsoft.Storage/storageAccounts/stgvm321138451000eb7","kind":"Storage","location":"eastus","name":"stgvm321138451000eb7","properties":{"creationTime":"2017-09-19T09:51:36.1677811Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgvm321138451000eb7.blob.core.windows.net/","file":"https://stgvm321138451000eb7.file.core.windows.net/","queue":"https://stgvm321138451000eb7.queue.core.windows.net/","table":"https://stgvm321138451000eb7.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc7672group/providers/Microsoft.Storage/storageAccounts/stgvm352199f91294c22","kind":"Storage","location":"eastus","name":"stgvm352199f91294c22","properties":{"creationTime":"2017-09-18T14:36:34.8545753Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgvm352199f91294c22.blob.core.windows.net/","file":"https://stgvm352199f91294c22.file.core.windows.net/","queue":"https://stgvm352199f91294c22.queue.core.windows.net/","table":"https://stgvm352199f91294c22.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc4152group/providers/Microsoft.Storage/storageAccounts/stgvm987709327629bbd","kind":"Storage","location":"eastus","name":"stgvm987709327629bbd","properties":{"creationTime":"2017-09-17T04:52:54.1528888Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://stgvm987709327629bbd.blob.core.windows.net/","file":"https://stgvm987709327629bbd.file.core.windows.net/","queue":"https://stgvm987709327629bbd.queue.core.windows.net/","table":"https://stgvm987709327629bbd.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","secondaryLocation":"westus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/williexu/providers/Microsoft.Storage/storageAccounts/williexudiag473","kind":"Storage","location":"eastus","name":"williexudiag473","properties":{"creationTime":"2017-09-18T07:15:47.8094925Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://williexudiag473.blob.core.windows.net/","file":"https://williexudiag473.file.core.windows.net/","queue":"https://williexudiag473.queue.core.windows.net/","table":"https://williexudiag473.table.core.windows.net/"},"primaryLocation":"eastus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5975/providers/Microsoft.Storage/storageAccounts/stg1898","kind":"Storage","location":"eastus2","name":"stg1898","properties":{"creationTime":"2017-09-19T08:18:50.2242465Z","primaryEndpoints":{"blob":"https://stg1898.blob.core.windows.net/","file":"https://stg1898.file.core.windows.net/","queue":"https://stg1898.queue.core.windows.net/","table":"https://stg1898.table.core.windows.net/"},"primaryLocation":"eastus2","provisioningState":"Succeeded","secondaryLocation":"centralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5713/providers/Microsoft.Storage/storageAccounts/stg3859","kind":"Storage","location":"eastus2","name":"stg3859","properties":{"creationTime":"2017-09-18T12:22:28.6945615Z","primaryEndpoints":{"blob":"https://stg3859.blob.core.windows.net/","file":"https://stg3859.file.core.windows.net/","queue":"https://stg3859.queue.core.windows.net/","table":"https://stg3859.table.core.windows.net/"},"primaryLocation":"eastus2","provisioningState":"Succeeded","secondaryLocation":"centralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1480/providers/Microsoft.Storage/storageAccounts/stg5310","kind":"Storage","location":"eastus2","name":"stg5310","properties":{"creationTime":"2017-09-16T17:10:58.0493320Z","primaryEndpoints":{"blob":"https://stg5310.blob.core.windows.net/","file":"https://stg5310.file.core.windows.net/","queue":"https://stg5310.queue.core.windows.net/","table":"https://stg5310.table.core.windows.net/"},"primaryLocation":"eastus2","provisioningState":"Succeeded","secondaryLocation":"centralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4331/providers/Microsoft.Storage/storageAccounts/stg7005","kind":"Storage","location":"eastus2","name":"stg7005","properties":{"creationTime":"2017-09-17T07:53:39.0505315Z","primaryEndpoints":{"blob":"https://stg7005.blob.core.windows.net/","file":"https://stg7005.file.core.windows.net/","queue":"https://stg7005.queue.core.windows.net/","table":"https://stg7005.table.core.windows.net/"},"primaryLocation":"eastus2","provisioningState":"Succeeded","secondaryLocation":"centralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281","kind":"Storage","location":"westus","name":"acliautomationlab2281","properties":{"creationTime":"2017-07-07T16:46:33.7491660Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://acliautomationlab2281.blob.core.windows.net/","file":"https://acliautomationlab2281.file.core.windows.net/","queue":"https://acliautomationlab2281.queue.core.windows.net/","table":"https://acliautomationlab2281.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987","kind":"Storage","location":"westus","name":"acliautomationlab2987","properties":{"creationTime":"2017-07-07T16:48:01.7641299Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://acliautomationlab2987.blob.core.windows.net/","file":"https://acliautomationlab2987.file.core.windows.net/","queue":"https://acliautomationlab2987.queue.core.windows.net/","table":"https://acliautomationlab2987.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7085/providers/Microsoft.Storage/storageAccounts/javast1398","kind":"Storage","location":"westus","name":"javast1398","properties":{"creationTime":"2017-09-18T16:51:19.4071467Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://javast1398.blob.core.windows.net/","file":"https://javast1398.file.core.windows.net/","queue":"https://javast1398.queue.core.windows.net/","table":"https://javast1398.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg311/providers/Microsoft.Storage/storageAccounts/javast3130","kind":"Storage","location":"westus","name":"javast3130","properties":{"creationTime":"2017-09-17T04:48:19.1750734Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://javast3130.blob.core.windows.net/","file":"https://javast3130.file.core.windows.net/","queue":"https://javast3130.queue.core.windows.net/","table":"https://javast3130.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg49/providers/Microsoft.Storage/storageAccounts/javast6565","kind":"Storage","location":"westus","name":"javast6565","properties":{"creationTime":"2017-09-16T11:09:04.2043738Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://javast6565.blob.core.windows.net/","file":"https://javast6565.file.core.windows.net/","queue":"https://javast6565.queue.core.windows.net/","table":"https://javast6565.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2576/providers/Microsoft.Storage/storageAccounts/javawebapp138449369","kind":"Storage","location":"westus","name":"javawebapp138449369","properties":{"creationTime":"2017-09-19T07:10:00.5090430Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://javawebapp138449369.blob.core.windows.net/","file":"https://javawebapp138449369.file.core.windows.net/","queue":"https://javawebapp138449369.queue.core.windows.net/","table":"https://javawebapp138449369.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9666/providers/Microsoft.Storage/storageAccounts/javawebapp149177789","kind":"Storage","location":"westus","name":"javawebapp149177789","properties":{"creationTime":"2017-09-18T16:49:40.4283764Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://javawebapp149177789.blob.core.windows.net/","file":"https://javawebapp149177789.file.core.windows.net/","queue":"https://javawebapp149177789.queue.core.windows.net/","table":"https://javawebapp149177789.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6728/providers/Microsoft.Storage/storageAccounts/javawebapp52289887","kind":"Storage","location":"westus","name":"javawebapp52289887","properties":{"creationTime":"2017-09-17T04:46:43.8161492Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://javawebapp52289887.blob.core.windows.net/","file":"https://javawebapp52289887.file.core.windows.net/","queue":"https://javawebapp52289887.queue.core.windows.net/","table":"https://javawebapp52289887.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8428/providers/Microsoft.Storage/storageAccounts/javawebapp73668022","kind":"Storage","location":"westus","name":"javawebapp73668022","properties":{"creationTime":"2017-09-16T11:07:26.2515107Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://javawebapp73668022.blob.core.windows.net/","file":"https://javawebapp73668022.file.core.windows.net/","queue":"https://javawebapp73668022.queue.core.windows.net/","table":"https://javawebapp73668022.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Storage/storageAccounts/sdkteststor","kind":"Storage","location":"westus","name":"sdkteststor","properties":{"creationTime":"2017-05-21T04:29:51.1804697Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://sdkteststor.blob.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Premium_LRS","tier":"Premium"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguneo7ueefii3sywnz7wylndrldyx3evdlpsn6sj4f4zo3bxl3wgjzhudlah6tpxyn/providers/Microsoft.Storage/storageAccounts/vhdstoragebe8dd7fb020232","kind":"Storage","location":"westus","name":"vhdstoragebe8dd7fb020232","properties":{"creationTime":"2017-09-18T23:01:21.6544117Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://vhdstoragebe8dd7fb020232.blob.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Premium_LRS","tier":"Premium"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg397590/providers/Microsoft.Storage/storageAccounts/sa397590","kind":"Storage","location":"northcentralus","name":"sa397590","properties":{"creationTime":"2017-09-19T09:27:15.2202276Z","primaryEndpoints":{"blob":"https://sa397590.blob.core.windows.net/","file":"https://sa397590.file.core.windows.net/","queue":"https://sa397590.queue.core.windows.net/","table":"https://sa397590.table.core.windows.net/"},"primaryLocation":"northcentralus","provisioningState":"Succeeded","secondaryLocation":"southcentralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-614/providers/Microsoft.Storage/storageAccounts/stg1493","kind":"Storage","location":"southcentralus","name":"stg1493","properties":{"creationTime":"2017-09-19T10:15:26.2174633Z","primaryEndpoints":{"blob":"https://stg1493.blob.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Premium_LRS","tier":"Premium"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Storage/storageAccounts/stg3894","kind":"Storage","location":"southcentralus","name":"stg3894","properties":{"creationTime":"2017-09-18T15:31:09.3336242Z","primaryEndpoints":{"blob":"https://stg3894.blob.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Premium_LRS","tier":"Premium"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Storage/storageAccounts/stg9556","kind":"Storage","location":"southcentralus","name":"stg9556","properties":{"creationTime":"2017-09-17T05:47:01.4578288Z","primaryEndpoints":{"blob":"https://stg9556.blob.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Premium_LRS","tier":"Premium"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Storage/storageAccounts/stgchashvm33074382acb","kind":"Storage","location":"southcentralus","name":"stgchashvm33074382acb","properties":{"creationTime":"2017-09-17T05:48:15.5245141Z","primaryEndpoints":{"blob":"https://stgchashvm33074382acb.blob.core.windows.net/","file":"https://stgchashvm33074382acb.file.core.windows.net/","queue":"https://stgchashvm33074382acb.queue.core.windows.net/","table":"https://stgchashvm33074382acb.table.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","secondaryLocation":"northcentralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-614/providers/Microsoft.Storage/storageAccounts/stgchashvm38932464d50","kind":"Storage","location":"southcentralus","name":"stgchashvm38932464d50","properties":{"creationTime":"2017-09-19T10:21:02.5843730Z","primaryEndpoints":{"blob":"https://stgchashvm38932464d50.blob.core.windows.net/","file":"https://stgchashvm38932464d50.file.core.windows.net/","queue":"https://stgchashvm38932464d50.queue.core.windows.net/","table":"https://stgchashvm38932464d50.table.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","secondaryLocation":"northcentralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Storage/storageAccounts/stgchashvm6d771101869","kind":"Storage","location":"southcentralus","name":"stgchashvm6d771101869","properties":{"creationTime":"2017-09-18T15:37:19.4921965Z","primaryEndpoints":{"blob":"https://stgchashvm6d771101869.blob.core.windows.net/","file":"https://stgchashvm6d771101869.file.core.windows.net/","queue":"https://stgchashvm6d771101869.queue.core.windows.net/","table":"https://stgchashvm6d771101869.table.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","secondaryLocation":"northcentralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-2351/providers/Microsoft.Storage/storageAccounts/stgchashvm87c16387480","kind":"Storage","location":"southcentralus","name":"stgchashvm87c16387480","properties":{"creationTime":"2017-09-17T05:54:24.0130880Z","primaryEndpoints":{"blob":"https://stgchashvm87c16387480.blob.core.windows.net/","file":"https://stgchashvm87c16387480.file.core.windows.net/","queue":"https://stgchashvm87c16387480.queue.core.windows.net/","table":"https://stgchashvm87c16387480.table.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","secondaryLocation":"northcentralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-614/providers/Microsoft.Storage/storageAccounts/stgchashvm93b08950d03","kind":"Storage","location":"southcentralus","name":"stgchashvm93b08950d03","properties":{"creationTime":"2017-09-19T10:15:58.3901194Z","primaryEndpoints":{"blob":"https://stgchashvm93b08950d03.blob.core.windows.net/","file":"https://stgchashvm93b08950d03.file.core.windows.net/","queue":"https://stgchashvm93b08950d03.queue.core.windows.net/","table":"https://stgchashvm93b08950d03.table.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","secondaryLocation":"northcentralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-6089/providers/Microsoft.Storage/storageAccounts/stgchashvm9b813158197","kind":"Storage","location":"southcentralus","name":"stgchashvm9b813158197","properties":{"creationTime":"2017-09-18T15:32:12.2314793Z","primaryEndpoints":{"blob":"https://stgchashvm9b813158197.blob.core.windows.net/","file":"https://stgchashvm9b813158197.file.core.windows.net/","queue":"https://stgchashvm9b813158197.queue.core.windows.net/","table":"https://stgchashvm9b813158197.table.core.windows.net/"},"primaryLocation":"southcentralus","provisioningState":"Succeeded","secondaryLocation":"northcentralus","statusOfPrimary":"available","statusOfSecondary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002","kind":"Storage","location":"westcentralus","name":"clitestnw000002","properties":{"creationTime":"2017-09-19T15:32:16.6791602Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://clitestnw000002.blob.core.windows.net/","file":"https://clitestnw000002.file.core.windows.net/","queue":"https://clitestnw000002.queue.core.windows.net/","table":"https://clitestnw000002.table.core.windows.net/"},"primaryLocation":"westcentralus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['73520']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:57 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [9735c2b1-def6-47ba-a714-5d10c618ecd9, 9735c2b1-def6-47ba-a714-5d10c618ecd9,
- 9735c2b1-def6-47ba-a714-5d10c618ecd9, 9735c2b1-def6-47ba-a714-5d10c618ecd9,
- 9735c2b1-def6-47ba-a714-5d10c618ecd9, 9735c2b1-def6-47ba-a714-5d10c618ecd9]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [storage container create]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 storagemanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002/listKeys?api-version=2017-06-01
- response:
- body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"h/z8vhosIyU4DWJuJjK0ei204YMA4sQ2UucNr9QNNdPf354XY5M1JPlMFqXFoH2C9BY74rwo27I5kMm/HEhi0g=="},{"keyName":"key2","permissions":"Full","value":"gFMtTNhRJal6QB1/9dG3aRauCCZb2XvySLcwBFMakFLf9l3uZqbMYqqknyHAiY/e2IVVVlxIYvKCFBqnVKuuxQ=="}]}
-
- '}
- headers:
- cache-control: [no-cache]
- content-length: ['289']
- content-type: [application/json]
- date: ['Tue, 19 Sep 2017 15:32:57 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Connection: [keep-alive]
- Content-Length: ['0']
- User-Agent: [Azure-Storage/0.36.0 (Python CPython 3.5.3; Windows 10) AZURECLI/2.0.16+dev]
- x-ms-date: ['Tue, 19 Sep 2017 15:32:58 GMT']
- x-ms-version: ['2017-04-17']
- method: PUT
- uri: https://clitestnw000002.blob.core.windows.net/troubleshooting?restype=container
- response:
- body: {string: ''}
- headers:
- date: ['Tue, 19 Sep 2017 15:32:58 GMT']
- etag: ['"0x8D4FF73B4F4F21B"']
- last-modified: ['Tue, 19 Sep 2017 15:32:58 GMT']
- server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
- transfer-encoding: [chunked]
- x-ms-version: ['2017-04-17']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [storage account show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 storagemanagementclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002?api-version=2017-06-01
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002","kind":"Storage","location":"westcentralus","name":"clitestnw000002","properties":{"creationTime":"2017-09-19T15:32:16.6791602Z","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow","ipRules":[],"virtualNetworkRules":[]},"primaryEndpoints":{"blob":"https://clitestnw000002.blob.core.windows.net/","file":"https://clitestnw000002.file.core.windows.net/","queue":"https://clitestnw000002.queue.core.windows.net/","table":"https://clitestnw000002.table.core.windows.net/"},"primaryLocation":"westcentralus","provisioningState":"Succeeded","statusOfPrimary":"available","supportsHttpsTrafficOnly":false},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
-
- '}
- headers:
- cache-control: [no-cache]
- content-length: ['978']
- content-type: [application/json]
- date: ['Tue, 19 Sep 2017 15:32:58 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001","name":"cli_test_network_watcher000001","location":"westcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['335']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:59 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"subnets": [{"name": "GatewaySubnet", "properties": {"addressPrefix":
- "10.0.0.0/24"}}], "dhcpOptions": {}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}},
- "tags": {}, "location": "westcentralus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Length: ['218']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"3d33e6fa-1961-4e95-b59f-ece96f4ebc86\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"13225eef-63ab-457c-a7da-efe62aae470f\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
- 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"3d33e6fa-1961-4e95-b59f-ece96f4ebc86\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
- \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
- : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6b03d38d-cf03-4362-99a8-53a8613786fc?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['1249']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:32:59 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1190']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6b03d38d-cf03-4362-99a8-53a8613786fc?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"1f07b67e-1d61-401a-a9e2-9369c90e0d2e\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"13225eef-63ab-457c-a7da-efe62aae470f\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
- 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"1f07b67e-1d61-401a-a9e2-9369c90e0d2e\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
- \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
- : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1251']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:03 GMT']
- etag: [W/"1f07b67e-1d61-401a-a9e2-9369c90e0d2e"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001","name":"cli_test_network_watcher000001","location":"westcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['335']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:03 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"publicIPAddressVersion": "IPv4", "publicIPAllocationMethod":
- "Dynamic", "idleTimeoutInMinutes": 4}, "sku": {"name": "Basic"}, "location":
- "westcentralus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Length: ['171']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1-pip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- ,\r\n \"etag\": \"W/\\\"7a805136-d161-4c88-837f-14c9fe957018\\\"\",\r\n \
- \ \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"resourceGuid\": \"e0098db8-1f82-427d-b84a-88c0ac661028\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b1fa5a16-558f-47b5-953a-c1357232fbcd?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['652']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:04 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b1fa5a16-558f-47b5-953a-c1357232fbcd?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:07 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network public-ip create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1-pip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- ,\r\n \"etag\": \"W/\\\"90ad1058-97e0-4c30-9355-a65b991be04f\\\"\",\r\n \
- \ \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"e0098db8-1f82-427d-b84a-88c0ac661028\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"\
- Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"\
- Basic\"\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['653']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:08 GMT']
- etag: [W/"90ad1058-97e0-4c30-9355-a65b991be04f"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001","name":"cli_test_network_watcher000001","location":"westcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['335']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:08 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"activeActive": false, "ipConfigurations": [{"name":
- "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
- "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip"},
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"}}}],
- "gatewayType": "Vpn", "sku": {"tier": "Basic", "name": "Basic"}, "vpnType":
- "RouteBased"}, "location": "westcentralus"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway create]
- Connection: [keep-alive]
- Content-Length: ['732']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\"\
- : {\r\n \"vpnClientProtocols\": [],\r\n \"vpnClientRootCertificates\"\
- : [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f28a5c1f-8794-4359-a6b3-5d5a7e3d7130?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['1933']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:09 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001","name":"cli_test_network_watcher000001","location":"westcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['335']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:11 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Connection: [close]
- Host: [raw.githubusercontent.com]
- User-Agent: [Python-urllib/3.5]
- method: GET
- uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
- response:
- body: {string: "{\n \"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\"\
- ,\n \"contentVersion\":\"1.0.0.0\",\n \"parameters\":{},\n \"variables\"\
- :{},\n \"resources\":[],\n\n \"outputs\":{\n \"aliases\":{\n \"\
- type\":\"object\",\n \"value\":{\n\n \"Linux\":{\n \"\
- CentOS\":{\n \"publisher\":\"OpenLogic\",\n \"offer\"\
- :\"CentOS\",\n \"sku\":\"7.3\",\n \"version\":\"latest\"\
- \n },\n \"CoreOS\":{\n \"publisher\":\"CoreOS\"\
- ,\n \"offer\":\"CoreOS\",\n \"sku\":\"Stable\",\n \
- \ \"version\":\"latest\"\n },\n \"Debian\":{\n\
- \ \"publisher\":\"credativ\",\n \"offer\":\"Debian\"\
- ,\n \"sku\":\"8\",\n \"version\":\"latest\"\n \
- \ },\n \"openSUSE-Leap\": {\n \"publisher\":\"SUSE\"\
- ,\n \"offer\":\"openSUSE-Leap\",\n \"sku\":\"42.2\"\
- ,\n \"version\": \"latest\"\n },\n \"RHEL\":{\n\
- \ \"publisher\":\"RedHat\",\n \"offer\":\"RHEL\",\n\
- \ \"sku\":\"7.3\",\n \"version\":\"latest\"\n \
- \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \
- \ \"offer\":\"SLES\",\n \"sku\":\"12-SP2\",\n \
- \ \"version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \
- \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\"\
- ,\n \"sku\":\"16.04-LTS\",\n \"version\":\"latest\"\n\
- \ }\n },\n\n \"Windows\":{\n \"Win2016Datacenter\"\
- :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\
- offer\":\"WindowsServer\",\n \"sku\":\"2016-Datacenter\",\n \
- \ \"version\":\"latest\"\n },\n \"Win2012R2Datacenter\"\
- :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\
- offer\":\"WindowsServer\",\n \"sku\":\"2012-R2-Datacenter\",\n\
- \ \"version\":\"latest\"\n },\n \"Win2012Datacenter\"\
- :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\
- offer\":\"WindowsServer\",\n \"sku\":\"2012-Datacenter\",\n \
- \ \"version\":\"latest\"\n },\n \"Win2008R2SP1\"\
- :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\
- offer\":\"WindowsServer\",\n \"sku\":\"2008-R2-SP1\",\n \
- \ \"version\":\"latest\"\n }\n }\n }\n }\n }\n\
- }\n"}
- headers:
- accept-ranges: [bytes]
- access-control-allow-origin: ['*']
- cache-control: [max-age=300]
- connection: [close]
- content-length: ['2235']
- content-security-policy: [default-src 'none'; style-src 'unsafe-inline']
- content-type: [text/plain; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:11 GMT']
- etag: ['"d6824855d13e27c5258a680eb60f635d088fd05e"']
- expires: ['Tue, 19 Sep 2017 15:38:11 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: [2992d20ee2ec809a9ad7fd96ba9fdbb49dca2a03]
- x-frame-options: [deny]
- x-geo-block-list: ['']
- x-github-request-id: ['2A4C:28E1F:35EF8BA:3941C5A:59C138B7']
- x-served-by: [cache-dfw18629-DFW]
- x-timer: ['S1505835192.670925,VS0,VE86']
- 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]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"6bdeae45-cb98-4d03-99f0-41daa499779c\\\"\",\r\
- \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\"\
- : \"13225eef-63ab-457c-a7da-efe62aae470f\",\r\n \"addressSpace\": {\r\
- \n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \
- \ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \
- \ \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- ,\r\n \"etag\": \"W/\\\"6bdeae45-cb98-4d03-99f0-41daa499779c\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\
- \ \"ipConfigurations\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- \r\n }\r\n ]\r\n }\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: ['1767']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33: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]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"parameters": {}, "template": {"resources": [{"name":
- "vm1VNET", "apiVersion": "2015-06-15", "tags": {}, "location": "westcentralus",
- "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
- [{"name": "vm1Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}, "dependsOn":
- [], "type": "Microsoft.Network/virtualNetworks"}, {"name": "vm1NSG", "apiVersion":
- "2015-06-15", "tags": {}, "location": "westcentralus", "properties": {"securityRules":
- [{"name": "default-allow-ssh", "properties": {"destinationAddressPrefix": "*",
- "access": "Allow", "destinationPortRange": "22", "protocol": "Tcp", "direction":
- "Inbound", "sourcePortRange": "*", "sourceAddressPrefix": "*", "priority": 1000}}]},
- "dependsOn": [], "type": "Microsoft.Network/networkSecurityGroups"}, {"name":
- "vm1PublicIP", "apiVersion": "2017-09-01", "tags": {}, "location": "westcentralus",
- "properties": {"publicIPAllocationMethod": "dynamic"}, "dependsOn": [], "type":
- "Microsoft.Network/publicIPAddresses"}, {"name": "vm1VMNic", "apiVersion": "2015-06-15",
- "tags": {}, "location": "westcentralus", "properties": {"networkSecurityGroup":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},
- "ipConfigurations": [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod":
- "Dynamic", "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}}}]},
- "dependsOn": ["Microsoft.Network/virtualNetworks/vm1VNET", "Microsoft.Network/networkSecurityGroups/vm1NSG",
- "Microsoft.Network/publicIpAddresses/vm1PublicIP"], "type": "Microsoft.Network/networkInterfaces"},
- {"name": "vm1", "apiVersion": "2017-03-30", "tags": {}, "location": "westcentralus",
- "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile":
- {"osDisk": {"name": null, "createOption": "fromImage", "managedDisk": {"storageAccountType":
- null}, "caching": null}, "imageReference": {"version": "latest", "offer": "UbuntuServer",
- "sku": "16.04-LTS", "publisher": "Canonical"}}, "osProfile": {"adminUsername":
- "deploy", "computerName": "vm1", "adminPassword": "PassPass10!)"}, "networkProfile":
- {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}},
- "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"], "type": "Microsoft.Compute/virtualMachines"}],
- "outputs": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "variables": {}, "parameters": {}, "contentVersion": "1.0.0.0"}, "mode": "Incremental"}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm create]
- Connection: [keep-alive]
- Content-Length: ['3189']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Resources/deployments/vm_deploy_1BUbl2qkChs3OMt8N0SF6gu3ZcCwDjub","name":"vm_deploy_1BUbl2qkChs3OMt8N0SF6gu3ZcCwDjub","properties":{"templateHash":"8032103570211423606","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T15:33:13.7383838Z","duration":"PT0.604411S","correlationId":"068e76b5-7ee8-4f31-a2f0-1dd163559846","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westcentralus"]},{"resourceType":"networkSecurityGroups","locations":["westcentralus"]},{"resourceType":"publicIPAddresses","locations":["westcentralus"]},{"resourceType":"networkInterfaces","locations":["westcentralus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westcentralus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/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_network_watcher000001/providers/Microsoft.Resources/deployments/vm_deploy_1BUbl2qkChs3OMt8N0SF6gu3ZcCwDjub/operationStatuses/08586957716923436535?api-version=2017-05-10']
- cache-control: [no-cache]
- content-length: ['2735']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:13 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
- 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]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957716923436535?api-version=2017-05-10
- response:
- body: {string: '{"status":"Running"}'}
- headers:
- cache-control: [no-cache]
- content-length: ['20']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:33:44 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- 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]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957716923436535?api-version=2017-05-10
- response:
- body: {string: '{"status":"Running"}'}
- headers:
- cache-control: [no-cache]
- content-length: ['20']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:14 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- 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]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957716923436535?api-version=2017-05-10
- response:
- body: {string: '{"status":"Running"}'}
- headers:
- cache-control: [no-cache]
- content-length: ['20']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:34:45 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- 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]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957716923436535?api-version=2017-05-10
- response:
- body: {string: '{"status":"Succeeded"}'}
- headers:
- cache-control: [no-cache]
- content-length: ['22']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:15 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- 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]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Resources/deployments/vm_deploy_1BUbl2qkChs3OMt8N0SF6gu3ZcCwDjub","name":"vm_deploy_1BUbl2qkChs3OMt8N0SF6gu3ZcCwDjub","properties":{"templateHash":"8032103570211423606","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T15:34:53.0246353Z","duration":"PT1M39.8906625S","correlationId":"068e76b5-7ee8-4f31-a2f0-1dd163559846","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westcentralus"]},{"resourceType":"networkSecurityGroups","locations":["westcentralus"]},{"resourceType":"publicIPAddresses","locations":["westcentralus"]},{"resourceType":"networkInterfaces","locations":["westcentralus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westcentralus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['3803']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:15 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- 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]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\
- : {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.17\",\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\": \"2017-09-19T15:35:16+00:00\"\r\n }\r\n \
- \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"maintenanceRedeployStatus\"\
- : {\r\n \"isCustomerInitiatedMaintenanceAllowed\": false,\r\n \
- \ \"lastOperationResultCode\": \"None\"\r\n },\r\n \"disks\":\
- \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- ,\r\n \"statuses\": [\r\n {\r\n \"code\"\
- : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\
- \n \"displayStatus\": \"Provisioning succeeded\",\r\n \
- \ \"time\": \"2017-09-19T15:33:40.6960235+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\": \"2017-09-19T15:34:46.1117754+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\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['3050']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:16 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]
- 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]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"etag\": \"W/\\\"ca1100c5-2ff7-4209-9623-33ccfb732f56\\\"\",\r\n \
- \ \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"5bfb4f1e-b7ff-4ae3-a38f-7c2fc7bc0f7c\",\r\n \"ipConfigurations\": [\r\
- \n {\r\n \"name\": \"ipconfigvm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- ,\r\n \"etag\": \"W/\\\"ca1100c5-2ff7-4209-9623-33ccfb732f56\\\"\"\
- ,\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_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/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\": \"jopqrds5g0ne3kigwtyicjzpah.yx.internal.cloudapp.net\"\
- \r\n },\r\n \"macAddress\": \"00-0D-3A-F8-90-AE\",\r\n \"enableAcceleratedNetworking\"\
- : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/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_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\
- \n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['2502']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:17 GMT']
- etag: [W/"ca1100c5-2ff7-4209-9623-33ccfb732f56"]
- 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]
- 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]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- ,\r\n \"etag\": \"W/\\\"f2072d7b-bb3d-471a-aff4-4e7156bdd170\\\"\",\r\n \
- \ \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"f8033dde-7777-4ebd-aaa4-d134bb13d5e8\",\r\n \"ipAddress\": \"52.161.14.107\"\
- ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipConfiguration\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/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 }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['985']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:17 GMT']
- etag: [W/"f2072d7b-bb3d-471a-aff4-4e7156bdd170"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\
- : {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.17\",\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\": \"2017-09-19T15:35:16+00:00\"\r\n }\r\n \
- \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"maintenanceRedeployStatus\"\
- : {\r\n \"isCustomerInitiatedMaintenanceAllowed\": false,\r\n \
- \ \"lastOperationResultCode\": \"None\"\r\n },\r\n \"disks\":\
- \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- ,\r\n \"statuses\": [\r\n {\r\n \"code\"\
- : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\
- \n \"displayStatus\": \"Provisioning succeeded\",\r\n \
- \ \"time\": \"2017-09-19T15:33:40.6960235+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\": \"2017-09-19T15:34:46.1117754+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\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['3050']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:17 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers?api-version=2017-03-30
- response:
- body: {string: '!!! The response body has been omitted from the recording because
- it is larger than 128 KB. It will be replaced with blank content of 140361
- bytes while replay. 140361'}
- headers:
- cache-control: [no-cache]
- content-length: ['140361']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.NetworkWatcher/artifacttypes/vmextension/types?api-version=2017-03-30
- response:
- body: {string: "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\"\
- : \"NetworkWatcherAgentLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- NetworkWatcherAgentWindows\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentWindows\"\
- \r\n }\r\n]"}
- headers:
- cache-control: [no-cache]
- content-length: ['611']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.NetworkWatcher/artifacttypes/vmextension/types/NetworkWatcherAgentLinux/versions?api-version=2017-03-30
- response:
- body: {string: "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\"\
- : \"1.4.105.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.105.0\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- 1.4.20.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.20.0\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- 1.4.63.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.63.0\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- 1.4.64.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.64.0\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- 1.4.89.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.89.0\"\
- \r\n }\r\n]"}
- headers:
- cache-control: [no-cache]
- content-length: ['1525']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.NetworkWatcher.Edp/artifacttypes/vmextension/types?api-version=2017-03-30
- response:
- body: {string: "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\"\
- : \"NetworkWatcherAgentLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- NetworkWatcherAgentWindows\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentWindows\"\
- \r\n }\r\n]"}
- headers:
- cache-control: [no-cache]
- content-length: ['619']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.NetworkWatcher.Edp/artifacttypes/vmextension/types/NetworkWatcherAgentLinux/versions?api-version=2017-03-30
- response:
- body: {string: "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\"\
- : \"1.4.267.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.267.0\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- 1.4.268.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.268.0\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- 1.4.269.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.269.0\"\
- \r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"\
- 1.4.270.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp/ArtifactTypes/VMExtension/Types/NetworkWatcherAgentLinux/Versions/1.4.270.0\"\
- \r\n }\r\n]"}
- headers:
- cache-control: [no-cache]
- content-length: ['1243']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35: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]
- status: {code: 200, message: OK}
-- request:
- body: '{"properties": {"typeHandlerVersion": "1.4", "autoUpgradeMinorVersion":
- true, "type": "NetworkWatcherAgentLinux", "publisher": "Microsoft.Azure.NetworkWatcher"},
- "location": "westcentralus"}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Length: ['190']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8172f79d-5106-4e6c-99b1-5af9ecc9c36b?api-version=2017-03-30']
- cache-control: [no-cache]
- content-length: ['599']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:20 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1187']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8172f79d-5106-4e6c-99b1-5af9ecc9c36b?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"startTime\": \"2017-09-19T15:35:20.0379509+00:00\",\r\
- \n \"endTime\": \"2017-09-19T15:35:40.4375507+00:00\",\r\n \"status\": \"\
- Succeeded\",\r\n \"name\": \"8172f79d-5106-4e6c-99b1-5af9ecc9c36b\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['184']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [vm extension set]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['600']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-topology]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001","name":"cli_test_network_watcher000001","location":"westcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['335']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:52 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-topology]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"278c5892-5de7-4c9c-b269-f5708a1ea79d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:53 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [d3fcf694-74db-49d5-af02-a45f2edc0df5, fcd40ee8-2745-4b32-899b-1c3104883025,
- 279dd042-ebe5-476a-8456-58e3df9f7991]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"targetResourceGroupName": "cli_test_network_watcher000001"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-topology]
- Connection: [keep-alive]
- Content-Length: ['106']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/topology?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"id\": \"853a79c5-7dbe-4053-ab8e-58b1a4ac417f\",\r\n \
- \ \"createdDateTime\": \"2017-09-19T15:35:53.1441249Z\",\r\n \"lastModified\"\
- : \"2017-09-19T15:35:39.688456Z\",\r\n \"resources\": [\r\n {\r\n \
- \ \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": [\r\
- \n {\r\n \"name\": \"vm1VMNic\",\r\n \"resourceId\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"associationType\": \"Contains\"\r\n }\r\n ]\r\
- \n },\r\n {\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": [\r\
- \n {\r\n \"name\": \"vm1\",\r\n \"resourceId\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"associationType\": \"Associated\"\r\n },\r\n \
- \ {\r\n \"name\": \"vm1NSG\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"associationType\": \"Associated\"\r\n },\r\n \
- \ {\r\n \"name\": \"vm1Subnet\",\r\n \"resourceId\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\
- ,\r\n \"associationType\": \"Associated\"\r\n },\r\n \
- \ {\r\n \"name\": \"vm1PublicIP\",\r\n \"resourceId\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- ,\r\n \"associationType\": \"Associated\"\r\n }\r\n ]\r\
- \n },\r\n {\r\n \"name\": \"vm1NSG\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": [\r\
- \n {\r\n \"name\": \"default-allow-ssh\",\r\n \"\
- resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\"\
- ,\r\n \"associationType\": \"Contains\"\r\n }\r\n ]\r\
- \n },\r\n {\r\n \"name\": \"default-allow-ssh\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": []\r\
- \n },\r\n {\r\n \"name\": \"vgw1-pip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": []\r\
- \n },\r\n {\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": [\r\
- \n {\r\n \"name\": \"vm1VMNic\",\r\n \"resourceId\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"associationType\": \"Associated\"\r\n }\r\n ]\r\
- \n },\r\n {\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": [\r\
- \n {\r\n \"name\": \"GatewaySubnet\",\r\n \"resourceId\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- ,\r\n \"associationType\": \"Associated\"\r\n }\r\n ]\r\
- \n },\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": [\r\
- \n {\r\n \"name\": \"vm1Subnet\",\r\n \"resourceId\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\
- ,\r\n \"associationType\": \"Contains\"\r\n }\r\n ]\r\
- \n },\r\n {\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": [\r\
- \n {\r\n \"name\": \"GatewaySubnet\",\r\n \"resourceId\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- ,\r\n \"associationType\": \"Contains\"\r\n },\r\n \
- \ {\r\n \"name\": \"vgw1\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"associationType\": \"Contains\"\r\n }\r\n ]\r\
- \n },\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": []\r\
- \n },\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"associations\": []\r\
- \n }\r\n ]\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ac8c955f-308b-4861-8e34-b213a2c0cad1?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['7439']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:52 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/ac8c955f-308b-4861-8e34-b213a2c0cad1?api-version=2017-09-01']
- 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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\"\
- : [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n }\r\n ],\r\n \"\
- type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['2407']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:53 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"278c5892-5de7-4c9c-b269-f5708a1ea79d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:35:54 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [059be5f9-baa7-4b5f-ad69-a40b3231f24b, 1bd49ff9-48c5-43ea-a07b-20513010532a,
- 8948396a-5465-4d9d-bd4b-58357bbcc5e4]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"localIPAddress": "10.0.0.4", "direction": "Inbound", "localPort":
- "22", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1",
- "protocol": "TCP", "remoteIPAddress": "100.1.2.3", "remotePort": "*"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Length: ['357']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/ipFlowVerify?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:14 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/fc928619-207f-4432-866d-738c5c1d35f6?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/fc928619-207f-4432-866d-738c5c1d35f6?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:24 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/fc928619-207f-4432-866d-738c5c1d35f6?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/fc928619-207f-4432-866d-738c5c1d35f6?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"access\": \"Allow\",\r\n \"ruleName\": \"securityRules/default-allow-ssh\"\
- ,\r\n \"ruleId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\"\
- \r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['323']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:35 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/fc928619-207f-4432-866d-738c5c1d35f6?api-version=2017-09-01']
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\"\
- : [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n }\r\n ],\r\n \"\
- type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['2407']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"c6bbe18b-a670-4832-af4d-2dc9d97b760e\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:35 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [aeceef79-fb3f-4fcb-b4da-d6f17532a5af, 9f4d7e04-4107-45e5-a9f9-cd7fa1b02642,
- 8da5574d-2fee-4ab0-bcc8-b1583e47ef8c]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"localIPAddress": "10.0.0.4", "direction": "Outbound", "localPort":
- "*", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1",
- "protocol": "TCP", "remoteIPAddress": "100.1.2.3", "remotePort": "80"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Length: ['358']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/ipFlowVerify?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"access\": \"Allow\",\r\n \"ruleName\": \"defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"ruleId\": \"\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['103']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:36:46 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/e461f82c-3d8c-45f4-aaa6-5875634544a1?api-version=2017-09-01']
- 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-ms-ratelimit-remaining-subscription-writes: ['1192']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-ip-flow]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/e461f82c-3d8c-45f4-aaa6-5875634544a1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"access\": \"Allow\",\r\n \"ruleName\": \"defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"ruleId\": \"\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['103']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:16 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/e461f82c-3d8c-45f4-aaa6-5875634544a1?api-version=2017-09-01']
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-security-group-view]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\"\
- : [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n }\r\n ],\r\n \"\
- type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['2407']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:17 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-security-group-view]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"e75d05e6-713b-4148-b00f-c3b456117c8b\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:17 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [66366762-5817-4746-ac0a-5322e99fbe8f, 33954c13-c0e3-4c2e-a8df-7fdac69779f6,
- 3591a4f0-d27c-43af-afff-d23eab14271b]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-security-group-view]
- Connection: [keep-alive]
- Content-Length: ['214']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/securityGroupView?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"securityRuleAssociations\": {\r\n \"networkInterfaceAssociation\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"securityRules\": [\r\n {\r\n \"name\"\
- : \"default-allow-ssh\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\
- \"\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \
- \ \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \
- \ \"destinationAddressPrefix\": \"*\",\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 1000,\r\n \"\
- direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n\
- \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n \
- \ }\r\n }\r\n ]\r\n },\r\n \"defaultSecurityRules\"\
- : [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \
- \ \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Allow inbound traffic\
- \ from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \
- \ \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n\
- \ \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\"\
- : [],\r\n \"destinationPortRanges\": [],\r\n \"\
- sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Allow inbound traffic\
- \ from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \
- \ \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\
- \n \"destinationAddressPrefix\": \"*\",\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\"\
- : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \
- \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\
- \n },\r\n {\r\n \"name\": \"DenyAllInBound\"\
- ,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
- : \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \
- \ \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\"\
- : \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\"\
- : 65500,\r\n \"direction\": \"Inbound\",\r\n \"\
- sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n\
- \ \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Allow outbound traffic\
- \ from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\"\
- ,\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n\
- \ \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\"\
- : [],\r\n \"destinationPortRanges\": [],\r\n \"\
- sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Allow outbound traffic\
- \ from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \
- \ \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \
- \ \"destinationAddressPrefix\": \"Internet\",\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\"\
- : \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \
- \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\
- \n },\r\n {\r\n \"name\": \"DenyAllOutBound\"\
- ,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
- : \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \
- \ \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\"\
- : \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\"\
- : 65500,\r\n \"direction\": \"Outbound\",\r\n \"\
- sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n\
- \ \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n }\r\n ],\r\n \"effectiveSecurityRules\"\
- : [\r\n {\r\n \"name\": \"DefaultOutboundDenyAll\",\r\n\
- \ \"protocol\": \"All\",\r\n \"sourcePortRange\": \"\
- 0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"0-65535\"\
- \r\n ],\r\n \"sourceAddressPrefix\": \"*\",\r\n \
- \ \"destinationAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\"\
- : [\r\n \"*\"\r\n ],\r\n \"destinationAddressPrefixes\"\
- : [\r\n \"*\"\r\n ],\r\n \"access\": \"\
- Deny\",\r\n \"priority\": 65500,\r\n \"direction\":\
- \ \"Outbound\"\r\n },\r\n {\r\n \"name\": \"\
- DefaultRule_AllowVnetOutBound\",\r\n \"protocol\": \"All\",\r\n\
- \ \"sourcePortRange\": \"0-65535\",\r\n \"destinationPortRange\"\
- : \"0-65535\",\r\n \"sourcePortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"destinationPortRanges\": [\r\n\
- \ \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
- : \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"sourceAddressPrefixes\": [\r\n \"VirtualNetwork\"\
- \r\n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"VirtualNetwork\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
- : [\r\n \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\
- \r\n ],\r\n \"expandedDestinationAddressPrefix\": [\r\
- \n \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n\
- \ ],\r\n \"access\": \"Allow\",\r\n \"priority\"\
- : 65000,\r\n \"direction\": \"Outbound\"\r\n },\r\n \
- \ {\r\n \"name\": \"DefaultRule_AllowInternetOutBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\"\
- ,\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\n \
- \ ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"Internet\"\r\n ],\r\n \"expandedDestinationAddressPrefix\"\
- : [\r\n \"1.0.0.0/8\",\r\n \"2.0.0.0/7\",\r\n \
- \ \"4.0.0.0/6\",\r\n \"8.0.0.0/7\",\r\n \
- \ \"11.0.0.0/8\",\r\n \"12.0.0.0/6\",\r\n \"\
- 16.0.0.0/5\",\r\n \"24.0.0.0/8\",\r\n \"25.25.0.0/16\"\
- ,\r\n \"25.26.0.0/15\",\r\n \"25.132.0.0/14\",\r\
- \n \"25.136.0.0/14\",\r\n \"25.140.0.0/15\",\r\n\
- \ \"25.240.0.0/14\",\r\n \"26.0.0.0/7\",\r\n \
- \ \"28.0.0.0/6\",\r\n \"32.0.0.0/3\",\r\n \
- \ \"64.0.0.0/3\",\r\n \"96.0.0.0/6\",\r\n \"\
- 100.0.0.0/10\",\r\n \"100.128.0.0/9\",\r\n \"101.0.0.0/8\"\
- ,\r\n \"102.0.0.0/7\",\r\n \"104.0.0.0/5\",\r\n\
- \ \"112.0.0.0/5\",\r\n \"120.0.0.0/6\",\r\n \
- \ \"124.0.0.0/7\",\r\n \"126.0.0.0/8\",\r\n \
- \ \"128.0.0.0/3\",\r\n \"160.0.0.0/5\",\r\n \
- \ \"168.0.0.0/8\",\r\n \"169.0.0.0/9\",\r\n \"\
- 169.128.0.0/10\",\r\n \"169.192.0.0/11\",\r\n \"\
- 169.224.0.0/12\",\r\n \"169.240.0.0/13\",\r\n \"\
- 169.248.0.0/14\",\r\n \"169.252.0.0/15\",\r\n \"\
- 169.255.0.0/16\",\r\n \"170.0.0.0/7\",\r\n \"172.0.0.0/12\"\
- ,\r\n \"172.32.0.0/11\",\r\n \"172.64.0.0/10\",\r\
- \n \"172.128.0.0/9\",\r\n \"173.0.0.0/8\",\r\n \
- \ \"174.0.0.0/7\",\r\n \"176.0.0.0/4\",\r\n \
- \ \"192.0.0.0/23\",\r\n \"192.0.3.0/24\",\r\n \
- \ \"192.0.4.0/22\",\r\n \"192.0.8.0/21\",\r\n \
- \ \"192.0.16.0/20\",\r\n \"192.0.32.0/19\",\r\n \
- \ \"192.0.64.0/18\",\r\n \"192.0.128.0/17\",\r\n \
- \ \"192.1.0.0/16\",\r\n \"192.2.0.0/15\",\r\n \
- \ \"192.4.0.0/14\",\r\n \"192.8.0.0/13\",\r\n \
- \ \"192.16.0.0/12\",\r\n \"192.32.0.0/11\",\r\n \
- \ \"192.64.0.0/10\",\r\n \"192.128.0.0/11\",\r\n \
- \ \"192.160.0.0/13\",\r\n \"192.169.0.0/16\",\r\n \
- \ \"192.170.0.0/15\",\r\n \"192.172.0.0/14\",\r\n \
- \ \"192.176.0.0/12\",\r\n \"192.192.0.0/10\",\r\n \
- \ \"193.0.0.0/8\",\r\n \"194.0.0.0/7\",\r\n \
- \ \"196.0.0.0/7\",\r\n \"198.0.0.0/12\",\r\n \
- \ \"198.16.0.0/15\",\r\n \"198.20.0.0/14\",\r\n \
- \ \"198.24.0.0/13\",\r\n \"198.32.0.0/11\",\r\n \
- \ \"198.64.0.0/10\",\r\n \"198.128.0.0/9\",\r\n \
- \ \"199.0.0.0/8\",\r\n \"200.0.0.0/5\",\r\n \"\
- 208.0.0.0/4\"\r\n ],\r\n \"access\": \"Allow\",\r\n\
- \ \"priority\": 65001,\r\n \"direction\": \"Outbound\"\
- \r\n },\r\n {\r\n \"name\": \"DefaultRule_DenyAllOutBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\"\
- ,\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\n \
- \ ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"access\": \"Deny\",\r\
- \n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\
- \r\n },\r\n {\r\n \"name\": \"DefaultInboundDenyAll\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"*\"\
- ,\r\n \"destinationAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\"\
- : [\r\n \"*\"\r\n ],\r\n \"destinationAddressPrefixes\"\
- : [\r\n \"*\"\r\n ],\r\n \"access\": \"\
- Deny\",\r\n \"priority\": 65500,\r\n \"direction\":\
- \ \"Inbound\"\r\n },\r\n {\r\n \"name\": \"DefaultRule_AllowVnetInBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"VirtualNetwork\"\
- \r\n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"VirtualNetwork\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
- : [\r\n \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\
- \r\n ],\r\n \"expandedDestinationAddressPrefix\": [\r\
- \n \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n\
- \ ],\r\n \"access\": \"Allow\",\r\n \"priority\"\
- : 65000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \
- \ {\r\n \"name\": \"DefaultRule_AllowAzureLoadBalancerInBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\"\
- ,\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"AzureLoadBalancer\"\r\
- \n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
- : [\r\n \"168.63.129.16/32\"\r\n ],\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \
- \ \"direction\": \"Inbound\"\r\n },\r\n {\r\n \
- \ \"name\": \"DefaultRule_DenyAllInBound\",\r\n \"protocol\"\
- : \"All\",\r\n \"sourcePortRange\": \"0-65535\",\r\n \
- \ \"destinationPortRange\": \"0-65535\",\r\n \"sourcePortRanges\"\
- : [\r\n \"0-65535\"\r\n ],\r\n \"destinationPortRanges\"\
- : [\r\n \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
- : \"0.0.0.0/0\",\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\"\
- ,\r\n \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\
- \r\n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"access\": \"\
- Deny\",\r\n \"priority\": 65500,\r\n \"direction\":\
- \ \"Inbound\"\r\n },\r\n {\r\n \"name\": \"UserRule_default-allow-ssh\"\
- ,\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"22-22\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"22-22\"\
- \r\n ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\",\r\
- \n \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\n \
- \ ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"access\": \"Allow\",\r\n\
- \ \"priority\": 1000,\r\n \"direction\": \"Inbound\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['16728']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:27 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/61a9b39d-bb8b-4412-9bf1-ce5f688bfa85?api-version=2017-09-01']
- 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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-security-group-view]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/61a9b39d-bb8b-4412-9bf1-ce5f688bfa85?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"securityRuleAssociations\": {\r\n \"networkInterfaceAssociation\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"securityRules\": [\r\n {\r\n \"name\"\
- : \"default-allow-ssh\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\
- \"\",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \
- \ \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \
- \ \"destinationAddressPrefix\": \"*\",\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 1000,\r\n \"\
- direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n\
- \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n \
- \ }\r\n }\r\n ]\r\n },\r\n \"defaultSecurityRules\"\
- : [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \
- \ \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Allow inbound traffic\
- \ from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \
- \ \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n\
- \ \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\"\
- : [],\r\n \"destinationPortRanges\": [],\r\n \"\
- sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Allow inbound traffic\
- \ from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \
- \ \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\
- \n \"destinationAddressPrefix\": \"*\",\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\"\
- : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \
- \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\
- \n },\r\n {\r\n \"name\": \"DenyAllInBound\"\
- ,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
- : \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \
- \ \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\"\
- : \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\"\
- : 65500,\r\n \"direction\": \"Inbound\",\r\n \"\
- sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n\
- \ \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Allow outbound traffic\
- \ from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\"\
- ,\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n\
- \ \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\"\
- : [],\r\n \"destinationPortRanges\": [],\r\n \"\
- sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Allow outbound traffic\
- \ from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \
- \ \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\"\
- : \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \
- \ \"destinationAddressPrefix\": \"Internet\",\r\n \"access\"\
- : \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\"\
- : \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \
- \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\
- \n },\r\n {\r\n \"name\": \"DenyAllOutBound\"\
- ,\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/networkSecurityGroups//defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
- : \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \
- \ \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\"\
- : \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\"\
- : 65500,\r\n \"direction\": \"Outbound\",\r\n \"\
- sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n\
- \ \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n }\r\n ],\r\n \"effectiveSecurityRules\"\
- : [\r\n {\r\n \"name\": \"DefaultOutboundDenyAll\",\r\n\
- \ \"protocol\": \"All\",\r\n \"sourcePortRange\": \"\
- 0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"0-65535\"\
- \r\n ],\r\n \"sourceAddressPrefix\": \"*\",\r\n \
- \ \"destinationAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\"\
- : [\r\n \"*\"\r\n ],\r\n \"destinationAddressPrefixes\"\
- : [\r\n \"*\"\r\n ],\r\n \"access\": \"\
- Deny\",\r\n \"priority\": 65500,\r\n \"direction\":\
- \ \"Outbound\"\r\n },\r\n {\r\n \"name\": \"\
- DefaultRule_AllowVnetOutBound\",\r\n \"protocol\": \"All\",\r\n\
- \ \"sourcePortRange\": \"0-65535\",\r\n \"destinationPortRange\"\
- : \"0-65535\",\r\n \"sourcePortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"destinationPortRanges\": [\r\n\
- \ \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
- : \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"sourceAddressPrefixes\": [\r\n \"VirtualNetwork\"\
- \r\n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"VirtualNetwork\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
- : [\r\n \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\
- \r\n ],\r\n \"expandedDestinationAddressPrefix\": [\r\
- \n \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n\
- \ ],\r\n \"access\": \"Allow\",\r\n \"priority\"\
- : 65000,\r\n \"direction\": \"Outbound\"\r\n },\r\n \
- \ {\r\n \"name\": \"DefaultRule_AllowInternetOutBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\"\
- ,\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\n \
- \ ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"Internet\"\r\n ],\r\n \"expandedDestinationAddressPrefix\"\
- : [\r\n \"1.0.0.0/8\",\r\n \"2.0.0.0/7\",\r\n \
- \ \"4.0.0.0/6\",\r\n \"8.0.0.0/7\",\r\n \
- \ \"11.0.0.0/8\",\r\n \"12.0.0.0/6\",\r\n \"\
- 16.0.0.0/5\",\r\n \"24.0.0.0/8\",\r\n \"25.25.0.0/16\"\
- ,\r\n \"25.26.0.0/15\",\r\n \"25.132.0.0/14\",\r\
- \n \"25.136.0.0/14\",\r\n \"25.140.0.0/15\",\r\n\
- \ \"25.240.0.0/14\",\r\n \"26.0.0.0/7\",\r\n \
- \ \"28.0.0.0/6\",\r\n \"32.0.0.0/3\",\r\n \
- \ \"64.0.0.0/3\",\r\n \"96.0.0.0/6\",\r\n \"\
- 100.0.0.0/10\",\r\n \"100.128.0.0/9\",\r\n \"101.0.0.0/8\"\
- ,\r\n \"102.0.0.0/7\",\r\n \"104.0.0.0/5\",\r\n\
- \ \"112.0.0.0/5\",\r\n \"120.0.0.0/6\",\r\n \
- \ \"124.0.0.0/7\",\r\n \"126.0.0.0/8\",\r\n \
- \ \"128.0.0.0/3\",\r\n \"160.0.0.0/5\",\r\n \
- \ \"168.0.0.0/8\",\r\n \"169.0.0.0/9\",\r\n \"\
- 169.128.0.0/10\",\r\n \"169.192.0.0/11\",\r\n \"\
- 169.224.0.0/12\",\r\n \"169.240.0.0/13\",\r\n \"\
- 169.248.0.0/14\",\r\n \"169.252.0.0/15\",\r\n \"\
- 169.255.0.0/16\",\r\n \"170.0.0.0/7\",\r\n \"172.0.0.0/12\"\
- ,\r\n \"172.32.0.0/11\",\r\n \"172.64.0.0/10\",\r\
- \n \"172.128.0.0/9\",\r\n \"173.0.0.0/8\",\r\n \
- \ \"174.0.0.0/7\",\r\n \"176.0.0.0/4\",\r\n \
- \ \"192.0.0.0/23\",\r\n \"192.0.3.0/24\",\r\n \
- \ \"192.0.4.0/22\",\r\n \"192.0.8.0/21\",\r\n \
- \ \"192.0.16.0/20\",\r\n \"192.0.32.0/19\",\r\n \
- \ \"192.0.64.0/18\",\r\n \"192.0.128.0/17\",\r\n \
- \ \"192.1.0.0/16\",\r\n \"192.2.0.0/15\",\r\n \
- \ \"192.4.0.0/14\",\r\n \"192.8.0.0/13\",\r\n \
- \ \"192.16.0.0/12\",\r\n \"192.32.0.0/11\",\r\n \
- \ \"192.64.0.0/10\",\r\n \"192.128.0.0/11\",\r\n \
- \ \"192.160.0.0/13\",\r\n \"192.169.0.0/16\",\r\n \
- \ \"192.170.0.0/15\",\r\n \"192.172.0.0/14\",\r\n \
- \ \"192.176.0.0/12\",\r\n \"192.192.0.0/10\",\r\n \
- \ \"193.0.0.0/8\",\r\n \"194.0.0.0/7\",\r\n \
- \ \"196.0.0.0/7\",\r\n \"198.0.0.0/12\",\r\n \
- \ \"198.16.0.0/15\",\r\n \"198.20.0.0/14\",\r\n \
- \ \"198.24.0.0/13\",\r\n \"198.32.0.0/11\",\r\n \
- \ \"198.64.0.0/10\",\r\n \"198.128.0.0/9\",\r\n \
- \ \"199.0.0.0/8\",\r\n \"200.0.0.0/5\",\r\n \"\
- 208.0.0.0/4\"\r\n ],\r\n \"access\": \"Allow\",\r\n\
- \ \"priority\": 65001,\r\n \"direction\": \"Outbound\"\
- \r\n },\r\n {\r\n \"name\": \"DefaultRule_DenyAllOutBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\"\
- ,\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\n \
- \ ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"access\": \"Deny\",\r\
- \n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\
- \r\n },\r\n {\r\n \"name\": \"DefaultInboundDenyAll\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"*\"\
- ,\r\n \"destinationAddressPrefix\": \"*\",\r\n \"sourceAddressPrefixes\"\
- : [\r\n \"*\"\r\n ],\r\n \"destinationAddressPrefixes\"\
- : [\r\n \"*\"\r\n ],\r\n \"access\": \"\
- Deny\",\r\n \"priority\": 65500,\r\n \"direction\":\
- \ \"Inbound\"\r\n },\r\n {\r\n \"name\": \"DefaultRule_AllowVnetInBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"VirtualNetwork\"\
- \r\n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"VirtualNetwork\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
- : [\r\n \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\
- \r\n ],\r\n \"expandedDestinationAddressPrefix\": [\r\
- \n \"10.0.0.0/16\",\r\n \"168.63.129.16/32\"\r\n\
- \ ],\r\n \"access\": \"Allow\",\r\n \"priority\"\
- : 65000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \
- \ {\r\n \"name\": \"DefaultRule_AllowAzureLoadBalancerInBound\"\
- ,\r\n \"protocol\": \"All\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"0-65535\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"\
- 0-65535\"\r\n ],\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\"\
- ,\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"AzureLoadBalancer\"\r\
- \n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"expandedSourceAddressPrefix\"\
- : [\r\n \"168.63.129.16/32\"\r\n ],\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \
- \ \"direction\": \"Inbound\"\r\n },\r\n {\r\n \
- \ \"name\": \"DefaultRule_DenyAllInBound\",\r\n \"protocol\"\
- : \"All\",\r\n \"sourcePortRange\": \"0-65535\",\r\n \
- \ \"destinationPortRange\": \"0-65535\",\r\n \"sourcePortRanges\"\
- : [\r\n \"0-65535\"\r\n ],\r\n \"destinationPortRanges\"\
- : [\r\n \"0-65535\"\r\n ],\r\n \"sourceAddressPrefix\"\
- : \"0.0.0.0/0\",\r\n \"destinationAddressPrefix\": \"0.0.0.0/0\"\
- ,\r\n \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\
- \r\n ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"access\": \"\
- Deny\",\r\n \"priority\": 65500,\r\n \"direction\":\
- \ \"Inbound\"\r\n },\r\n {\r\n \"name\": \"UserRule_default-allow-ssh\"\
- ,\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\"\
- : \"0-65535\",\r\n \"destinationPortRange\": \"22-22\",\r\n \
- \ \"sourcePortRanges\": [\r\n \"0-65535\"\r\n \
- \ ],\r\n \"destinationPortRanges\": [\r\n \"22-22\"\
- \r\n ],\r\n \"sourceAddressPrefix\": \"0.0.0.0/0\",\r\
- \n \"destinationAddressPrefix\": \"0.0.0.0/0\",\r\n \
- \ \"sourceAddressPrefixes\": [\r\n \"0.0.0.0/0\"\r\n \
- \ ],\r\n \"destinationAddressPrefixes\": [\r\n \
- \ \"0.0.0.0/0\"\r\n ],\r\n \"access\": \"Allow\",\r\n\
- \ \"priority\": 1000,\r\n \"direction\": \"Inbound\"\
- \r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['16840']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:57 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/61a9b39d-bb8b-4412-9bf1-ce5f688bfa85?api-version=2017-09-01']
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-next-hop]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\"\
- : [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n }\r\n ],\r\n \"\
- type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['2407']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-next-hop]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"54f72dd1-5289-4410-8e7d-1ab7a3665c0c\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:37:58 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [d8680d76-8efc-4cc5-9506-4a31d30c1ffc, ba55af18-cbdb-40c8-bd61-890cd5ee1e01,
- c12c072d-6dc8-44f5-bc12-91b9a749ffdc]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"sourceIPAddress": "123.4.5.6", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1",
- "destinationIPAddress": "10.0.0.6"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-next-hop]
- Connection: [keep-alive]
- Content-Length: ['282']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/nextHop?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"nextHopType\": \"VirtualNetwork\",\r\n \"routeTableId\"\
- : \"System Route\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['74']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:11 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/9d2b91a3-b173-477b-875a-352e7848f63e?api-version=2017-09-01']
- 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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher show-next-hop]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/9d2b91a3-b173-477b-875a-352e7848f63e?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"nextHopType\": \"VirtualNetwork\",\r\n \"routeTableId\"\
- : \"System Route\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['74']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:41 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/9d2b91a3-b173-477b-875a-352e7848f63e?api-version=2017-09-01']
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-connectivity]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\"\
- : [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n }\r\n ],\r\n \"\
- type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['2407']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-connectivity]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"749ee5f0-1d00-4edf-a36c-f367600d2f29\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:38:43 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [4ce9e186-db60-495d-b813-520de76cf5ee, 945260be-601f-4965-a452-2b35fad91fa7,
- a2c0648a-3548-4bfc-9f1b-ac0cab129d8e]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"source": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1"},
- "destination": {"address": "www.microsoft.com", "port": 80}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-connectivity]
- Connection: [keep-alive]
- Content-Length: ['281']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/connectivityCheck?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:04 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/69f3c80e-dcce-4f13-81b8-7cf6ac88a907?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher test-connectivity]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/69f3c80e-dcce-4f13-81b8-7cf6ac88a907?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"hops\": [\r\n {\r\n \"type\": \"Source\",\r\n\
- \ \"id\": \"66ee3735-2b25-455f-b655-0730b53d39f0\",\r\n \"address\"\
- : \"10.0.0.4\",\r\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- ,\r\n \"nextHopIds\": [\r\n \"237e084f-819b-4296-a441-d86af3ff18df\"\
- \r\n ],\r\n \"links\": [],\r\n \"issues\": []\r\n },\r\n\
- \ {\r\n \"type\": \"Internet\",\r\n \"id\": \"237e084f-819b-4296-a441-d86af3ff18df\"\
- ,\r\n \"address\": \"23.44.161.156\",\r\n \"resourceId\": \"Internet\"\
- ,\r\n \"nextHopIds\": [],\r\n \"links\": [],\r\n \"issues\"\
- : []\r\n }\r\n ],\r\n \"connectionStatus\": \"Reachable\",\r\n \"avgLatencyInMs\"\
- : 12,\r\n \"minLatencyInMs\": 12,\r\n \"maxLatencyInMs\": 13,\r\n \"probesSent\"\
- : 100,\r\n \"probesFailed\": 0\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['899']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:13 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/69f3c80e-dcce-4f13-81b8-7cf6ac88a907?api-version=2017-09-01']
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vm1NSG\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"48e5750e-f1e2-48b7-8af8-16ade6890604\"\
- ,\r\n \"securityRules\": [\r\n {\r\n \"name\": \"default-allow-ssh\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"\
- *\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\"\
- : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\
- \n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\":\
- \ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n\
- \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\":\
- \ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
- \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
- \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\"\
- : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
- \ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
- : \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\"\
- : [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \
- \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\
- \n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2b997b79-6b0a-4fb0-87eb-cb309d84dc26\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
- \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
- \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\"\
- : \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n\
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- \r\n }\r\n ]\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['7651']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:15 GMT']
- etag: [W/"2b997b79-6b0a-4fb0-87eb-cb309d84dc26"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"8daff8fc-f2f7-4d12-a9e7-4d2194d1395d\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:15 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [f67aa914-bab2-4730-962a-da39729371f4, 4fc26638-33dd-4965-8aa3-e945a9fa66cf,
- e82c1e59-0263-4373-8800-632a9f62d592]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log configure]
- Connection: [keep-alive]
- Content-Length: ['223']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/queryFlowLogStatus?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"targetResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"retentionPolicy\"\
- : {\r\n \"days\": 0,\r\n \"enabled\": false\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['352']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:16 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-ms-ratelimit-remaining-subscription-writes: ['1197']
- status: {code: 200, message: OK}
-- request:
- body: 'b''b\''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG",
- "properties": {"storageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002",
- "retentionPolicy": {"days": 5, "enabled": true}, "enabled": true}}\'''''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log configure]
- Connection: [keep-alive]
- Content-Length: ['533']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/configureFlowLog?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"targetResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002\"\
- ,\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\"\
- : 5,\r\n \"enabled\": true\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['583']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39: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-ms-ratelimit-remaining-subscription-writes: ['1196']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vm1NSG\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"etag\": \"W/\\\"9e0b76d2-3a75-435a-a72d-68041dcf60e8\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"48e5750e-f1e2-48b7-8af8-16ade6890604\"\
- ,\r\n \"securityRules\": [\r\n {\r\n \"name\": \"default-allow-ssh\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\"\
- ,\r\n \"etag\": \"W/\\\"9e0b76d2-3a75-435a-a72d-68041dcf60e8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"\
- *\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\"\
- : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\
- \n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"9e0b76d2-3a75-435a-a72d-68041dcf60e8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\":\
- \ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"9e0b76d2-3a75-435a-a72d-68041dcf60e8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n\
- \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\":\
- \ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"9e0b76d2-3a75-435a-a72d-68041dcf60e8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
- \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
- \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\"\
- : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"9e0b76d2-3a75-435a-a72d-68041dcf60e8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
- \ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
- : \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\"\
- : [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"9e0b76d2-3a75-435a-a72d-68041dcf60e8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \
- \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\
- \n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"9e0b76d2-3a75-435a-a72d-68041dcf60e8\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
- \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
- \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\"\
- : \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n\
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- \r\n }\r\n ]\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['7651']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:20 GMT']
- etag: [W/"9e0b76d2-3a75-435a-a72d-68041dcf60e8"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log configure]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"0e811bc4-3ca2-4ea0-af8e-3502b09af264\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:21 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [d70c1dc0-a057-462c-ac30-9806126ff3e7, 5835ab04-0957-48d8-9e2e-3a2c780ce66e,
- 1338b1d6-e02e-4b1d-9b04-729ca645810e]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log configure]
- Connection: [keep-alive]
- Content-Length: ['223']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/queryFlowLogStatus?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"targetResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002\"\
- ,\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\"\
- : 5,\r\n \"enabled\": true\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['583']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39: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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: 'b''b\''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG",
- "properties": {"storageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002",
- "retentionPolicy": {"days": 0, "enabled": false}, "enabled": true}}\'''''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log configure]
- Connection: [keep-alive]
- Content-Length: ['534']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/configureFlowLog?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"targetResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002\"\
- ,\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\"\
- : 0,\r\n \"enabled\": false\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['584']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:23 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-ms-ratelimit-remaining-subscription-writes: ['1195']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vm1NSG\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"etag\": \"W/\\\"7fc4fdb5-cb38-44aa-8f05-8145b5b64364\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"resourceGuid\": \"48e5750e-f1e2-48b7-8af8-16ade6890604\"\
- ,\r\n \"securityRules\": [\r\n {\r\n \"name\": \"default-allow-ssh\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\"\
- ,\r\n \"etag\": \"W/\\\"7fc4fdb5-cb38-44aa-8f05-8145b5b64364\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"\
- *\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\"\
- : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\
- \n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"7fc4fdb5-cb38-44aa-8f05-8145b5b64364\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\":\
- \ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"7fc4fdb5-cb38-44aa-8f05-8145b5b64364\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n\
- \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\":\
- \ [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"7fc4fdb5-cb38-44aa-8f05-8145b5b64364\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
- \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
- \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\"\
- : \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"7fc4fdb5-cb38-44aa-8f05-8145b5b64364\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
- \ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
- : \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\"\
- ,\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n\
- \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\"\
- : [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"7fc4fdb5-cb38-44aa-8f05-8145b5b64364\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
- ,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
- ,\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \
- \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \
- \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\
- \n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\"\
- : [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
- \ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"7fc4fdb5-cb38-44aa-8f05-8145b5b64364\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
- \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
- \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\"\
- : \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"\
- access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\"\
- : \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\"\
- : [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
- : []\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n\
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- \r\n }\r\n ]\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['7651']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:24 GMT']
- etag: [W/"7fc4fdb5-cb38-44aa-8f05-8145b5b64364"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"99177d1f-76f5-43c8-86eb-1c9f36268ad4\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:24 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [17f13dc7-4983-475a-838d-db75ae943452, d00d9ec1-97b6-42bf-8f5d-0d12a43324bb,
- d92f9938-24ca-4e01-9752-3eefe32dfb74]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher flow-log show]
- Connection: [keep-alive]
- Content-Length: ['223']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/queryFlowLogStatus?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"targetResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- ,\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002\"\
- ,\r\n \"enabled\": true,\r\n \"retentionPolicy\": {\r\n \"days\"\
- : 0,\r\n \"enabled\": false\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['584']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:24 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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\"\
- : [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n }\r\n ],\r\n \"\
- type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['2407']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:25 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"1e146163-fe64-480d-9daa-9337bc9b607e\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:25 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [4e4350c3-fd92-46ff-9587-110c8fc0520d, 3a0fd993-1d16-46a3-a0a3-49195fc6cc8f,
- 9e31d943-9798-40d8-880f-75a22b742d3a]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 computemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2017-03-30
- response:
- body: {string: "{\r\n \"properties\": {\r\n \"vmId\": \"de6ddc3d-e2eb-44df-966f-58ca3680da08\"\
- ,\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\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n\
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \
- \ \"name\": \"vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\",\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_network_watcher000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9f740642befe4b0a984e43bc8b8a7595\"\
- \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
- : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
- ,\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\"\
- : {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \
- \ \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\"\
- :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\"\
- : [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\"\
- ,\r\n \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\"\
- : \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\"\
- : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\"\
- ,\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/NetworkWatcherAgentLinux\"\
- ,\r\n \"name\": \"NetworkWatcherAgentLinux\"\r\n }\r\n ],\r\n \"\
- type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\
- ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"name\": \"vm1\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['2407']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:25 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"1e146163-fe64-480d-9daa-9337bc9b607e\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:25 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [6fd8574b-4d00-485f-9065-b2b0a804462c, 2b928b5e-e547-451a-8296-38f0e1ec784c,
- 030b327a-4413-4860-81da-0c33e4484e8a]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"properties": {"target": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1",
- "storageLocation": {"filePath": "capture\\\\capture.cap"}}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture create]
- Connection: [keep-alive]
- Content-Length: ['277']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"capture1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1\"\
- ,\r\n \"etag\": \"W/\\\"e9c8a678-e027-41c8-a88c-936f87a37731\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
- target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"bytesToCapturePerPacket\": 0,\r\n \"totalBytesPerSession\":\
- \ 1073741824,\r\n \"timeLimitInSeconds\": 18000,\r\n \"storageLocation\"\
- : {\r\n \"storagePath\": \"\",\r\n \"filePath\": \"capture\\\\capture.cap\"\
- \r\n },\r\n \"filters\": []\r\n }\r\n}"}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/a2100e63-b5c8-49a1-955e-9a5d711c30e7?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['831']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:27 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/a2100e63-b5c8-49a1-955e-9a5d711c30e7?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"capture1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1\"\
- ,\r\n \"etag\": \"W/\\\"dd67b55f-f04b-4507-be55-b43dbbdc06a5\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"bytesToCapturePerPacket\": 0,\r\n \"totalBytesPerSession\":\
- \ 1073741824,\r\n \"timeLimitInSeconds\": 18000,\r\n \"storageLocation\"\
- : {\r\n \"storagePath\": \"\",\r\n \"filePath\": \"capture\\\\capture.cap\"\
- \r\n },\r\n \"filters\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['832']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:37 GMT']
- etag: [W/"dd67b55f-f04b-4507-be55-b43dbbdc06a5"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"dd67b55f-f04b-4507-be55-b43dbbdc06a5\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:38 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [d0100bb6-a0e9-4bcd-8f6c-1ba48ccb59f9, 2fff951d-3955-44ce-aa7c-d1d5b2a82f0f,
- a034875d-0b32-4e40-9281-e6c0f834f53c]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"capture1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1\"\
- ,\r\n \"etag\": \"W/\\\"dd67b55f-f04b-4507-be55-b43dbbdc06a5\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"bytesToCapturePerPacket\": 0,\r\n \"totalBytesPerSession\":\
- \ 1073741824,\r\n \"timeLimitInSeconds\": 18000,\r\n \"storageLocation\"\
- : {\r\n \"storagePath\": \"\",\r\n \"filePath\": \"capture\\\\capture.cap\"\
- \r\n },\r\n \"filters\": []\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['832']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:38 GMT']
- etag: [W/"dd67b55f-f04b-4507-be55-b43dbbdc06a5"]
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture stop]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"dd67b55f-f04b-4507-be55-b43dbbdc06a5\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:39 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [f9535f6b-c175-4545-807d-314d0e0398ea, 80d8bb78-ddf6-48ec-8d67-9d6edde49fb5,
- d3d4b637-41d3-4919-8b31-63474791a79b]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture stop]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1/stop?api-version=2017-09-01
- response:
- body: {string: ''}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/58a55a14-8a08-47de-bdd3-7c77169ae09c?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:39:39 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/58a55a14-8a08-47de-bdd3-7c77169ae09c?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture stop]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/58a55a14-8a08-47de-bdd3-7c77169ae09c?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture show-status]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"b5bc9d71-9ed0-4703-9e61-e532f2e1e033\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:51 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [90dfa3f0-173d-4c31-965d-7d22078088de, 51bb93da-9d13-47ab-8379-509df88126d5,
- 19590830-09eb-4cfb-93bb-6cf9929b9401]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture show-status]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1/queryStatus?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"capture1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1\"\
- ,\r\n \"captureStartTime\": \"2017-09-19T15:39:32.6624103Z\",\r\n \"packetCaptureStatus\"\
- : \"Stopped\",\r\n \"stopReason\": \"Manual\",\r\n \"packetCaptureError\"\
- : []\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['419']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39: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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"b5bc9d71-9ed0-4703-9e61-e532f2e1e033\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:51 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [5d7430f5-6ca9-46ee-8ee2-e2381937e0c8, 37fb420d-6748-425b-932a-f9e4de9180dd,
- aa3d138a-2178-4caf-a00c-0008ab50c330]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"capture1\",\r\
- \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1\"\
- ,\r\n \"etag\": \"W/\\\"b5bc9d71-9ed0-4703-9e61-e532f2e1e033\\\"\",\r\
- \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- ,\r\n \"bytesToCapturePerPacket\": 0,\r\n \"totalBytesPerSession\"\
- : 1073741824,\r\n \"timeLimitInSeconds\": 18000,\r\n \"storageLocation\"\
- : {\r\n \"storagePath\": \"\",\r\n \"filePath\": \"capture\\\
- \\capture.cap\"\r\n },\r\n \"filters\": []\r\n }\r\n \
- \ }\r\n ]\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['925']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"b5bc9d71-9ed0-4703-9e61-e532f2e1e033\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:39:51 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [c2321be8-77ed-4358-a8b5-6a5bcaa6961e, fa2f10f6-bf3b-44b2-85db-f5bcc032043a,
- d2a2dc89-95ae-4c22-9c9d-6bb18e1d0814]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures/capture1?api-version=2017-09-01
- response:
- body: {string: ''}
- headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/359c8afd-bccf-4972-bf2d-5f00dca8ac67?api-version=2017-09-01']
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Tue, 19 Sep 2017 15:39:53 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/359c8afd-bccf-4972-bf2d-5f00dca8ac67?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/359c8afd-bccf-4972-bf2d-5f00dca8ac67?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['30']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture delete]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/359c8afd-bccf-4972-bf2d-5f00dca8ac67?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['29']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:13 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"80f0d162-674f-43bb-a569-fb10d617a22b\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:14 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [2e1b51fd-9b75-45e6-ba8a-dc2059a6259b, 6ccd84e1-6916-453d-b783-8557b7ef74b5,
- 56b69300-3d20-4b1c-8be0-3a973a95c73e]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher packet-capture list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/packetCaptures?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"value\": []\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['19']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:14 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:15 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:40:45 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41:15 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:41: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42:16 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:42: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43:17 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:43: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:17 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:44:48 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:45:48 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:47: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:48: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49:21 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:49: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:50: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51:22 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:51: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52:23 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:52: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:22 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:53:53 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:54:24 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:54:54 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:24 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:55:54 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56:24 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:56: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:57:25 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:57:56 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:58:26 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:58: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"2c9f8c69-3f1c-41e8-9608-521621ef1e65\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1777']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:26 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet-gateway wait]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"137e7824-8703-4680-b827-614fe48ff836\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"137e7824-8703-4680-b827-614fe48ff836\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
- : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\"\
- ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1895']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:56 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"137e7824-8703-4680-b827-614fe48ff836\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"137e7824-8703-4680-b827-614fe48ff836\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
- : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\"\
- ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1895']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59: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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"80f0d162-674f-43bb-a569-fb10d617a22b\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 15:59:57 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [f1bede86-e155-4356-83b0-7a8c03f2a31d, def121be-6a75-4baa-8dfd-b37a24392ad5,
- b6987923-8930-453c-9151-4dcd5ab06fa9]
- status: {code: 200, message: OK}
-- request:
- body: 'b''b\''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1",
- "properties": {"storagePath": "https://clitestnw000002.blob.core.windows.net/troubleshooting",
- "storageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Storage/storageAccounts/clitestnw000002"}}\'''''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Length: ['555']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/troubleshoot?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:17 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:28 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:38 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:49 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:00:59 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:10 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:20 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:31 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:41 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:01:52 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:03 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:12 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:23 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: 'null'}
- headers:
- cache-control: [no-cache]
- content-length: ['4']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:34 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- status: {code: 202, message: Accepted}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting start]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"startTime\": \"2017-09-19T15:59:58.1763145Z\",\r\n \"\
- endTime\": \"2017-09-19T16:00:06.224Z\",\r\n \"code\": \"UnHealthy\",\r\n\
- \ \"results\": [\r\n {\r\n \"id\": \"UnKnown\",\r\n \"summary\"\
- : \"The health status for this VPN gateway is unknown\",\r\n \"detail\"\
- : \"We are currently unable to determine the health of this VPN gateway\"\
- ,\r\n \"recommendedActions\": [\r\n {\r\n \"actionText\"\
- : \"If you are having problems with the VPN gateway, try resetting the VPN\
- \ gateway\",\r\n \"actionUri\": \"https://azure.microsoft.com/en-us/documentation/articles/vpn-gateway-resetgw-classic/\"\
- ,\r\n \"actionUriText\": \"resetting the VPN gateway\"\r\n \
- \ },\r\n {\r\n \"actionText\": \"If you are experiencing\
- \ problems you believe are caused by Azure, contact support\",\r\n \
- \ \"actionUri\": \"http://azure.microsoft.com/support\",\r\n \"\
- actionUriText\": \"contact support\"\r\n }\r\n ]\r\n }\r\n\
- \ ]\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['915']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:44 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/0ebaa533-4345-4ace-adc2-254498896e45?api-version=2017-09-01']
- 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\"\
- ,\r\n \"etag\": \"W/\\\"137e7824-8703-4680-b827-614fe48ff836\\\"\",\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\"\
- : \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"58463f8d-52d4-4a4e-b235-a68c3747da7c\"\
- ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vnetGatewayConfig0\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\"\
- ,\r\n \"etag\": \"W/\\\"137e7824-8703-4680-b827-614fe48ff836\\\"\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\
- publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/publicIPAddresses/vgw1-pip\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\
- \r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \
- \ \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\"\
- : 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\"\
- ,\r\n \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\"\
- : {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\"\
- ,\r\n \"peerWeight\": 0\r\n }\r\n }\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['1895']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:44 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]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/networkWatchers?api-version=2017-09-01
- response:
- body: {string: '{"value":[{"name":"westus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westus-watcher","etag":"W/\"d2f73e94-c2e3-40b7-857b-e268d604255e\"","type":"Microsoft.Network/networkWatchers","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"nw397590","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw397590group/providers/Microsoft.Network/networkWatchers/nw397590","etag":"W/\"8ddecce8-9d72-4696-ad9f-7365d1490801\"","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"},"properties":{"provisioningState":"Succeeded","runningOperationIds":[]}},{"name":"westcentralus-watcher","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher","etag":"W/\"d451df9e-34bf-479f-95d0-b27bb707e577\"","type":"Microsoft.Network/networkWatchers","location":"westcentralus","properties":{"provisioningState":"Succeeded","runningOperationIds":[]}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['1278']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:45 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- x-ms-original-request-ids: [f390012b-ce9b-4105-8bb8-7310fdc2f4a2, b43966a9-a01e-4016-86aa-7b9a61876007,
- b0c427ce-b316-4368-8933-3c5b0d5d0bb4]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network watcher troubleshooting show]
- Connection: [keep-alive]
- Content-Length: ['222']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_network_watcher000001/providers/Microsoft.Network/networkWatchers/westcentralus-watcher/queryTroubleshootResult?api-version=2017-09-01
- response:
- body: {string: "{\r\n \"startTime\": \"2017-09-19T15:59:58.1763145Z\",\r\n \"\
- endTime\": \"2017-09-19T16:00:06.224Z\",\r\n \"code\": \"UnHealthy\",\r\n\
- \ \"results\": [\r\n {\r\n \"id\": \"UnKnown\",\r\n \"summary\"\
- : \"The health status for this VPN gateway is unknown\",\r\n \"detail\"\
- : \"We are currently unable to determine the health of this VPN gateway\"\
- ,\r\n \"recommendedActions\": [\r\n {\r\n \"actionText\"\
- : \"If you are having problems with the VPN gateway, try resetting the VPN\
- \ gateway\",\r\n \"actionUri\": \"https://azure.microsoft.com/en-us/documentation/articles/vpn-gateway-resetgw-classic/\"\
- ,\r\n \"actionUriText\": \"resetting the VPN gateway\"\r\n \
- \ },\r\n {\r\n \"actionText\": \"If you are experiencing\
- \ problems you believe are caused by Azure, contact support\",\r\n \
- \ \"actionUri\": \"http://azure.microsoft.com/support\",\r\n \"\
- actionUriText\": \"contact support\"\r\n }\r\n ]\r\n }\r\n\
- \ ]\r\n}"}
- headers:
- cache-control: [no-cache]
- content-length: ['915']
- content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 16:02:45 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-ms-ratelimit-remaining-subscription-writes: ['1198']
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_network_watcher000001?api-version=2017-05-10
@@ -6827,9 +46,9 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 16:02:45 GMT']
+ date: ['Mon, 16 Oct 2017 16:51:29 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTkVUV09SSzo1RldBVENIRVI2U1JZSkhOMjVRTVpKVlIzTXxERUFCNDU3MTg4MzhGNTI0LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTkVUV09SSzo1RldBVENIRVJPUFJIRzdBSFdaSUFGT1QzSHw3N0ZCREM0NjREOUVBQzJDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1198']
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_dns_zone_import.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_dns_zone_import.py
index 3186bdc10c5..7bbda2ea176 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_dns_zone_import.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_dns_zone_import.py
@@ -304,7 +304,7 @@ def test_zone_file_5(self):
self._check_a(zone, 'test.' + zn, [(3600, '7.8.9.0')])
def test_zone_import_errors(self):
- from azure.cli.core.util import CLIError
+ from knack.util import CLIError
for f in ['fail1', 'fail2', 'fail3', 'fail4', 'fail5']:
with self.assertRaises(CLIError):
self._get_zone_object('{}.txt'.format(f), 'example.com')
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_network_commands.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_network_commands.py
index bed2ae76391..12b7f0709f7 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_network_commands.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_network_commands.py
@@ -8,14 +8,14 @@
import os
import unittest
-from azure.cli.core.util import CLIError
-from msrestazure.tools import resource_id
from azure.cli.core.commands.client_factory import get_subscription_id
from azure.cli.core.profiles import supported_api_version, ResourceType
-from azure.cli.testsdk import JMESPathCheck as JMESPathCheckV2
from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, api_version_constraint, live_only
-from azure.cli.testsdk.vcr_test_base import (VCRTestBase, ResourceGroupVCRTestBase, JMESPathCheck, NoneCheck, MOCKED_SUBSCRIPTION_ID)
+
+from knack.util import CLIError
+
+from msrestazure.tools import resource_id
TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..'))
@@ -26,21 +26,20 @@ class NetworkLoadBalancerWithSku(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_network_lb_sku')
def test_network_lb_sku(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'lb': 'lb1',
'sku': 'standard',
'location': 'eastus2',
'ip': 'pubip1'
- }
+ })
- self.cmd('network lb create -g {rg} -l {location} -n {lb} --sku {sku} --public-ip-address {ip}'.format(**kwargs))
- self.cmd('network lb show -g {rg} -n {lb}'.format(**kwargs), checks=[
- JMESPathCheckV2('sku.name', 'Standard')
+ self.cmd('network lb create -g {rg} -l {location} -n {lb} --sku {sku} --public-ip-address {ip}')
+ self.cmd('network lb show -g {rg} -n {lb}', checks=[
+ self.check('sku.name', 'Standard')
])
- self.cmd('network public-ip show -g {rg} -n {ip}'.format(**kwargs), checks=[
- JMESPathCheckV2('sku.name', 'Standard'),
- JMESPathCheckV2('publicIpAllocationMethod', 'Static')
+ self.cmd('network public-ip show -g {rg} -n {ip}', checks=[
+ self.check('sku.name', 'Standard'),
+ self.check('publicIpAllocationMethod', 'Static')
])
@@ -50,37 +49,36 @@ class NetworkLoadBalancerWithZone(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_network_lb_zone')
def test_network_lb_zone(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'lb': 'lb1',
'zone': '2',
'location': 'eastus2',
'ip': 'pubip1'
- }
+ })
# LB with public ip
- self.cmd('network lb create -g {rg} -l {location} -n {lb} --public-ip-zone {zone} --public-ip-address {ip}'.format(**kwargs))
+ self.cmd('network lb create -g {rg} -l {location} -n {lb} --public-ip-zone {zone} --public-ip-address {ip}')
# No zone on LB and its front-ip-config
- self.cmd('network lb show -g {rg} -n {lb}'.format(**kwargs), checks=[
- JMESPathCheckV2("frontendIpConfigurations[0].zones", None),
- JMESPathCheckV2("zones", None)
+ self.cmd('network lb show -g {rg} -n {lb}', checks=[
+ self.check("frontendIpConfigurations[0].zones", None),
+ self.check("zones", None)
])
# Zone on public-ip which LB uses to infer the zone
- self.cmd('network public-ip show -g {rg} -n {ip}'.format(**kwargs), checks=[
- JMESPathCheckV2('zones[0]', kwargs['zone'])
+ self.cmd('network public-ip show -g {rg} -n {ip}', checks=[
+ self.check('zones[0]', self.kwargs['zone'])
])
# LB w/o public ip, so called ILB
- kwargs['lb'] = 'lb2'
- self.cmd('network lb create -g {rg} -l {location} -n {lb} --frontend-ip-zone {zone} --public-ip-address "" --vnet-name vnet1 --subnet subnet1'.format(**kwargs))
+ self.kwargs['lb'] = 'lb2'
+ self.cmd('network lb create -g {rg} -l {location} -n {lb} --frontend-ip-zone {zone} --public-ip-address "" --vnet-name vnet1 --subnet subnet1')
# Zone on front-ip-config, and still no zone on LB resource
- self.cmd('network lb show -g {rg} -n {lb}'.format(**kwargs), checks=[
- JMESPathCheckV2("frontendIpConfigurations[0].zones[0]", kwargs['zone']),
- JMESPathCheckV2("zones", None)
+ self.cmd('network lb show -g {rg} -n {lb}', checks=[
+ self.check("frontendIpConfigurations[0].zones[0]", self.kwargs['zone']),
+ self.check("zones", None)
])
# add a second frontend ip configuration
- self.cmd('network lb frontend-ip create -g {rg} --lb-name {lb} -n LoadBalancerFrontEnd2 -z {zone} --vnet-name vnet1 --subnet subnet1'.format(**kwargs), checks=[
- JMESPathCheckV2("zones", [kwargs['zone']])
+ self.cmd('network lb frontend-ip create -g {rg} --lb-name {lb} -n LoadBalancerFrontEnd2 -z {zone} --vnet-name vnet1 --subnet subnet1', checks=[
+ self.check("zones", [self.kwargs['zone']])
])
@@ -90,81 +88,66 @@ class NetworkPublicIpWithSku(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_network_lb_sku')
def test_network_public_ip_sku(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'sku': 'standard',
'location': 'eastus2',
'ip': 'pubip1'
- }
+ })
- self.cmd('network public-ip create -g {rg} -l {location} -n {ip} --sku {sku}'.format(**kwargs))
- self.cmd('network public-ip show -g {rg} -n {ip}'.format(**kwargs), checks=[
- JMESPathCheckV2('sku.name', 'Standard'),
- JMESPathCheckV2('publicIpAllocationMethod', 'Static')
+ self.cmd('network public-ip create -g {rg} -l {location} -n {ip} --sku {sku}')
+ self.cmd('network public-ip show -g {rg} -n {ip}', checks=[
+ self.check('sku.name', 'Standard'),
+ self.check('publicIpAllocationMethod', 'Static')
])
-class NetworkMultiIdsShowScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkMultiIdsShowScenarioTest, self).__init__(__file__, test_method, resource_group='test_multi_id')
+class NetworkMultiIdsShowScenarioTest(ScenarioTest):
- def test_multi_id_show(self):
- self.execute()
+ @ResourceGroupPreparer(name_prefix='test_multi_id')
+ def test_network_multi_id_show(self, resource_group):
- def set_up(self):
- super(NetworkMultiIdsShowScenarioTest, self).set_up()
- rg = self.resource_group
+ self.cmd('network public-ip create -g {rg} -n pip1')
+ self.cmd('network public-ip create -g {rg} -n pip2')
- self.cmd('network public-ip create -g {} -n pip1'.format(rg))
- self.cmd('network public-ip create -g {} -n pip2'.format(rg))
+ pip1 = self.cmd('network public-ip show -g {rg} -n pip1').get_output_in_json()
+ pip2 = self.cmd('network public-ip show -g {rg} -n pip2').get_output_in_json()
+ self.cmd('network public-ip show --ids {} {}'.format(pip1['id'], pip2['id']),
+ checks=self.check('length(@)', 2))
- def body(self):
- rg = self.resource_group
- pip1 = self.cmd('network public-ip show -g {} -n pip1'.format(rg))
- pip2 = self.cmd('network public-ip show -g {} -n pip2'.format(rg))
- self.cmd('network public-ip show --ids {} {}'.format(pip1['id'], pip2['id']), checks=JMESPathCheck('length(@)', 2))
-
-
-class NetworkUsageListScenarioTest(VCRTestBase):
- def __init__(self, test_method):
- super(NetworkUsageListScenarioTest, self).__init__(__file__, test_method)
+class NetworkUsageListScenarioTest(ScenarioTest):
def test_network_usage_list(self):
- self.execute()
-
- def body(self):
- self.cmd('network list-usages --location westus', checks=JMESPathCheck('type(@)', 'array'))
+ self.cmd('network list-usages --location westus', checks=self.check('type(@)', 'array'))
class NetworkAppGatewayDefaultScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_ag_basic')
def test_network_app_gateway_with_defaults(self, resource_group):
- rg = resource_group
- self.cmd('network application-gateway create -g {} -n ag1 --no-wait'.format(rg))
- self.cmd('network application-gateway wait -g {} -n ag1 --exists'.format(rg))
- self.cmd('network application-gateway update -g {} -n ag1 --no-wait --capacity 3 --sku standard_small --tags foo=doo'.format(rg))
- self.cmd('network application-gateway wait -g {} -n ag1 --updated'.format(rg))
-
- ag_list = self.cmd('network application-gateway list --resource-group {}'.format(rg), checks=[
- JMESPathCheckV2('type(@)', 'array'),
- JMESPathCheckV2("length([?resourceGroup == '{}']) == length(@)".format(rg), True)
+ self.cmd('network application-gateway create -g {rg} -n ag1 --no-wait')
+ self.cmd('network application-gateway wait -g {rg} -n ag1 --exists')
+ self.cmd('network application-gateway update -g {rg} -n ag1 --no-wait --capacity 3 --sku standard_small --tags foo=doo')
+ self.cmd('network application-gateway wait -g {rg} -n ag1 --updated')
+
+ ag_list = self.cmd('network application-gateway list --resource-group {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?resourceGroup == '{}']) == length(@)".format(resource_group), True)
]).get_output_in_json()
ag_count = len(ag_list)
- self.cmd('network application-gateway show --resource-group {} --name ag1'.format(rg), checks=[
- JMESPathCheckV2('type(@)', 'object'),
- JMESPathCheckV2('name', 'ag1'),
- JMESPathCheckV2('resourceGroup', rg),
- JMESPathCheckV2('frontendIpConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
- JMESPathCheckV2("frontendIpConfigurations[0].subnet.contains(id, 'default')", True)
+ self.cmd('network application-gateway show --resource-group {rg} --name ag1', checks=[
+ self.check('type(@)', 'object'),
+ self.check('name', 'ag1'),
+ self.check('resourceGroup', resource_group),
+ self.check('frontendIpConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
+ self.check("frontendIpConfigurations[0].subnet.contains(id, 'default')", True)
])
- self.cmd('network application-gateway show-backend-health -g {} -n ag1'.format(rg))
- self.cmd('network application-gateway stop --resource-group {} -n ag1'.format(rg))
- self.cmd('network application-gateway start --resource-group {} -n ag1'.format(rg))
- self.cmd('network application-gateway delete --resource-group {} -n ag1'.format(rg))
- self.cmd('network application-gateway list --resource-group {}'.format(rg), checks=JMESPathCheckV2('length(@)', ag_count - 1))
+ self.cmd('network application-gateway show-backend-health -g {rg} -n ag1')
+ self.cmd('network application-gateway stop --resource-group {rg} -n ag1')
+ self.cmd('network application-gateway start --resource-group {rg} -n ag1')
+ self.cmd('network application-gateway delete --resource-group {rg} -n ag1')
+ self.cmd('network application-gateway list --resource-group {rg}', checks=self.check('length(@)', ag_count - 1))
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01')
@@ -172,24 +155,23 @@ class NetworkAppGatewayRedirectConfigScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_ag_basic')
def test_network_app_gateway_redirect_config(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'gateway': 'ag1',
'name': 'redirect1'
- }
- self.cmd('network application-gateway create -g {rg} -n {gateway} --no-wait'.format(**kwargs))
- self.cmd('network application-gateway wait -g {rg} -n {gateway} --exists'.format(**kwargs))
- self.cmd('network application-gateway redirect-config create --gateway-name {gateway} -g {rg} -n {name} -t permanent --include-query-string --include-path false --target-listener appGatewayHttpListener --no-wait'.format(**kwargs))
- self.cmd('network application-gateway redirect-config show --gateway-name {gateway} -g {rg} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('includePath', False),
- JMESPathCheckV2('includeQueryString', True),
- JMESPathCheckV2('redirectType', 'Permanent')
+ })
+ self.cmd('network application-gateway create -g {rg} -n {gateway} --no-wait')
+ self.cmd('network application-gateway wait -g {rg} -n {gateway} --exists')
+ self.cmd('network application-gateway redirect-config create --gateway-name {gateway} -g {rg} -n {name} -t permanent --include-query-string --include-path false --target-listener appGatewayHttpListener --no-wait')
+ self.cmd('network application-gateway redirect-config show --gateway-name {gateway} -g {rg} -n {name}', checks=[
+ self.check('includePath', False),
+ self.check('includeQueryString', True),
+ self.check('redirectType', 'Permanent')
])
- self.cmd('network application-gateway redirect-config update --gateway-name {gateway} -g {rg} -n {name} --include-path --include-query-string false --no-wait'.format(**kwargs))
- self.cmd('network application-gateway redirect-config show --gateway-name {gateway} -g {rg} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('includePath', True),
- JMESPathCheckV2('includeQueryString', False),
- JMESPathCheckV2('redirectType', 'Permanent')
+ self.cmd('network application-gateway redirect-config update --gateway-name {gateway} -g {rg} -n {name} --include-path --include-query-string false --no-wait')
+ self.cmd('network application-gateway redirect-config show --gateway-name {gateway} -g {rg} -n {name}', checks=[
+ self.check('includePath', True),
+ self.check('includeQueryString', False),
+ self.check('redirectType', 'Permanent')
])
@@ -197,20 +179,17 @@ class NetworkAppGatewayExistingSubnetScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_ag_existing_subnet')
def test_network_app_gateway_with_existing_subnet(self, resource_group):
- rg = resource_group
- vnet = self.cmd('network vnet create -g {} -n vnet2 --subnet-name subnet1'.format(rg)).get_output_in_json()
+
+ vnet = self.cmd('network vnet create -g {rg} -n vnet2 --subnet-name subnet1').get_output_in_json()
subnet_id = vnet['newVNet']['subnets'][0]['id']
+ self.kwargs['subnet_id'] = subnet_id
- with self.assertRaises(CLIError):
- # make sure it fails
- self.cmd('network application-gateway create -g {} -n ag2 --subnet {} --subnet-address-prefix 10.0.0.0/28'.format(rg, subnet_id), checks=[
- JMESPathCheckV2('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic'),
- JMESPathCheckV2('applicationGateway.frontendIPConfigurations[0].properties.subnet.id', subnet_id)
- ])
+ # make sure it fails
+ self.cmd('network application-gateway create -g {rg} -n ag2 --subnet {subnet_id} --subnet-address-prefix 10.0.0.0/28', expect_failure=True)
# now verify it succeeds
- self.cmd('network application-gateway create -g {} -n ag2 --subnet {} --servers 172.0.0.1 www.mydomain.com'.format(rg, subnet_id), checks=[
- JMESPathCheckV2('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic'),
- JMESPathCheckV2('applicationGateway.frontendIPConfigurations[0].properties.subnet.id', subnet_id)
+ self.cmd('network application-gateway create -g {rg} -n ag2 --subnet {subnet_id} --servers 172.0.0.1 www.mydomain.com', checks=[
+ self.check('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic'),
+ self.check('applicationGateway.frontendIPConfigurations[0].properties.subnet.id', subnet_id)
])
@@ -218,20 +197,20 @@ class NetworkAppGatewayNoWaitScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_ag_no_wait')
def test_network_app_gateway_no_wait(self, resource_group):
- rg = resource_group
- self.cmd('network application-gateway create -g {} -n ag1 --no-wait --connection-draining-timeout 180'.format(rg), checks=NoneCheck())
- self.cmd('network application-gateway create -g {} -n ag2 --no-wait'.format(rg), checks=NoneCheck())
- self.cmd('network application-gateway wait -g {} -n ag1 --created --interval 120'.format(rg), checks=NoneCheck())
- self.cmd('network application-gateway wait -g {} -n ag2 --created --interval 120'.format(rg), checks=NoneCheck())
- self.cmd('network application-gateway show -g {} -n ag1'.format(rg), checks=[
- JMESPathCheckV2('provisioningState', 'Succeeded'),
- JMESPathCheckV2('backendHttpSettingsCollection[0].connectionDraining.enabled', True),
- JMESPathCheckV2('backendHttpSettingsCollection[0].connectionDraining.drainTimeoutInSec', 180)
- ])
- self.cmd('network application-gateway show -g {} -n ag2'.format(rg),
- checks=JMESPathCheckV2('provisioningState', 'Succeeded'))
- self.cmd('network application-gateway delete -g {} -n ag2 --no-wait'.format(rg))
- self.cmd('network application-gateway wait -g {} -n ag2 --deleted'.format(rg))
+
+ self.cmd('network application-gateway create -g {rg} -n ag1 --no-wait --connection-draining-timeout 180', checks=self.is_empty())
+ self.cmd('network application-gateway create -g {rg} -n ag2 --no-wait', checks=self.is_empty())
+ self.cmd('network application-gateway wait -g {rg} -n ag1 --created --interval 120', checks=self.is_empty())
+ self.cmd('network application-gateway wait -g {rg} -n ag2 --created --interval 120', checks=self.is_empty())
+ self.cmd('network application-gateway show -g {rg} -n ag1', checks=[
+ self.check('provisioningState', 'Succeeded'),
+ self.check('backendHttpSettingsCollection[0].connectionDraining.enabled', True),
+ self.check('backendHttpSettingsCollection[0].connectionDraining.drainTimeoutInSec', 180)
+ ])
+ self.cmd('network application-gateway show -g {rg} -n ag2',
+ checks=self.check('provisioningState', 'Succeeded'))
+ self.cmd('network application-gateway delete -g {rg} -n ag2 --no-wait')
+ self.cmd('network application-gateway wait -g {rg} -n ag2 --deleted')
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01')
@@ -239,379 +218,409 @@ class NetworkAppGatewayPrivateIpScenarioTest20170601(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_ag_private_ip')
def test_network_app_gateway_with_private_ip(self, resource_group):
- rg = resource_group
- private_ip = '10.0.0.15'
- cert_path = os.path.join(TEST_DIR, 'TestCert.pfx')
- cert_pass = 'password'
- self.cmd('network application-gateway create -g {} -n ag3 --subnet subnet1 --private-ip-address {} --cert-file "{}" --cert-password {} --no-wait'.format(rg, private_ip, cert_path, cert_pass))
- self.cmd('network application-gateway wait -g {} -n ag3 --exists'.format(rg))
- self.cmd('network application-gateway show -g {} -n ag3'.format(rg), checks=[
- JMESPathCheckV2('frontendIpConfigurations[0].privateIpAddress', private_ip),
- JMESPathCheckV2('frontendIpConfigurations[0].privateIpAllocationMethod', 'Static')
- ])
- cert_path = os.path.join(TEST_DIR, 'TestCert2.pfx')
- self.cmd('network application-gateway ssl-cert update -g {} --gateway-name ag3 -n ag3SslCert --cert-file "{}" --cert-password {}'.format(rg, cert_path, cert_pass))
- self.cmd('network application-gateway wait -g {} -n ag3 --updated'.format(rg))
-
- self.cmd('network application-gateway ssl-policy set -g {} --gateway-name ag3 --disabled-ssl-protocols TLSv1_0 TLSv1_1 --no-wait'.format(rg))
- self.cmd('network application-gateway ssl-policy show -g {} --gateway-name ag3'.format(rg), checks=JMESPathCheck('disabledSslProtocols.length(@)', 2))
+
+ self.kwargs.update({
+ 'private_ip': '10.0.0.15',
+ 'path': os.path.join(TEST_DIR, 'TestCert.pfx'),
+ 'pass': 'password'
+ })
+ self.cmd('network application-gateway create -g {rg} -n ag3 --subnet subnet1 --private-ip-address {private_ip} --cert-file "{path}" --cert-password {pass} --no-wait')
+ self.cmd('network application-gateway wait -g {rg} -n ag3 --exists')
+ self.cmd('network application-gateway show -g {rg} -n ag3', checks=[
+ self.check('frontendIpConfigurations[0].privateIpAddress', '{private_ip}'),
+ self.check('frontendIpConfigurations[0].privateIpAllocationMethod', 'Static')
+ ])
+ self.kwargs['path'] = os.path.join(TEST_DIR, 'TestCert2.pfx')
+ self.cmd('network application-gateway ssl-cert update -g {rg} --gateway-name ag3 -n ag3SslCert --cert-file "{path}" --cert-password {pass}')
+ self.cmd('network application-gateway wait -g {rg} -n ag3 --updated')
+
+ self.cmd('network application-gateway ssl-policy set -g {rg} --gateway-name ag3 --disabled-ssl-protocols TLSv1_0 TLSv1_1 --no-wait')
+ self.cmd('network application-gateway ssl-policy show -g {rg} --gateway-name ag3',
+ checks=self.check('disabledSslProtocols.length(@)', 2))
cipher_suite = 'TLS_RSA_WITH_AES_128_CBC_SHA256'
- self.cmd('network application-gateway ssl-policy set -g {} --gateway-name ag3 --min-protocol-version TLSv1_0 --cipher-suites {} --no-wait'.format(rg, cipher_suite))
- self.cmd('network application-gateway ssl-policy show -g {} --gateway-name ag3'.format(rg), checks=[
- JMESPathCheckV2('cipherSuites.length(@)', 1),
- JMESPathCheckV2('minProtocolVersion', 'TLSv1_0'),
- JMESPathCheckV2('policyType', 'Custom')
+ self.kwargs['cipher'] = cipher_suite
+ self.cmd('network application-gateway ssl-policy set -g {rg} --gateway-name ag3 --min-protocol-version TLSv1_0 --cipher-suites {cipher} --no-wait')
+ self.cmd('network application-gateway ssl-policy show -g {rg} --gateway-name ag3', checks=[
+ self.check('cipherSuites.length(@)', 1),
+ self.check('minProtocolVersion', 'TLSv1_0'),
+ self.check('policyType', 'Custom')
])
policy_name = 'AppGwSslPolicy20150501'
- self.cmd('network application-gateway ssl-policy set -g {} --gateway-name ag3 -n {} --no-wait'.format(rg, policy_name))
- self.cmd('network application-gateway ssl-policy show -g {} --gateway-name ag3'.format(rg), checks=[
- JMESPathCheckV2('policyName', policy_name),
- JMESPathCheckV2('policyType', 'Predefined')
+ self.kwargs['policy'] = policy_name
+ self.cmd('network application-gateway ssl-policy set -g {rg} --gateway-name ag3 -n {policy} --no-wait')
+ self.cmd('network application-gateway ssl-policy show -g {rg} --gateway-name ag3', checks=[
+ self.check('policyName', policy_name),
+ self.check('policyType', 'Predefined')
])
@api_version_constraint(ResourceType.MGMT_NETWORK, max_api='2017-03-01')
-class NetworkAppGatewayPrivateIpScenarioTest20170301(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkAppGatewayPrivateIpScenarioTest20170301, self).__init__(__file__, test_method, resource_group='cli_test_ag_private_ip')
-
- def test_network_app_gateway_with_private_ip(self):
- self.execute()
-
- def body(self):
- rg = self.resource_group
- private_ip = '10.0.0.15'
- cert_path = os.path.join(TEST_DIR, 'TestCert.pfx')
- cert_pass = 'password'
- self.cmd('network application-gateway create -g {} -n ag3 --subnet subnet1 --private-ip-address {} --cert-file "{}" --cert-password {} --no-wait'.format(rg, private_ip, cert_path, cert_pass))
- self.cmd('network application-gateway wait -g {} -n ag3 --exists'.format(rg))
- self.cmd('network application-gateway show -g {} -n ag3'.format(rg), checks=[JMESPathCheck('frontendIpConfigurations[0].privateIpAddress', private_ip), JMESPathCheck('frontendIpConfigurations[0].privateIpAllocationMethod', 'Static')])
- cert_path = os.path.join(TEST_DIR, 'TestCert2.pfx')
- self.cmd('network application-gateway ssl-cert update -g {} --gateway-name ag3 -n ag3SslCert --cert-file "{}" --cert-password {}'.format(rg, cert_path, cert_pass))
- self.cmd('network application-gateway wait -g {} -n ag3 --updated'.format(rg))
- self.cmd('network application-gateway ssl-policy set -g {} --gateway-name ag3 --disabled-ssl-protocols tlsv1_0 tlsv1_1 --no-wait'.format(rg))
- self.cmd('network application-gateway ssl-policy show -g {} --gateway-name ag3'.format(rg), checks=JMESPathCheck('disabledSslProtocols.length(@)', 2))
- self.cmd('network application-gateway ssl-policy set -g {} --gateway-name ag3 --clear --no-wait'.format(rg))
- self.cmd('network application-gateway ssl-policy show -g {} --gateway-name ag3'.format(rg), checks=NoneCheck())
+class NetworkAppGatewayPrivateIpScenarioTest20170301(ScenarioTest):
+
+ @ResourceGroupPreparer(name_prefix='cli_test_ag_private_ip')
+ def test_network_app_gateway_with_private_ip(self, resource_group):
+
+ self.kwargs.update({
+ 'private_ip': '10.0.0.15',
+ 'pass': 'password',
+ 'path': os.path.join(TEST_DIR, 'TestCert.pfx')
+ })
+
+ self.cmd('network application-gateway create -g {rg} -n ag3 --subnet subnet1 --private-ip-address {private_ip} --cert-file "{path}" --cert-password {pass} --no-wait')
+ self.cmd('network application-gateway wait -g {rg} -n ag3 --exists')
+ self.cmd('network application-gateway show -g {rg} -n ag3', checks=[
+ self.check('frontendIpConfigurations[0].privateIpAddress', self.kwargs['private_ip']),
+ self.check('frontendIpConfigurations[0].privateIpAllocationMethod', 'Static')
+ ])
+ self.kwargs['path'] = os.path.join(TEST_DIR, 'TestCert2.pfx')
+ self.cmd('network application-gateway ssl-cert update -g {rg} --gateway-name ag3 -n ag3SslCert --cert-file "{path}" --cert-password {pass}')
+ self.cmd('network application-gateway wait -g {rg} -n ag3 --updated')
+ self.cmd('network application-gateway ssl-policy set -g {rg} --gateway-name ag3 --disabled-ssl-protocols tlsv1_0 tlsv1_1 --no-wait')
+ self.cmd('network application-gateway ssl-policy show -g {rg} --gateway-name ag3',
+ checks=self.check('disabledSslProtocols.length(@)', 2))
+ self.cmd('network application-gateway ssl-policy set -g {rg} --gateway-name ag3 --clear --no-wait')
+ self.cmd('network application-gateway ssl-policy show -g {rg} --gateway-name ag3',
+ checks=self.is_empty())
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01')
class NetworkAppGatewaySubresourceScenarioTest(ScenarioTest):
- def _create_ag(self, kwargs):
- self.cmd('network application-gateway create -g {rg} -n {ag} --no-wait'.format(**kwargs))
- self.cmd('network application-gateway wait -g {rg} -n {ag} --exists'.format(**kwargs))
+ def _create_ag(self):
+ self.cmd('network application-gateway create -g {rg} -n {ag} --no-wait')
+ self.cmd('network application-gateway wait -g {rg} -n {ag} --exists')
@ResourceGroupPreparer(name_prefix='cli_test_ag_address_pool')
def test_network_ag_address_pool(self, resource_group):
- kwargs = {
+ self.kwargs.update({
'ag': 'ag1',
- 'rg': resource_group,
'res': 'application-gateway address-pool',
'name': 'pool1'
- }
- self._create_ag(kwargs)
-
- self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --servers 123.4.5.6 www.mydns.com'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('length(backendAddresses)', 2),
- JMESPathCheckV2('backendAddresses[0].ipAddress', '123.4.5.6'),
- JMESPathCheckV2('backendAddresses[1].fqdn', 'www.mydns.com'),
+ })
+ self._create_ag()
+
+ self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --servers 123.4.5.6 www.mydns.com')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('length(backendAddresses)', 2),
+ self.check('backendAddresses[0].ipAddress', '123.4.5.6'),
+ self.check('backendAddresses[1].fqdn', 'www.mydns.com'),
])
- self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --servers 5.4.3.2'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('length(backendAddresses)', 1),
- JMESPathCheckV2('backendAddresses[0].ipAddress', '5.4.3.2')
+ self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --servers 5.4.3.2')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('length(backendAddresses)', 1),
+ self.check('backendAddresses[0].ipAddress', '5.4.3.2')
])
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}'.format(**kwargs))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 1))
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 2))
+ self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}')
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 1))
@ResourceGroupPreparer(name_prefix='cli_test_ag_frontend_port')
def test_network_ag_frontend_port(self, resource_group):
- kwargs = {
+ self.kwargs.update({
'ag': 'ag1',
- 'rg': resource_group,
'res': 'application-gateway frontend-port',
'name': 'myport'
- }
- self._create_ag(kwargs)
+ })
+ self._create_ag()
- self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --port 111'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('name', 'myport'),
- JMESPathCheckV2('port', 111)
+ self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --port 111')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('name', 'myport'),
+ self.check('port', 111)
])
- self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --port 112'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('name', 'myport'),
- JMESPathCheckV2('port', 112)
+ self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --port 112')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('name', 'myport'),
+ self.check('port', 112)
])
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}'.format(**kwargs))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 1))
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 2))
+ self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}')
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 1))
@ResourceGroupPreparer(name_prefix='cli_test_ag_frontend_ip_public')
def test_network_ag_frontend_ip_public(self, resource_group):
- kwargs = {
+ self.kwargs.update({
'ag': 'ag1',
- 'rg': resource_group,
'res': 'application-gateway frontend-ip',
'name': 'myfrontend',
'ip1': 'myip1',
'ip2': 'myip2'
- }
- self.cmd('network application-gateway create -g {rg} -n {ag} --no-wait'.format(**kwargs))
- self.cmd('network application-gateway wait -g {rg} -n {ag} --exists'.format(**kwargs))
+ })
+ self.cmd('network application-gateway create -g {rg} -n {ag} --no-wait')
+ self.cmd('network application-gateway wait -g {rg} -n {ag} --exists')
- self.cmd('network public-ip create -g {rg} -n {ip1}'.format(**kwargs))
- self.cmd('network public-ip create -g {rg} -n {ip2}'.format(**kwargs))
+ self.cmd('network public-ip create -g {rg} -n {ip1}')
+ self.cmd('network public-ip create -g {rg} -n {ip2}')
- self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --public-ip-address {ip1}'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('subnet', None)
+ self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --public-ip-address {ip1}')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('subnet', None)
])
# NOTE: Service states that public IP address cannot be changed. https://github.com/Azure/azure-cli/issues/4133
- # self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --public-ip-address {ip2}'.format(**kwargs))
- # self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs))
+ # self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --public-ip-address {ip2}')
+ # self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}')
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}'.format(**kwargs))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 1))
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 2))
+ self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}')
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 1))
@ResourceGroupPreparer(name_prefix='cli_test_ag_frontend_ip_private')
def test_network_ag_frontend_ip_private(self, resource_group):
- kwargs = {
+ self.kwargs.update({
'ag': 'ag1',
- 'rg': resource_group,
'res': 'application-gateway frontend-ip',
'name': 'frontendip',
'ip1': 'myip1',
'vnet1': 'vnet1',
'vnet2': 'vnet2',
'subnet': 'subnet1'
- }
- self.cmd('network public-ip create -g {rg} -n {ip1}'.format(**kwargs))
- self.cmd('network vnet create -g {rg} -n {vnet1} --subnet-name {subnet}'.format(**kwargs))
+ })
+ self.cmd('network public-ip create -g {rg} -n {ip1}')
+ self.cmd('network vnet create -g {rg} -n {vnet1} --subnet-name {subnet}')
- self.cmd('network application-gateway create -g {rg} -n {ag} --no-wait --public-ip-address {ip1} --vnet-name {vnet1} --subnet {subnet}'.format(**kwargs))
- self.cmd('network application-gateway wait -g {rg} -n {ag} --exists'.format(**kwargs))
+ self.cmd('network application-gateway create -g {rg} -n {ag} --no-wait --public-ip-address {ip1} --vnet-name {vnet1} --subnet {subnet}')
+ self.cmd('network application-gateway wait -g {rg} -n {ag} --exists')
- self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --private-ip-address 10.0.0.10 --vnet-name {vnet1} --subnet {subnet}'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
+ self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --private-ip-address 10.0.0.10 --vnet-name {vnet1} --subnet {subnet}')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
])
# NOTE: Service states that frontend subnet cannot differ from gateway subnet https://github.com/Azure/azure-cli/issues/4134
- # self.cmd('network vnet create -g {rg} -n {vnet2} --subnet-name {subnet} --address-prefix 10.0.0.0/16 --subnet-prefix 10.0.10.0/24'.format(**kwargs))
- # self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --private-ip-address 11.0.10.10 --vnet-name {vnet2} --subnet {subnet}'.format(**kwargs))
- # self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs))
+ # self.cmd('network vnet create -g {rg} -n {vnet2} --subnet-name {subnet} --address-prefix 10.0.0.0/16 --subnet-prefix 10.0.10.0/24')
+ # self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --private-ip-address 11.0.10.10 --vnet-name {vnet2} --subnet {subnet}')
+ # self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}')
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}'.format(**kwargs))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 1))
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 2))
+ self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}')
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 1))
@ResourceGroupPreparer(name_prefix='cli_test_ag_http_listener')
def test_network_ag_http_listener(self, resource_group):
- kwargs = {
+ self.kwargs.update({
'ag': 'ag1',
- 'rg': resource_group,
'res': 'application-gateway http-listener',
'name': 'mylistener'
- }
- self._create_ag(kwargs)
+ })
+ self._create_ag()
- self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --frontend-port appGatewayFrontendPort --host-name www.test.com'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('hostName', 'www.test.com')
+ self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --frontend-port appGatewayFrontendPort --host-name www.test.com')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('hostName', 'www.test.com')
])
- self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --host-name www.test2.com'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('hostName', 'www.test2.com')
+ self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --host-name www.test2.com')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('hostName', 'www.test2.com')
])
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}'.format(**kwargs))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 1))
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 2))
+ self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}')
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 1))
@ResourceGroupPreparer(name_prefix='cli_test_ag_http_settings')
def test_network_ag_http_settings(self, resource_group):
- kwargs = {
+ self.kwargs.update({
'ag': 'ag1',
- 'rg': resource_group,
'res': 'application-gateway http-settings',
'name': 'mysettings'
- }
- self._create_ag(kwargs)
-
- self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --affinity-cookie-name mycookie --connection-draining-timeout 60 --cookie-based-affinity --host-name-from-backend-pool --protocol https --timeout 50 --port 70'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('affinityCookieName', 'mycookie'),
- JMESPathCheckV2('connectionDraining.drainTimeoutInSec', 60),
- JMESPathCheckV2('connectionDraining.enabled', True),
- JMESPathCheckV2('cookieBasedAffinity', 'Enabled'),
- JMESPathCheckV2('pickHostNameFromBackendAddress', True),
- JMESPathCheckV2('port', 70),
- JMESPathCheckV2('protocol', 'Https'),
- JMESPathCheckV2('requestTimeout', 50)
- ])
- self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --affinity-cookie-name mycookie2 --connection-draining-timeout 0 --cookie-based-affinity disabled --host-name-from-backend-pool false --protocol http --timeout 40 --port 71'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('affinityCookieName', 'mycookie2'),
- JMESPathCheckV2('connectionDraining.drainTimeoutInSec', 1),
- JMESPathCheckV2('connectionDraining.enabled', False),
- JMESPathCheckV2('cookieBasedAffinity', 'Disabled'),
- JMESPathCheckV2('pickHostNameFromBackendAddress', False),
- JMESPathCheckV2('port', 71),
- JMESPathCheckV2('protocol', 'Http'),
- JMESPathCheckV2('requestTimeout', 40)
- ])
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}'.format(**kwargs))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 1))
+ })
+ self._create_ag()
+
+ self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --affinity-cookie-name mycookie --connection-draining-timeout 60 --cookie-based-affinity --host-name-from-backend-pool --protocol https --timeout 50 --port 70')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('affinityCookieName', 'mycookie'),
+ self.check('connectionDraining.drainTimeoutInSec', 60),
+ self.check('connectionDraining.enabled', True),
+ self.check('cookieBasedAffinity', 'Enabled'),
+ self.check('pickHostNameFromBackendAddress', True),
+ self.check('port', 70),
+ self.check('protocol', 'Https'),
+ self.check('requestTimeout', 50)
+ ])
+ self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --affinity-cookie-name mycookie2 --connection-draining-timeout 0 --cookie-based-affinity disabled --host-name-from-backend-pool false --protocol http --timeout 40 --port 71')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('affinityCookieName', 'mycookie2'),
+ self.check('connectionDraining.drainTimeoutInSec', 1),
+ self.check('connectionDraining.enabled', False),
+ self.check('cookieBasedAffinity', 'Disabled'),
+ self.check('pickHostNameFromBackendAddress', False),
+ self.check('port', 71),
+ self.check('protocol', 'Http'),
+ self.check('requestTimeout', 40)
+ ])
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 2))
+ self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}')
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 1))
@ResourceGroupPreparer(name_prefix='cli_test_ag_probe')
def test_network_ag_probe(self, resource_group):
- kwargs = {
+ self.kwargs.update({
'ag': 'ag1',
- 'rg': resource_group,
'res': 'application-gateway probe',
'name': 'myprobe'
- }
- self._create_ag(kwargs)
-
- self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --path /test --protocol http --interval 25 --timeout 100 --threshold 10 --min-servers 2 --host www.test.com --match-status-codes 200 204 --host-name-from-http-settings false'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('path', '/test'),
- JMESPathCheckV2('protocol', 'Http'),
- JMESPathCheckV2('interval', 25),
- JMESPathCheckV2('timeout', 100),
- JMESPathCheckV2('unhealthyThreshold', 10),
- JMESPathCheckV2('minServers', 2),
- JMESPathCheckV2('host', 'www.test.com'),
- JMESPathCheckV2('length(match.statusCodes)', 2),
- JMESPathCheckV2('pickHostNameFromBackendHttpSettings', False)
- ])
- self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --path /test2 --protocol https --interval 26 --timeout 101 --threshold 11 --min-servers 3 --host "" --match-status-codes 201 --host-name-from-http-settings'.format(**kwargs))
- self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs), checks=[
- JMESPathCheckV2('path', '/test2'),
- JMESPathCheckV2('protocol', 'Https'),
- JMESPathCheckV2('interval', 26),
- JMESPathCheckV2('timeout', 101),
- JMESPathCheckV2('unhealthyThreshold', 11),
- JMESPathCheckV2('minServers', 3),
- JMESPathCheckV2('host', ''),
- JMESPathCheckV2('length(match.statusCodes)', 1),
- JMESPathCheckV2('pickHostNameFromBackendHttpSettings', True)
- ])
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 1))
- self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}'.format(**kwargs))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 0))
+ })
+ self._create_ag()
+
+ self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --path /test --protocol http --interval 25 --timeout 100 --threshold 10 --min-servers 2 --host www.test.com --match-status-codes 200 204 --host-name-from-http-settings false')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('path', '/test'),
+ self.check('protocol', 'Http'),
+ self.check('interval', 25),
+ self.check('timeout', 100),
+ self.check('unhealthyThreshold', 10),
+ self.check('minServers', 2),
+ self.check('host', 'www.test.com'),
+ self.check('length(match.statusCodes)', 2),
+ self.check('pickHostNameFromBackendHttpSettings', False)
+ ])
+ self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --path /test2 --protocol https --interval 26 --timeout 101 --threshold 11 --min-servers 3 --host "" --match-status-codes 201 --host-name-from-http-settings')
+ self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}', checks=[
+ self.check('path', '/test2'),
+ self.check('protocol', 'Https'),
+ self.check('interval', 26),
+ self.check('timeout', 101),
+ self.check('unhealthyThreshold', 11),
+ self.check('minServers', 3),
+ self.check('host', ''),
+ self.check('length(match.statusCodes)', 1),
+ self.check('pickHostNameFromBackendHttpSettings', True)
+ ])
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 1))
+ self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}')
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 0))
@ResourceGroupPreparer(name_prefix='cli_test_ag_rule')
def test_network_ag_rule(self, resource_group):
- kwargs = {
+ self.kwargs.update({
'ag': 'ag1',
- 'rg': resource_group,
'res': 'application-gateway rule',
'name': 'myrule'
- }
- self._create_ag(kwargs)
+ })
+ self._create_ag()
- self.cmd('network application-gateway http-listener create -g {rg} --gateway-name {ag} -n mylistener --no-wait --frontend-port appGatewayFrontendPort --host-name www.test.com'.format(**kwargs))
- self.cmd('network application-gateway http-listener create -g {rg} --gateway-name {ag} -n mylistener2 --no-wait --frontend-port appGatewayFrontendPort --host-name www.test2.com'.format(**kwargs))
+ self.cmd('network application-gateway http-listener create -g {rg} --gateway-name {ag} -n mylistener --no-wait --frontend-port appGatewayFrontendPort --host-name www.test.com')
+ self.cmd('network application-gateway http-listener create -g {rg} --gateway-name {ag} -n mylistener2 --no-wait --frontend-port appGatewayFrontendPort --host-name www.test2.com')
- self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --http-listener mylistener'.format(**kwargs))
- rule = self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs)).get_output_in_json()
+ self.cmd('network {res} create -g {rg} --gateway-name {ag} -n {name} --no-wait --http-listener mylistener')
+ rule = self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}').get_output_in_json()
self.assertTrue(rule['httpListener']['id'].endswith('mylistener'))
- self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --http-listener mylistener2'.format(**kwargs))
- rule = self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}'.format(**kwargs)).get_output_in_json()
+ self.cmd('network {res} update -g {rg} --gateway-name {ag} -n {name} --no-wait --http-listener mylistener2')
+ rule = self.cmd('network {res} show -g {rg} --gateway-name {ag} -n {name}').get_output_in_json()
self.assertTrue(rule['httpListener']['id'].endswith('mylistener2'))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}'.format(**kwargs))
- self.cmd('network {res} list -g {rg} --gateway-name {ag}'.format(**kwargs), checks=JMESPathCheckV2('length(@)', 1))
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 2))
+ self.cmd('network {res} delete -g {rg} --gateway-name {ag} --no-wait -n {name}')
+ self.cmd('network {res} list -g {rg} --gateway-name {ag}', checks=self.check('length(@)', 1))
class NetworkAppGatewayPublicIpScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_ag_public_ip')
def test_network_app_gateway_with_public_ip(self, resource_group):
- rg = resource_group
- public_ip_name = 'publicip4'
- self.cmd('network application-gateway create -g {} -n test4 --subnet subnet1 --vnet-name vnet4 --vnet-address-prefix 10.0.0.1/16 --subnet-address-prefix 10.0.0.1/28 --public-ip-address {}'.format(rg, public_ip_name), checks=[
- JMESPathCheckV2("applicationGateway.frontendIPConfigurations[0].properties.publicIPAddress.contains(id, '{}')".format(public_ip_name), True),
- JMESPathCheckV2('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic')
- ])
-
-
-if supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-03-01'):
- class NetworkAppGatewayWafConfigScenarioTest(ScenarioTest):
-
- @ResourceGroupPreparer(name_prefix='cli_test_app_gateway_waf_config')
- def test_network_app_gateway_waf_config(self, resource_group):
- rg = resource_group
- public_ip_name = 'pip1'
- self.cmd('network application-gateway create -g {} -n ag1 --subnet subnet1 --vnet-name vnet1 --public-ip-address {} --sku WAF_Medium'.format(rg, public_ip_name), checks=[JMESPathCheckV2("applicationGateway.frontendIPConfigurations[0].properties.publicIPAddress.contains(id, '{}')".format(public_ip_name), True), JMESPathCheckV2('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic')])
- self.cmd('network application-gateway waf-config set -g {} --gateway-name ag1 --enabled true --firewall-mode prevention --rule-set-version 2.2.9 --disabled-rule-groups crs_30_http_policy --disabled-rules 981175 981176 --no-wait'.format(rg))
- self.cmd('network application-gateway waf-config show -g {} --gateway-name ag1'.format(rg), checks=[
- JMESPathCheckV2('enabled', True),
- JMESPathCheckV2('firewallMode', 'Prevention'),
- JMESPathCheckV2('length(disabledRuleGroups)', 2),
- JMESPathCheckV2('length(disabledRuleGroups[1].rules)', 2)
- ])
-else:
- class NetworkAppGatewayWafScenarioTest(ResourceGroupVCRTestBase):
-
- def __init__(self, test_method):
- super(NetworkAppGatewayWafScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_ag_waf')
-
- def test_network_app_gateway_waf(self):
- self.execute()
-
- def body(self):
- rg = self.resource_group
- public_ip_name = 'pip1'
- self.cmd('network application-gateway create -g {} -n ag1 --subnet subnet1 --vnet-name vnet4 --public-ip-address {} --sku WAF_Medium'.format(rg, public_ip_name), checks=[JMESPathCheck("applicationGateway.frontendIPConfigurations[0].properties.publicIPAddress.contains(id, '{}')".format(public_ip_name), True), JMESPathCheck('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic')])
- self.cmd('network application-gateway waf-config set -g {} --gateway-name ag1 --enabled true --firewall-mode detection --no-wait'.format(rg))
- self.cmd('network application-gateway waf-config show -g {} --gateway-name ag1'.format(rg), checks=[JMESPathCheck('enabled', True), JMESPathCheck('firewallMode', 'Detection')])
- self.cmd('network application-gateway waf-config set -g {} --gateway-name ag1 --enabled true --firewall-mode prevention --no-wait'.format(rg))
- self.cmd('network application-gateway waf-config show -g {} --gateway-name ag1'.format(rg), checks=[JMESPathCheck('enabled', True), JMESPathCheck('firewallMode', 'Prevention')])
- self.cmd('network application-gateway waf-config set -g {} --gateway-name ag1 --enabled false --no-wait'.format(rg))
- self.cmd('network application-gateway waf-config show -g {} --gateway-name ag1'.format(rg), checks=[JMESPathCheck('enabled', False), JMESPathCheck('firewallMode', 'Detection')])
-
-
-class NetworkPublicIpScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkPublicIpScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_public_ip')
-
- def test_network_public_ip(self):
- self.execute()
-
- def body(self):
- s = self
- public_ip_dns = 'pubipdns'
- public_ip_no_dns = 'pubipnodns'
- dns = 'woot'
- rg = s.resource_group
- s.cmd('network public-ip create -g {} -n {} --dns-name {} --allocation-method static'.format(rg, public_ip_dns, dns), checks=[JMESPathCheck('publicIp.provisioningState', 'Succeeded'), JMESPathCheck('publicIp.publicIpAllocationMethod', 'Static'), JMESPathCheck('publicIp.dnsSettings.domainNameLabel', dns)])
- s.cmd('network public-ip create -g {} -n {}'.format(rg, public_ip_no_dns), checks=[JMESPathCheck('publicIp.provisioningState', 'Succeeded'), JMESPathCheck('publicIp.publicIpAllocationMethod', 'Dynamic'), JMESPathCheck('publicIp.dnsSettings', None)])
- s.cmd('network public-ip update -g {} -n {} --allocation-method static --dns-name wowza --idle-timeout 10'.format(rg, public_ip_no_dns), checks=[JMESPathCheck('publicIpAllocationMethod', 'Static'), JMESPathCheck('dnsSettings.domainNameLabel', 'wowza'), JMESPathCheck('idleTimeoutInMinutes', 10)])
-
- s.cmd('network public-ip list -g {}'.format(rg), checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?resourceGroup == '{}']) == length(@)".format(rg), True)])
-
- s.cmd('network public-ip show -g {} -n {}'.format(rg, public_ip_dns), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('name', public_ip_dns), JMESPathCheck('resourceGroup', rg), ])
-
- s.cmd('network public-ip delete -g {} -n {}'.format(rg, public_ip_dns))
- s.cmd('network public-ip list -g {}'.format(rg), checks=JMESPathCheck("length[?name == '{}']".format(public_ip_dns), None))
+
+ self.kwargs['ip'] = 'publicip4'
+ self.cmd('network application-gateway create -g {rg} -n test4 --subnet subnet1 --vnet-name vnet4 --vnet-address-prefix 10.0.0.1/16 --subnet-address-prefix 10.0.0.1/28 --public-ip-address {ip}', checks=[
+ self.check("applicationGateway.frontendIPConfigurations[0].properties.publicIPAddress.contains(id, '{ip}')", True),
+ self.check('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic')
+ ])
+
+
+@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-03-01')
+class NetworkAppGatewayWafConfigScenarioTest20170301(ScenarioTest):
+
+ @ResourceGroupPreparer(name_prefix='cli_test_app_gateway_waf_config')
+ def test_network_app_gateway_waf_config(self, resource_group):
+
+ self.kwargs['ip'] = 'pip1'
+ self.cmd('network application-gateway create -g {rg} -n ag1 --subnet subnet1 --vnet-name vnet1 --public-ip-address {ip} --sku WAF_Medium', checks=[
+ self.check("applicationGateway.frontendIPConfigurations[0].properties.publicIPAddress.contains(id, '{ip}')", True),
+ self.check('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic')
+ ])
+ self.cmd('network application-gateway waf-config set -g {rg} --gateway-name ag1 --enabled true --firewall-mode prevention --rule-set-version 2.2.9 --disabled-rule-groups crs_30_http_policy --disabled-rules 981175 981176 --no-wait')
+ self.cmd('network application-gateway waf-config show -g {rg} --gateway-name ag1', checks=[
+ self.check('enabled', True),
+ self.check('firewallMode', 'Prevention'),
+ self.check('length(disabledRuleGroups)', 2),
+ self.check('length(disabledRuleGroups[1].rules)', 2)
+ ])
+
+
+@api_version_constraint(ResourceType.MGMT_NETWORK, max_api='2016-12-01')
+class NetworkAppGatewayWafScenarioTest(ScenarioTest):
+
+ @ResourceGroupPreparer(name_prefix='cli_test_ag_waf')
+ def test_network_app_gateway_waf(self, resource_group):
+
+ self.kwargs['ip'] = 'pip1'
+ self.cmd('network application-gateway create -g {rg} -n ag1 --subnet subnet1 --vnet-name vnet4 --public-ip-address {ip} --sku WAF_Medium', checks=[
+ self.check("applicationGateway.frontendIPConfigurations[0].properties.publicIPAddress.contains(id, '{ip}')", True),
+ self.check('applicationGateway.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic')
+ ])
+ self.cmd('network application-gateway waf-config set -g {rg} --gateway-name ag1 --enabled true --firewall-mode detection --no-wait')
+ self.cmd('network application-gateway waf-config show -g {rg} --gateway-name ag1', checks=[
+ self.check('enabled', True),
+ self.check('firewallMode', 'Detection')
+ ])
+ self.cmd('network application-gateway waf-config set -g {rg} --gateway-name ag1 --enabled true --firewall-mode prevention --no-wait')
+ self.cmd('network application-gateway waf-config show -g {rg} --gateway-name ag1', checks=[
+ self.check('enabled', True),
+ self.check('firewallMode', 'Prevention')
+ ])
+ self.cmd('network application-gateway waf-config set -g {rg} --gateway-name ag1 --enabled false --no-wait')
+ self.cmd('network application-gateway waf-config show -g {rg} --gateway-name ag1', checks=[
+ self.check('enabled', False),
+ self.check('firewallMode', 'Detection')
+ ])
+
+
+class NetworkPublicIpScenarioTest(ScenarioTest):
+
+ @ResourceGroupPreparer(name_prefix='cli_test_public_ip')
+ def test_network_public_ip(self, resource_group):
+
+ self.kwargs.update({
+ 'ip1': 'pubipdns',
+ 'ip2': 'pubipnodns',
+ 'dns': 'woot'
+ })
+ self.cmd('network public-ip create -g {rg} -n {ip1} --dns-name {dns} --allocation-method static', checks=[
+ self.check('publicIp.provisioningState', 'Succeeded'),
+ self.check('publicIp.publicIpAllocationMethod', 'Static'),
+ self.check('publicIp.dnsSettings.domainNameLabel', '{dns}')
+ ])
+ self.cmd('network public-ip create -g {rg} -n {ip2}', checks=[
+ self.check('publicIp.provisioningState', 'Succeeded'),
+ self.check('publicIp.publicIpAllocationMethod', 'Dynamic'),
+ self.check('publicIp.dnsSettings', None)
+ ])
+ self.cmd('network public-ip update -g {rg} -n {ip2} --allocation-method static --dns-name wowza --idle-timeout 10', checks=[
+ self.check('publicIpAllocationMethod', 'Static'),
+ self.check('dnsSettings.domainNameLabel', 'wowza'),
+ self.check('idleTimeoutInMinutes', 10)
+ ])
+
+ self.cmd('network public-ip list -g {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?resourceGroup == '{rg}']) == length(@)", True)
+ ])
+
+ self.cmd('network public-ip show -g {rg} -n {ip1}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('name', '{ip1}'),
+ self.check('resourceGroup', '{rg}')
+ ])
+
+ self.cmd('network public-ip delete -g {rg} -n {ip1}')
+ self.cmd('network public-ip list -g {rg}',
+ checks=self.check("length[?name == '{ip1}']", None))
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01')
@@ -619,14 +628,11 @@ class NetworkZonedPublicIpScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_zoned_public_ip')
def test_network_zoned_public_ip(self, resource_group):
- kwargs = {
- 'rg': resource_group,
- 'ip': 'pubip'
- }
- self.cmd('network public-ip create -g {rg} -n {ip} -l centralus -z 2'.format(**kwargs),
- checks=JMESPathCheck('publicIp.zones[0]', '2'))
+ self.kwargs['ip'] = 'pubip'
+ self.cmd('network public-ip create -g {rg} -n {ip} -l centralus -z 2',
+ checks=self.check('publicIp.zones[0]', '2'))
- table_output = self.cmd('network public-ip show -g {rg} -n {ip} -otable'.format(**kwargs)).output
+ table_output = self.cmd('network public-ip show -g {rg} -n {ip} -otable').output
self.assertEqual(table_output.splitlines()[2].split(), ['pubip', resource_group, 'centralus', '2', 'IPv4', 'Dynamic', '4', 'Succeeded'])
@@ -634,84 +640,106 @@ class NetworkRouteFilterScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_network_route_filter')
def test_network_route_filter(self, resource_group):
- kwargs = {
- 'rg': resource_group,
- 'filter': 'filter1'
- }
- self.cmd('network route-filter create -g {rg} -n {filter}'.format(**kwargs))
- self.cmd('network route-filter update -g {rg} -n {filter}'.format(**kwargs))
- self.cmd('network route-filter show -g {rg} -n {filter}'.format(**kwargs))
- self.cmd('network route-filter list -g {rg}'.format(**kwargs))
+ self.kwargs['filter'] = 'filter1'
+ self.cmd('network route-filter create -g {rg} -n {filter}')
+ self.cmd('network route-filter update -g {rg} -n {filter}')
+ self.cmd('network route-filter show -g {rg} -n {filter}')
+ self.cmd('network route-filter list -g {rg}')
self.cmd('network route-filter rule list-service-communities')
- with self.assertRaises(CLIError):
- self.cmd('network route-filter rule create -g {rg} --filter-name {filter} -n rule1 --communities 12076:5040 12076:5030 --access allow'.format(**kwargs))
- with self.assertRaises(Exception):
- self.cmd('network route-filter rule update -g {rg} --filter-name {filter} -n rule1 --set access=Deny'.format(**kwargs))
- self.cmd('network route-filter rule show -g {rg} --filter-name {filter} -n rule1'.format(**kwargs))
- self.cmd('network route-filter rule list -g {rg} --filter-name {filter}'.format(**kwargs))
- self.cmd('network route-filter rule delete -g {rg} --filter-name {filter} -n rule1'.format(**kwargs))
-
- self.cmd('network route-filter delete -g {rg} -n {filter}'.format(**kwargs))
+ self.cmd('network route-filter rule create -g {rg} --filter-name {filter} -n rule1 --communities 12076:5040 12076:5030 --access allow', expect_failure=True)
+ self.cmd('network route-filter rule update -g {rg} --filter-name {filter} -n rule1 --set access=Deny', expect_failure=True)
+ self.cmd('network route-filter rule show -g {rg} --filter-name {filter} -n rule1')
+ self.cmd('network route-filter rule list -g {rg} --filter-name {filter}')
+ self.cmd('network route-filter rule delete -g {rg} --filter-name {filter} -n rule1')
+ self.cmd('network route-filter delete -g {rg} -n {filter}')
-class NetworkExpressRouteScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkExpressRouteScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_express_route')
- self.circuit_name = 'circuit1'
- self.resource_type = 'Microsoft.Network/expressRouteCircuits'
- def test_network_express_route(self):
- self.execute()
+class NetworkExpressRouteScenarioTest(ScenarioTest):
def _test_express_route_peering(self):
- rg = self.resource_group
- circuit = self.circuit_name
- def _create_peering(peering, peer_asn, vlan, primary_prefix, seconary_prefix):
- self.cmd('network express-route peering create -g {} --circuit-name {} --peering-type {} --peer-asn {} --vlan-id {} --primary-peer-subnet {} --secondary-peer-subnet {}'.format(rg, circuit, peering, peer_asn, vlan, primary_prefix, seconary_prefix))
+ def _create_peering(peering, peer_asn, vlan, primary_prefix, secondary_prefix):
+ self.kwargs.update({
+ 'peering': peering,
+ 'asn': peer_asn,
+ 'vlan': vlan,
+ 'pri_prefix': primary_prefix,
+ 'sec_prefix': secondary_prefix
+ })
+ self.cmd('network express-route peering create -g {rg} --circuit-name {er} --peering-type {peering} --peer-asn {asn} --vlan-id {vlan} --primary-peer-subnet {pri_prefix} --secondary-peer-subnet {sec_prefix}')
# create public and private peerings
_create_peering('AzurePublicPeering', 10000, 100, '100.0.0.0/30', '101.0.0.0/30')
_create_peering('AzurePrivatePeering', 10001, 101, '102.0.0.0/30', '103.0.0.0/30')
- self.cmd('network express-route peering create -g {} --circuit-name {} --peering-type MicrosoftPeering --peer-asn 10002 --vlan-id 103 --primary-peer-subnet 104.0.0.0/30 --secondary-peer-subnet 105.0.0.0/30 --advertised-public-prefixes 104.0.0.0/30 --customer-asn 10000 --routing-registry-name level3'.format(rg, circuit), allowed_exceptions='not authorized for creating Microsoft Peering')
- self.cmd('network express-route peering show -g {} --circuit-name {} -n MicrosoftPeering'.format(rg, circuit), checks=[JMESPathCheck('microsoftPeeringConfig.advertisedPublicPrefixes[0]', '104.0.0.0/30'), JMESPathCheck('microsoftPeeringConfig.customerAsn', 10000), JMESPathCheck('microsoftPeeringConfig.routingRegistryName', 'LEVEL3')])
+ self.cmd('network express-route peering create -g {rg} --circuit-name {er} --peering-type MicrosoftPeering --peer-asn 10002 --vlan-id 103 --primary-peer-subnet 104.0.0.0/30 --secondary-peer-subnet 105.0.0.0/30 --advertised-public-prefixes 104.0.0.0/30 --customer-asn 10000 --routing-registry-name level3', expect_failure=True)
+ self.cmd('network express-route peering show -g {rg} --circuit-name {er} -n MicrosoftPeering', checks=[
+ self.check('microsoftPeeringConfig.advertisedPublicPrefixes[0]', '104.0.0.0/30'),
+ self.check('microsoftPeeringConfig.customerAsn', 10000),
+ self.check('microsoftPeeringConfig.routingRegistryName', 'LEVEL3')
+ ])
- self.cmd('network express-route peering delete -g {} --circuit-name {} -n MicrosoftPeering'.format(rg, circuit))
+ self.cmd('network express-route peering delete -g {rg} --circuit-name {er} -n MicrosoftPeering')
- self.cmd('network express-route peering list --resource-group {} --circuit-name {}'.format(rg, circuit), checks=JMESPathCheck('length(@)', 2))
+ self.cmd('network express-route peering list --resource-group {rg} --circuit-name {er}',
+ checks=self.check('length(@)', 2))
- self.cmd('network express-route peering update -g {} --circuit-name {} -n AzurePublicPeering --set vlanId=200'.format(rg, circuit), checks=JMESPathCheck('vlanId', 200))
+ self.cmd('network express-route peering update -g {rg} --circuit-name {er} -n AzurePublicPeering --set vlanId=200',
+ checks=self.check('vlanId', 200))
def _test_express_route_auth(self):
- rg = self.resource_group
- circuit = self.circuit_name
- self.cmd('network express-route auth create -g {} --circuit-name {} -n auth1'.format(rg, circuit), checks=JMESPathCheck('authorizationUseStatus', 'Available'))
+ self.cmd('network express-route auth create -g {rg} --circuit-name {er} -n auth1',
+ checks=self.check('authorizationUseStatus', 'Available'))
- self.cmd('network express-route auth list --resource-group {} --circuit-name {}'.format(rg, circuit), checks=JMESPathCheck('length(@)', 1))
+ self.cmd('network express-route auth list --resource-group {rg} --circuit-name {er}',
+ checks=self.check('length(@)', 1))
- self.cmd('network express-route auth show -g {} --circuit-name {} -n auth1'.format(rg, circuit), checks=JMESPathCheck('authorizationUseStatus', 'Available'))
+ self.cmd('network express-route auth show -g {rg} --circuit-name {er} -n auth1',
+ checks=self.check('authorizationUseStatus', 'Available'))
- self.cmd('network express-route auth delete -g {} --circuit-name {} -n auth1'.format(rg, circuit))
+ self.cmd('network express-route auth delete -g {rg} --circuit-name {er} -n auth1')
- self.cmd('network express-route auth list --resource-group {} --circuit-name {}'.format(rg, circuit), checks=NoneCheck())
+ self.cmd('network express-route auth list --resource-group {rg} --circuit-name {er}', checks=self.is_empty())
- def body(self):
- rg = self.resource_group
- circuit = self.circuit_name
+ @ResourceGroupPreparer(name_prefix='cli_test_express_route')
+ def test_network_express_route(self, resource_group):
- self.cmd('network express-route list-service-providers', checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format('Microsoft.Network/expressRouteServiceProviders'), True)])
+ self.kwargs = {
+ 'rg': resource_group,
+ 'er': 'circuit1',
+ 'rt': 'Microsoft.Network/expressRouteCircuits'
+ }
+
+ self.cmd('network express-route list-service-providers', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == 'Microsoft.Network/expressRouteServiceProviders']) == length(@)", True)
+ ])
# Premium SKU required to create MicrosoftPeering settings
- self.cmd('network express-route create -g {} -n {} --bandwidth 50 --provider "Microsoft ER Test" --peering-location Area51 --sku-tier Premium'.format(rg, circuit))
- self.cmd('network express-route list', checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format(self.resource_type), True)])
- self.cmd('network express-route list --resource-group {}'.format(rg), checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format(self.resource_type), True), JMESPathCheck("length([?resourceGroup == '{}']) == length(@)".format(rg), True)])
- self.cmd('network express-route show --resource-group {} --name {}'.format(rg, circuit), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('type', self.resource_type), JMESPathCheck('name', circuit), JMESPathCheck('resourceGroup', rg), ])
- self.cmd('network express-route get-stats --resource-group {} --name {}'.format(rg, circuit), checks=JMESPathCheck('type(@)', 'object'))
+ self.cmd('network express-route create -g {rg} -n {er} --bandwidth 50 --provider "Microsoft ER Test" --peering-location Area51 --sku-tier Premium')
+ self.cmd('network express-route list', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True)
+ ])
+ self.cmd('network express-route list --resource-group {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True),
+ self.check("length([?resourceGroup == '{rg}']) == length(@)", True)
+ ])
+ self.cmd('network express-route show --resource-group {rg} --name {er}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('type', '{rt}'),
+ self.check('name', '{er}'),
+ self.check('resourceGroup', '{rg}')
+ ])
+ self.cmd('network express-route get-stats --resource-group {rg} --name {er}',
+ checks=self.check('type(@)', 'object'))
- self.cmd('network express-route update -g {} -n {} --set tags.test=Test'.format(rg, circuit), checks=JMESPathCheck('tags', {'test': 'Test'}))
+ self.cmd('network express-route update -g {rg} -n {er} --set tags.test=Test',
+ checks=self.check('tags', {'test': 'Test'}))
self._test_express_route_auth()
@@ -719,12 +747,12 @@ def body(self):
# because the circuit isn't actually provisioned, these commands will not return anything useful
# so we will just verify that the command makes it through the SDK without error.
- self.cmd('network express-route list-arp-tables --resource-group {} --name {} --peering-name azureprivatepeering --path primary'.format(rg, circuit))
- self.cmd('network express-route list-route-tables --resource-group {} --name {} --peering-name azureprivatepeering --path primary'.format(rg, circuit))
+ self.cmd('network express-route list-arp-tables --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary')
+ self.cmd('network express-route list-route-tables --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary')
- self.cmd('network express-route delete --resource-group {} --name {}'.format(rg, circuit))
+ self.cmd('network express-route delete --resource-group {rg} --name {er}')
# Expecting no results as we just deleted the only express route in the resource group
- self.cmd('network express-route list --resource-group {}'.format(rg), checks=NoneCheck())
+ self.cmd('network express-route list --resource-group {rg}', checks=self.is_empty())
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01')
@@ -733,522 +761,552 @@ class NetworkExpressRouteIPv6PeeringScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_express_route_ipv6_peering')
def test_network_express_route_ipv6_peering(self, resource_group):
- rg = resource_group
- circuit = 'circuit1'
+ self.kwargs['er'] = 'circuit1'
# Premium SKU required to create MicrosoftPeering settings
- self.cmd('network express-route create -g {} -n {} --bandwidth 50 --provider "Microsoft ER Test" --peering-location Area51 --sku-tier Premium'.format(rg, circuit))
- self.cmd('network express-route peering create -g {} --circuit-name {} --peering-type MicrosoftPeering --peer-asn 10002 --vlan-id 103 --primary-peer-subnet 104.0.0.0/30 --secondary-peer-subnet 105.0.0.0/30 --advertised-public-prefixes 104.0.0.0/30 --customer-asn 10000 --routing-registry-name level3'.format(rg, circuit))
- self.cmd('network express-route peering update -g {} --circuit-name {} -n MicrosoftPeering --ip-version ipv6 --primary-peer-subnet 2001:db00::/126 --secondary-peer-subnet 2002:db00::/126 --advertised-public-prefixes 2001:db00::/126 --customer-asn 100001 --routing-registry-name level3'.format(rg, circuit))
- self.cmd('network express-route peering show -g {} --circuit-name {} -n MicrosoftPeering'.format(rg, circuit), checks=[
- JMESPathCheckV2('microsoftPeeringConfig.advertisedPublicPrefixes[0]', '104.0.0.0/30'),
- JMESPathCheckV2('microsoftPeeringConfig.customerAsn', 10000),
- JMESPathCheckV2('microsoftPeeringConfig.routingRegistryName', 'LEVEL3'),
- JMESPathCheckV2('ipv6PeeringConfig.microsoftPeeringConfig.advertisedPublicPrefixes[0]', '2001:db00::/126'),
- JMESPathCheckV2('ipv6PeeringConfig.microsoftPeeringConfig.customerAsn', 100001),
- JMESPathCheckV2('ipv6PeeringConfig.state', 'Enabled')
+ self.cmd('network express-route create -g {rg} -n {er} --bandwidth 50 --provider "Microsoft ER Test" --peering-location Area51 --sku-tier Premium')
+ self.cmd('network express-route peering create -g {rg} --circuit-name {er} --peering-type MicrosoftPeering --peer-asn 10002 --vlan-id 103 --primary-peer-subnet 104.0.0.0/30 --secondary-peer-subnet 105.0.0.0/30 --advertised-public-prefixes 104.0.0.0/30 --customer-asn 10000 --routing-registry-name level3')
+ self.cmd('network express-route peering update -g {rg} --circuit-name {er} -n MicrosoftPeering --ip-version ipv6 --primary-peer-subnet 2001:db00::/126 --secondary-peer-subnet 2002:db00::/126 --advertised-public-prefixes 2001:db00::/126 --customer-asn 100001 --routing-registry-name level3')
+ self.cmd('network express-route peering show -g {rg} --circuit-name {er} -n MicrosoftPeering', checks=[
+ self.check('microsoftPeeringConfig.advertisedPublicPrefixes[0]', '104.0.0.0/30'),
+ self.check('microsoftPeeringConfig.customerAsn', 10000),
+ self.check('microsoftPeeringConfig.routingRegistryName', 'LEVEL3'),
+ self.check('ipv6PeeringConfig.microsoftPeeringConfig.advertisedPublicPrefixes[0]', '2001:db00::/126'),
+ self.check('ipv6PeeringConfig.microsoftPeeringConfig.customerAsn', 100001),
+ self.check('ipv6PeeringConfig.state', 'Enabled')
])
-class NetworkLoadBalancerScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkLoadBalancerScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_load_balancer')
- self.lb_name = 'lb'
- self.resource_type = 'Microsoft.Network/loadBalancers'
+class NetworkLoadBalancerScenarioTest(ScenarioTest):
- def test_network_load_balancer(self):
- self.execute()
+ @ResourceGroupPreparer(name_prefix='cli_test_load_balancer')
+ def test_network_lb(self, resource_group):
+
+ self.kwargs.update({
+ 'lb': 'lb',
+ 'rt': 'Microsoft.Network/loadBalancers',
+ 'vnet': 'mytestvnet',
+ 'pri_ip': '10.0.0.15',
+ 'pub_ip': 'publicip4'
+ })
- def body(self):
# test lb create with min params (new ip)
- self.cmd('network lb create -n {}1 -g {}'.format(self.lb_name, self.resource_group), checks=[JMESPathCheck('loadBalancer.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic'), JMESPathCheck('loadBalancer.frontendIPConfigurations[0].resourceGroup', self.resource_group)])
+ self.cmd('network lb create -n {lb}1 -g {rg}', checks=[
+ self.check('loadBalancer.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic'),
+ self.check('loadBalancer.frontendIPConfigurations[0].resourceGroup', '{rg}')
+ ])
# test internet facing load balancer with new static public IP
- self.cmd('network lb create -n {}2 -g {} --public-ip-address-allocation static'.format(self.lb_name, self.resource_group))
- self.cmd('network public-ip show -g {} -n PublicIP{}2'.format(self.resource_group, self.lb_name), checks=JMESPathCheck('publicIpAllocationMethod', 'Static'))
+ self.cmd('network lb create -n {lb}2 -g {rg} --public-ip-address-allocation static')
+ self.cmd('network public-ip show -g {rg} -n PublicIP{lb}2',
+ checks=self.check('publicIpAllocationMethod', 'Static'))
# test internal load balancer create (existing subnet ID)
- vnet_name = 'mytestvnet'
- private_ip = '10.0.0.15'
- vnet = self.cmd('network vnet create -n {} -g {} --subnet-name default'.format(vnet_name, self.resource_group))
- subnet_id = vnet['newVNet']['subnets'][0]['id']
- self.cmd('network lb create -n {}3 -g {} --subnet {} --private-ip-address {}'.format(self.lb_name, self.resource_group, subnet_id, private_ip), checks=[JMESPathCheck('loadBalancer.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Static'), JMESPathCheck('loadBalancer.frontendIPConfigurations[0].properties.privateIPAddress', private_ip), JMESPathCheck('loadBalancer.frontendIPConfigurations[0].resourceGroup', self.resource_group), JMESPathCheck("loadBalancer.frontendIPConfigurations[0].properties.subnet.id", subnet_id)])
+ self.kwargs['subnet_id'] = self.cmd('network vnet create -n {vnet} -g {rg} --subnet-name default').get_output_in_json()['newVNet']['subnets'][0]['id']
+ self.cmd('network lb create -n {lb}3 -g {rg} --subnet {subnet_id} --private-ip-address {pri_ip}', checks=[
+ self.check('loadBalancer.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Static'),
+ self.check('loadBalancer.frontendIPConfigurations[0].properties.privateIPAddress', '{pri_ip}'),
+ self.check('loadBalancer.frontendIPConfigurations[0].resourceGroup', '{rg}'),
+ self.check("loadBalancer.frontendIPConfigurations[0].properties.subnet.id", '{subnet_id}')
+ ])
# test internet facing load balancer with existing public IP (by name)
- pub_ip_name = 'publicip4'
- self.cmd('network public-ip create -n {} -g {}'.format(pub_ip_name, self.resource_group))
- self.cmd('network lb create -n {}4 -g {} --public-ip-address {}'.format(self.lb_name, self.resource_group, pub_ip_name), checks=[JMESPathCheck('loadBalancer.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic'), JMESPathCheck('loadBalancer.frontendIPConfigurations[0].resourceGroup', self.resource_group), JMESPathCheck("loadBalancer.frontendIPConfigurations[0].properties.publicIPAddress.contains(id, '{}')".format(pub_ip_name), True)])
-
- self.cmd('network lb list', checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format(self.resource_type), True)])
- self.cmd('network lb list --resource-group {}'.format(self.resource_group), checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format(self.resource_type), True), JMESPathCheck("length([?resourceGroup == '{}']) == length(@)".format(self.resource_group), True)])
- self.cmd('network lb show --resource-group {} --name {}1'.format(self.resource_group, self.lb_name), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('type', self.resource_type), JMESPathCheck('resourceGroup', self.resource_group), JMESPathCheck('name', '{}1'.format(self.lb_name))])
- self.cmd('network lb delete --resource-group {} --name {}1'.format(self.resource_group, self.lb_name))
+ self.cmd('network public-ip create -n {pub_ip} -g {rg}')
+ self.cmd('network lb create -n {lb}4 -g {rg} --public-ip-address {pub_ip}', checks=[
+ self.check('loadBalancer.frontendIPConfigurations[0].properties.privateIPAllocationMethod', 'Dynamic'),
+ self.check('loadBalancer.frontendIPConfigurations[0].resourceGroup', '{rg}'),
+ self.check("loadBalancer.frontendIPConfigurations[0].properties.publicIPAddress.contains(id, '{pub_ip}')", True)
+ ])
+
+ self.cmd('network lb list', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True)
+ ])
+ self.cmd('network lb list --resource-group {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True),
+ self.check("length([?resourceGroup == '{rg}']) == length(@)", True)
+ ])
+ self.cmd('network lb show --resource-group {rg} --name {lb}1', checks=[
+ self.check('type(@)', 'object'),
+ self.check('type', '{rt}'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('name', '{lb}1')
+ ])
+ self.cmd('network lb delete --resource-group {rg} --name {lb}1')
# Expecting no results as we just deleted the only lb in the resource group
- self.cmd('network lb list --resource-group {}'.format(self.resource_group), checks=JMESPathCheck('length(@)', 3))
+ self.cmd('network lb list --resource-group {rg}',
+ checks=self.check('length(@)', 3))
class NetworkLoadBalancerIpConfigScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_load_balancer_ip_config')
def test_network_load_balancer_ip_config(self, resource_group):
- rg = resource_group
for i in range(1, 4): # create 3 public IPs to use for the test
- self.cmd('network public-ip create -g {} -n publicip{}'.format(rg, i))
+ self.cmd('network public-ip create -g {{rg}} -n publicip{}'.format(i))
# create internet-facing LB with public IP (lb1)
- self.cmd('network lb create -g {} -n lb1 --public-ip-address publicip1'.format(rg))
+ self.cmd('network lb create -g {rg} -n lb1 --public-ip-address publicip1')
# create internal LB (lb2)
- self.cmd('network vnet create -g {} -n vnet1 --subnet-name subnet1'.format(rg))
- self.cmd('network vnet subnet create -g {} --vnet-name vnet1 -n subnet2 --address-prefix 10.0.1.0/24'.format(rg))
- self.cmd('network lb create -g {} -n lb2 --subnet subnet1 --vnet-name vnet1'.format(rg))
+ self.cmd('network vnet create -g {rg} -n vnet1 --subnet-name subnet1')
+ self.cmd('network vnet subnet create -g {rg} --vnet-name vnet1 -n subnet2 --address-prefix 10.0.1.0/24')
+ self.cmd('network lb create -g {rg} -n lb2 --subnet subnet1 --vnet-name vnet1')
# Test frontend IP configuration for internet-facing LB
- self.cmd('network lb frontend-ip create -g {} --lb-name lb1 -n ipconfig1 --public-ip-address publicip2'.format(rg))
- self.cmd('network lb frontend-ip list -g {} --lb-name lb1'.format(rg),
- checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network lb frontend-ip update -g {} --lb-name lb1 -n ipconfig1 --public-ip-address publicip3'.format(rg))
- self.cmd('network lb frontend-ip show -g {} --lb-name lb1 -n ipconfig1'.format(rg),
- checks=JMESPathCheckV2("publicIpAddress.contains(id, 'publicip3')", True))
+ self.cmd('network lb frontend-ip create -g {rg} --lb-name lb1 -n ipconfig1 --public-ip-address publicip2')
+ self.cmd('network lb frontend-ip list -g {rg} --lb-name lb1',
+ checks=self.check('length(@)', 2))
+ self.cmd('network lb frontend-ip update -g {rg} --lb-name lb1 -n ipconfig1 --public-ip-address publicip3')
+ self.cmd('network lb frontend-ip show -g {rg} --lb-name lb1 -n ipconfig1',
+ checks=self.check("publicIpAddress.contains(id, 'publicip3')", True))
# test generic update
- subscription_id = MOCKED_SUBSCRIPTION_ID if not self.in_recording else get_subscription_id()
- ip2_id = resource_id(subscription=subscription_id, resource_group=rg, namespace='Microsoft.Network', type='publicIPAddresses', name='publicip2')
- self.cmd('network lb frontend-ip update -g {} --lb-name lb1 -n ipconfig1 --set publicIpAddress.id="{}"'.format(rg, ip2_id),
- checks=JMESPathCheckV2("publicIpAddress.contains(id, 'publicip2')", True))
- self.cmd('network lb frontend-ip delete -g {} --lb-name lb1 -n ipconfig1'.format(rg))
- self.cmd('network lb frontend-ip list -g {} --lb-name lb1'.format(rg),
- checks=JMESPathCheckV2('length(@)', 1))
+ self.kwargs['ip2_id'] = resource_id(subscription=self.get_subscription_id(), resource_group=self.kwargs['rg'], namespace='Microsoft.Network', type='publicIPAddresses', name='publicip2')
+ self.cmd('network lb frontend-ip update -g {rg} --lb-name lb1 -n ipconfig1 --set publicIpAddress.id="{ip2_id}"',
+ checks=self.check("publicIpAddress.contains(id, 'publicip2')", True))
+ self.cmd('network lb frontend-ip delete -g {rg} --lb-name lb1 -n ipconfig1')
+ self.cmd('network lb frontend-ip list -g {rg} --lb-name lb1',
+ checks=self.check('length(@)', 1))
# Test frontend IP configuration for internal LB
- self.cmd('network lb frontend-ip create -g {} --lb-name lb2 -n ipconfig2 --vnet-name vnet1 --subnet subnet1 --private-ip-address 10.0.0.99'.format(rg))
- self.cmd('network lb frontend-ip list -g {} --lb-name lb2'.format(rg),
- checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network lb frontend-ip update -g {} --lb-name lb2 -n ipconfig2 --subnet subnet2 --vnet-name vnet1 --private-ip-address 10.0.1.100'.format(rg))
- self.cmd('network lb frontend-ip show -g {} --lb-name lb2 -n ipconfig2'.format(rg),
- checks=JMESPathCheckV2("subnet.contains(id, 'subnet2')", True))
+ self.cmd('network lb frontend-ip create -g {rg} --lb-name lb2 -n ipconfig2 --vnet-name vnet1 --subnet subnet1 --private-ip-address 10.0.0.99')
+ self.cmd('network lb frontend-ip list -g {rg} --lb-name lb2',
+ checks=self.check('length(@)', 2))
+ self.cmd('network lb frontend-ip update -g {rg} --lb-name lb2 -n ipconfig2 --subnet subnet2 --vnet-name vnet1 --private-ip-address 10.0.1.100')
+ self.cmd('network lb frontend-ip show -g {rg} --lb-name lb2 -n ipconfig2',
+ checks=self.check("subnet.contains(id, 'subnet2')", True))
class NetworkLoadBalancerSubresourceScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_lb_nat_rules')
def test_network_lb_nat_rules(self, resource_group):
- rg = resource_group
- lb = 'lb1'
- lb_rg = '-g {} --lb-name {}'.format(rg, lb)
- self.cmd('network lb create -g {} -n {}'.format(rg, lb))
+
+ self.kwargs['lb'] = 'lb1'
+ self.cmd('network lb create -g {rg} -n {lb}')
for count in range(1, 3):
- self.cmd('network lb inbound-nat-rule create {} -n rule{} --protocol tcp --frontend-port {} --backend-port {} --frontend-ip-name LoadBalancerFrontEnd'.format(lb_rg, count, count, count))
- self.cmd('network lb inbound-nat-rule create {} -n rule3 --protocol tcp --frontend-port 3 --backend-port 3'.format(lb_rg))
- self.cmd('network lb inbound-nat-rule list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 3))
- self.cmd('network lb inbound-nat-rule update {} -n rule1 --floating-ip true --idle-timeout 10'.format(lb_rg))
- self.cmd('network lb inbound-nat-rule show {} -n rule1'.format(lb_rg), checks=[
- JMESPathCheckV2('enableFloatingIp', True),
- JMESPathCheckV2('idleTimeoutInMinutes', 10)
+ self.cmd('network lb inbound-nat-rule create -g {{rg}} --lb-name {{lb}} -n rule{0} --protocol tcp --frontend-port {0} --backend-port {0} --frontend-ip-name LoadBalancerFrontEnd'.format(count))
+ self.cmd('network lb inbound-nat-rule create -g {rg} --lb-name {lb} -n rule3 --protocol tcp --frontend-port 3 --backend-port 3')
+ self.cmd('network lb inbound-nat-rule list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 3))
+ self.cmd('network lb inbound-nat-rule update -g {rg} --lb-name {lb} -n rule1 --floating-ip true --idle-timeout 10')
+ self.cmd('network lb inbound-nat-rule show -g {rg} --lb-name {lb} -n rule1', checks=[
+ self.check('enableFloatingIp', True),
+ self.check('idleTimeoutInMinutes', 10)
])
# test generic update
- self.cmd('network lb inbound-nat-rule update {} -n rule1 --set idleTimeoutInMinutes=5'.format(lb_rg),
- checks=JMESPathCheckV2('idleTimeoutInMinutes', 5))
+ self.cmd('network lb inbound-nat-rule update -g {rg} --lb-name {lb} -n rule1 --set idleTimeoutInMinutes=5',
+ checks=self.check('idleTimeoutInMinutes', 5))
for count in range(1, 4):
- self.cmd('network lb inbound-nat-rule delete {} -n rule{}'.format(lb_rg, count))
- self.cmd('network lb inbound-nat-rule list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 0))
+ self.cmd('network lb inbound-nat-rule delete -g {{rg}} --lb-name {{lb}} -n rule{}'.format(count))
+ self.cmd('network lb inbound-nat-rule list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 0))
@ResourceGroupPreparer(name_prefix='cli_test_lb_nat_pools')
def test_network_lb_nat_pools(self, resource_group):
- rg = resource_group
- lb = 'lb1'
- lb_rg = '-g {} --lb-name {}'.format(rg, lb)
- self.cmd('network lb create -g {} -n {}'.format(rg, lb))
+
+ self.kwargs['lb'] = 'lb1'
+ self.cmd('network lb create -g {rg} -n {lb}')
for count in range(1000, 4000, 1000):
- self.cmd('network lb inbound-nat-pool create {} -n rule{} --protocol tcp --frontend-port-range-start {} --frontend-port-range-end {} --backend-port {}'.format(lb_rg, count, count, count + 999, count))
- self.cmd('network lb inbound-nat-pool list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 3))
- self.cmd('network lb inbound-nat-pool update {} -n rule1000 --protocol udp --backend-port 50'.format(lb_rg))
- self.cmd('network lb inbound-nat-pool show {} -n rule1000'.format(lb_rg), checks=[
- JMESPathCheckV2('protocol', 'Udp'),
- JMESPathCheckV2('backendPort', 50)
+ self.cmd('network lb inbound-nat-pool create -g {{rg}} --lb-name {{lb}} -n rule{0} --protocol tcp --frontend-port-range-start {0} --frontend-port-range-end {1} --backend-port {0}'.format(count, count + 999))
+ self.cmd('network lb inbound-nat-pool list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 3))
+ self.cmd('network lb inbound-nat-pool update -g {rg} --lb-name {lb} -n rule1000 --protocol udp --backend-port 50')
+ self.cmd('network lb inbound-nat-pool show -g {rg} --lb-name {lb} -n rule1000', checks=[
+ self.check('protocol', 'Udp'),
+ self.check('backendPort', 50)
])
# test generic update
- self.cmd('network lb inbound-nat-pool update {} -n rule1000 --set protocol=Tcp'.format(lb_rg),
- checks=JMESPathCheckV2('protocol', 'Tcp'))
+ self.cmd('network lb inbound-nat-pool update -g {rg} --lb-name {lb} -n rule1000 --set protocol=Tcp',
+ checks=self.check('protocol', 'Tcp'))
for count in range(1000, 4000, 1000):
- self.cmd('network lb inbound-nat-pool delete {} -n rule{}'.format(lb_rg, count))
- self.cmd('network lb inbound-nat-pool list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 0))
+ self.cmd('network lb inbound-nat-pool delete -g {{rg}} --lb-name {{lb}} -n rule{}'.format(count))
+ self.cmd('network lb inbound-nat-pool list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 0))
@ResourceGroupPreparer(name_prefix='cli_test_lb_address_pool')
def test_network_lb_address_pool(self, resource_group):
- rg = resource_group
- lb = 'lb1'
- lb_rg = '-g {} --lb-name {}'.format(rg, lb)
- self.cmd('network lb create -g {} -n {}'.format(rg, lb))
+
+ self.kwargs['lb'] = 'lb1'
+ self.cmd('network lb create -g {rg} -n {lb}')
for i in range(1, 4):
- self.cmd('network lb address-pool create {} -n bap{}'.format(lb_rg, i),
- checks=JMESPathCheckV2('name', 'bap{}'.format(i)))
- self.cmd('network lb address-pool list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 4))
- self.cmd('network lb address-pool show {} -n bap1'.format(lb_rg),
- checks=JMESPathCheckV2('name', 'bap1'))
- self.cmd('network lb address-pool delete {} -n bap1'.format(lb_rg),
- checks=NoneCheck())
- self.cmd('network lb address-pool list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 3))
+ self.cmd('network lb address-pool create -g {{rg}} --lb-name {{lb}} -n bap{}'.format(i),
+ checks=self.check('name', 'bap{}'.format(i)))
+ self.cmd('network lb address-pool list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 4))
+ self.cmd('network lb address-pool show -g {rg} --lb-name {lb} -n bap1',
+ checks=self.check('name', 'bap1'))
+ self.cmd('network lb address-pool delete -g {rg} --lb-name {lb} -n bap1',
+ checks=self.is_empty())
+ self.cmd('network lb address-pool list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 3))
@ResourceGroupPreparer(name_prefix='cli_test_lb_probes')
def test_network_lb_probes(self, resource_group):
- rg = resource_group
- lb = 'lb1'
- lb_rg = '-g {} --lb-name {}'.format(rg, lb)
- self.cmd('network lb create -g {} -n {}'.format(rg, lb))
+
+ self.kwargs['lb'] = 'lb1'
+ self.cmd('network lb create -g {rg} -n {lb}')
for i in range(1, 4):
- self.cmd('network lb probe create {} -n probe{} --port {} --protocol http --path "/test{}"'.format(lb_rg, i, i, i))
- self.cmd('network lb probe list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 3))
- self.cmd('network lb probe update {} -n probe1 --interval 20 --threshold 5'.format(lb_rg))
- self.cmd('network lb probe update {} -n probe2 --protocol tcp --path ""'.format(lb_rg))
- self.cmd('network lb probe show {} -n probe1'.format(lb_rg), checks=[
- JMESPathCheckV2('intervalInSeconds', 20),
- JMESPathCheckV2('numberOfProbes', 5)
+ self.cmd('network lb probe create -g {{rg}} --lb-name {{lb}} -n probe{0} --port {0} --protocol http --path "/test{0}"'.format(i))
+ self.cmd('network lb probe list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 3))
+ self.cmd('network lb probe update -g {rg} --lb-name {lb} -n probe1 --interval 20 --threshold 5')
+ self.cmd('network lb probe update -g {rg} --lb-name {lb} -n probe2 --protocol tcp --path ""')
+ self.cmd('network lb probe show -g {rg} --lb-name {lb} -n probe1', checks=[
+ self.check('intervalInSeconds', 20),
+ self.check('numberOfProbes', 5)
])
# test generic update
- self.cmd('network lb probe update {} -n probe1 --set intervalInSeconds=15 --set numberOfProbes=3'.format(lb_rg), checks=[
- JMESPathCheckV2('intervalInSeconds', 15),
- JMESPathCheckV2('numberOfProbes', 3)
+ self.cmd('network lb probe update -g {rg} --lb-name {lb} -n probe1 --set intervalInSeconds=15 --set numberOfProbes=3', checks=[
+ self.check('intervalInSeconds', 15),
+ self.check('numberOfProbes', 3)
])
- self.cmd('network lb probe show {} -n probe2'.format(lb_rg), checks=[
- JMESPathCheckV2('protocol', 'Tcp'),
- JMESPathCheckV2('path', None)
+ self.cmd('network lb probe show -g {rg} --lb-name {lb} -n probe2', checks=[
+ self.check('protocol', 'Tcp'),
+ self.check('path', None)
])
- self.cmd('network lb probe delete {} -n probe3'.format(lb_rg))
- self.cmd('network lb probe list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 2))
+ self.cmd('network lb probe delete -g {rg} --lb-name {lb} -n probe3')
+ self.cmd('network lb probe list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 2))
@ResourceGroupPreparer(name_prefix='cli_test_lb_rules')
def test_network_lb_rules(self, resource_group):
- rg = resource_group
- lb = 'lb1'
- lb_rg = '-g {} --lb-name {}'.format(rg, lb)
- self.cmd('network lb create -g {} -n {}'.format(rg, lb))
-
- self.cmd('network lb rule create {} -n rule2 --frontend-port 60 --backend-port 60 --protocol tcp'.format(lb_rg))
- self.cmd('network lb address-pool create {} -n bap1'.format(lb_rg))
- self.cmd('network lb address-pool create {} -n bap2'.format(lb_rg))
- self.cmd('network lb rule create {} -n rule1 --frontend-ip-name LoadBalancerFrontEnd --frontend-port 40 --backend-pool-name bap1 --backend-port 40 --protocol tcp'.format(lb_rg))
-
- self.cmd('network lb rule list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 2))
- self.cmd('network lb rule update {} -n rule1 --floating-ip true --idle-timeout 20 --load-distribution sourceip --protocol udp'.format(lb_rg))
- self.cmd('network lb rule update {} -n rule2 --backend-pool-name bap2 --load-distribution sourceipprotocol'.format(lb_rg))
- self.cmd('network lb rule show {} -n rule1'.format(lb_rg), checks=[
- JMESPathCheckV2('enableFloatingIp', True),
- JMESPathCheckV2('idleTimeoutInMinutes', 20),
- JMESPathCheckV2('loadDistribution', 'SourceIP'),
- JMESPathCheckV2('protocol', 'Udp')
+ self.kwargs['lb'] = 'lb1'
+ self.cmd('network lb create -g {rg} -n {lb}')
+
+ self.cmd('network lb rule create -g {rg} --lb-name {lb} -n rule2 --frontend-port 60 --backend-port 60 --protocol tcp')
+ self.cmd('network lb address-pool create -g {rg} --lb-name {lb} -n bap1')
+ self.cmd('network lb address-pool create -g {rg} --lb-name {lb} -n bap2')
+ self.cmd('network lb rule create -g {rg} --lb-name {lb} -n rule1 --frontend-ip-name LoadBalancerFrontEnd --frontend-port 40 --backend-pool-name bap1 --backend-port 40 --protocol tcp')
+
+ self.cmd('network lb rule list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 2))
+ self.cmd('network lb rule update -g {rg} --lb-name {lb} -n rule1 --floating-ip true --idle-timeout 20 --load-distribution sourceip --protocol udp')
+ self.cmd('network lb rule update -g {rg} --lb-name {lb} -n rule2 --backend-pool-name bap2 --load-distribution sourceipprotocol')
+ self.cmd('network lb rule show -g {rg} --lb-name {lb} -n rule1', checks=[
+ self.check('enableFloatingIp', True),
+ self.check('idleTimeoutInMinutes', 20),
+ self.check('loadDistribution', 'SourceIP'),
+ self.check('protocol', 'Udp')
])
# test generic update
- self.cmd('network lb rule update {} -n rule1 --set idleTimeoutInMinutes=5'.format(lb_rg),
- checks=JMESPathCheckV2('idleTimeoutInMinutes', 5))
+ self.cmd('network lb rule update -g {rg} --lb-name {lb} -n rule1 --set idleTimeoutInMinutes=5',
+ checks=self.check('idleTimeoutInMinutes', 5))
- self.cmd('network lb rule show {} -n rule2'.format(lb_rg), checks=[
- JMESPathCheckV2("backendAddressPool.contains(id, 'bap2')", True),
- JMESPathCheckV2('loadDistribution', 'SourceIPProtocol')
+ self.cmd('network lb rule show -g {rg} --lb-name {lb} -n rule2', checks=[
+ self.check("backendAddressPool.contains(id, 'bap2')", True),
+ self.check('loadDistribution', 'SourceIPProtocol')
])
- self.cmd('network lb rule delete {} -n rule1'.format(lb_rg))
- self.cmd('network lb rule delete {} -n rule2'.format(lb_rg))
- self.cmd('network lb rule list {}'.format(lb_rg),
- checks=JMESPathCheckV2('length(@)', 0))
+ self.cmd('network lb rule delete -g {rg} --lb-name {lb} -n rule1')
+ self.cmd('network lb rule delete -g {rg} --lb-name {lb} -n rule2')
+ self.cmd('network lb rule list -g {rg} --lb-name {lb}',
+ checks=self.check('length(@)', 0))
class NetworkLocalGatewayScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='local_gateway_scenario')
def test_network_local_gateway(self, resource_group):
- lgw1 = 'lgw1'
- lgw2 = 'lgw2'
- resource_type = 'Microsoft.Network/localNetworkGateways'
- self.cmd('network local-gateway create --resource-group {} --name {} --gateway-ip-address 10.1.1.1'.format(resource_group, lgw1))
- self.cmd('network local-gateway show --resource-group {} --name {}'.format(resource_group, lgw1), checks=[
- JMESPathCheckV2('type', resource_type),
- JMESPathCheckV2('resourceGroup', resource_group),
- JMESPathCheckV2('name', lgw1)])
- self.cmd('network local-gateway create --resource-group {} --name {} --gateway-ip-address 10.1.1.2 --local-address-prefixes 10.0.1.0/24'.format(resource_group, lgw2),
- checks=JMESPathCheckV2('localNetworkAddressSpace.addressPrefixes[0]', '10.0.1.0/24'))
+ self.kwargs.update({
+ 'lgw1': 'lgw1',
+ 'lgw2': 'lgw2',
+ 'rt': 'Microsoft.Network/localNetworkGateways'
+ })
+ self.cmd('network local-gateway create --resource-group {rg} --name {lgw1} --gateway-ip-address 10.1.1.1')
+ self.cmd('network local-gateway show --resource-group {rg} --name {lgw1}', checks=[
+ self.check('type', '{rt}'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('name', '{lgw1}')])
+
+ self.cmd('network local-gateway create --resource-group {rg} --name {lgw2} --gateway-ip-address 10.1.1.2 --local-address-prefixes 10.0.1.0/24',
+ checks=self.check('localNetworkAddressSpace.addressPrefixes[0]', '10.0.1.0/24'))
- self.cmd('network local-gateway list --resource-group {}'.format(resource_group),
- checks=JMESPathCheckV2('length(@)', 2))
+ self.cmd('network local-gateway list --resource-group {rg}',
+ checks=self.check('length(@)', 2))
- self.cmd('network local-gateway delete --resource-group {} --name {}'.format(resource_group, lgw1))
- self.cmd('network local-gateway list --resource-group {}'.format(resource_group),
- checks=JMESPathCheckV2('length(@)', 1))
+ self.cmd('network local-gateway delete --resource-group {rg} --name {lgw1}')
+ self.cmd('network local-gateway list --resource-group {rg}',
+ checks=self.check('length(@)', 1))
class NetworkNicScenarioTest(ScenarioTest):
+
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01')
@ResourceGroupPreparer(name_prefix='cli_test_nic_scenario')
def test_network_nic(self, resource_group):
- rg = resource_group
- nic = 'cli-test-nic'
- rt = 'Microsoft.Network/networkInterfaces'
- subnet = 'mysubnet'
- vnet = 'myvnet'
- nsg = 'mynsg'
- alt_nsg = 'myothernsg'
- lb = 'mylb'
- private_ip = '10.0.0.15'
- public_ip_name = 'publicip1'
-
- subnet_id = self.cmd('network vnet create -g {} -n {} --subnet-name {}'.format(rg, vnet, subnet)).get_output_in_json()['newVNet']['subnets'][0]['id']
- self.cmd('network nsg create -g {} -n {}'.format(rg, nsg))
- nsg_id = self.cmd('network nsg show -g {} -n {}'.format(rg, nsg)).get_output_in_json()['id']
- self.cmd('network nsg create -g {} -n {}'.format(rg, alt_nsg))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, public_ip_name))
- public_ip_id = self.cmd('network public-ip show -g {} -n {}'.format(rg, public_ip_name)).get_output_in_json()['id']
- self.cmd('network lb create -g {} -n {}'.format(rg, lb))
- self.cmd('network lb inbound-nat-rule create -g {} --lb-name {} -n rule1 --protocol tcp --frontend-port 100 --backend-port 100 --frontend-ip-name LoadBalancerFrontEnd'.format(rg, lb))
- self.cmd('network lb inbound-nat-rule create -g {} --lb-name {} -n rule2 --protocol tcp --frontend-port 200 --backend-port 200 --frontend-ip-name LoadBalancerFrontEnd'.format(rg, lb))
- rule_ids = ' '.join(self.cmd('network lb inbound-nat-rule list -g {} --lb-name {} --query "[].id"'.format(rg, lb)).get_output_in_json())
- self.cmd('network lb address-pool create -g {} --lb-name {} -n bap1'.format(rg, lb))
- self.cmd('network lb address-pool create -g {} --lb-name {} -n bap2'.format(rg, lb))
- address_pool_ids = ' '.join(self.cmd('network lb address-pool list -g {} --lb-name {} --query "[].id"'.format(rg, lb)).get_output_in_json())
+
+ self.kwargs.update({
+ 'nic': 'cli-test-nic',
+ 'rt': 'Microsoft.Network/networkInterfaces',
+ 'subnet': 'mysubnet',
+ 'vnet': 'myvnet',
+ 'nsg1': 'mynsg',
+ 'nsg2': 'myothernsg',
+ 'lb': 'mylb',
+ 'pri_ip': '10.0.0.15',
+ 'pub_ip': 'publicip1'
+ })
+
+ self.kwargs['subnet_id'] = self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name {subnet}').get_output_in_json()['newVNet']['subnets'][0]['id']
+ self.cmd('network nsg create -g {rg} -n {nsg1}')
+ self.kwargs['nsg_id'] = self.cmd('network nsg show -g {rg} -n {nsg1}').get_output_in_json()['id']
+ self.cmd('network nsg create -g {rg} -n {nsg2}')
+ self.cmd('network public-ip create -g {rg} -n {pub_ip}')
+ self.kwargs['pub_ip_id'] = self.cmd('network public-ip show -g {rg} -n {pub_ip}').get_output_in_json()['id']
+ self.cmd('network lb create -g {rg} -n {lb}')
+ self.cmd('network lb inbound-nat-rule create -g {rg} --lb-name {lb} -n rule1 --protocol tcp --frontend-port 100 --backend-port 100 --frontend-ip-name LoadBalancerFrontEnd')
+ self.cmd('network lb inbound-nat-rule create -g {rg} --lb-name {lb} -n rule2 --protocol tcp --frontend-port 200 --backend-port 200 --frontend-ip-name LoadBalancerFrontEnd')
+ self.kwargs['rule_ids'] = ' '.join(self.cmd('network lb inbound-nat-rule list -g {rg} --lb-name {lb} --query "[].id"').get_output_in_json())
+ self.cmd('network lb address-pool create -g {rg} --lb-name {lb} -n bap1')
+ self.cmd('network lb address-pool create -g {rg} --lb-name {lb} -n bap2')
+ self.kwargs['address_pool_ids'] = ' '.join(self.cmd('network lb address-pool list -g {rg} --lb-name {lb} --query "[].id"').get_output_in_json())
# create with minimum parameters
- self.cmd('network nic create -g {} -n {} --subnet {} --vnet-name {}'.format(rg, nic, subnet, vnet), checks=[
- JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
- JMESPathCheckV2('NewNIC.provisioningState', 'Succeeded')
+ self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet} --vnet-name {vnet}', checks=[
+ self.check('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
+ self.check('NewNIC.provisioningState', 'Succeeded')
])
# exercise optional parameters
- self.cmd('network nic create -g {} -n {} --subnet {} --ip-forwarding --private-ip-address {} --public-ip-address {} --internal-dns-name test --dns-servers 100.1.2.3 --lb-address-pools {} --lb-inbound-nat-rules {} --accelerated-networking'.format(rg, nic, subnet_id, private_ip, public_ip_name, address_pool_ids, rule_ids), checks=[
- JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Static'),
- JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAddress', private_ip),
- JMESPathCheckV2('NewNIC.enableIpForwarding', True),
- JMESPathCheckV2('NewNIC.enableAcceleratedNetworking', True),
- JMESPathCheckV2('NewNIC.provisioningState', 'Succeeded'),
- JMESPathCheckV2('NewNIC.dnsSettings.internalDnsNameLabel', 'test'),
- JMESPathCheckV2('length(NewNIC.dnsSettings.dnsServers)', 1)])
+ self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet_id} --ip-forwarding --private-ip-address {pri_ip} --public-ip-address {pub_ip} --internal-dns-name test --dns-servers 100.1.2.3 --lb-address-pools {address_pool_ids} --lb-inbound-nat-rules {rule_ids} --accelerated-networking', checks=[
+ self.check('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Static'),
+ self.check('NewNIC.ipConfigurations[0].privateIpAddress', '{pri_ip}'),
+ self.check('NewNIC.enableIpForwarding', True),
+ self.check('NewNIC.enableAcceleratedNetworking', True),
+ self.check('NewNIC.provisioningState', 'Succeeded'),
+ self.check('NewNIC.dnsSettings.internalDnsNameLabel', 'test'),
+ self.check('length(NewNIC.dnsSettings.dnsServers)', 1)
+ ])
# exercise creating with NSG
- self.cmd('network nic create -g {} -n {} --subnet {} --vnet-name {} --network-security-group {}'.format(rg, nic, subnet, vnet, nsg), checks=[
- JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
- JMESPathCheckV2('NewNIC.enableIpForwarding', False),
- JMESPathCheckV2("NewNIC.networkSecurityGroup.contains(id, '{}')".format(nsg), True),
- JMESPathCheckV2('NewNIC.provisioningState', 'Succeeded')
+ self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet} --vnet-name {vnet} --network-security-group {nsg1}', checks=[
+ self.check('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
+ self.check('NewNIC.enableIpForwarding', False),
+ self.check("NewNIC.networkSecurityGroup.contains(id, '{nsg1}')", True),
+ self.check('NewNIC.provisioningState', 'Succeeded')
])
# exercise creating with NSG and Public IP
- self.cmd('network nic create -g {} -n {} --subnet {} --vnet-name {} --network-security-group {} --public-ip-address {}'.format(rg, nic, subnet, vnet, nsg_id, public_ip_id), checks=[
- JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
- JMESPathCheckV2('NewNIC.enableIpForwarding', False),
- JMESPathCheckV2("NewNIC.networkSecurityGroup.contains(id, '{}')".format(nsg), True),
- JMESPathCheckV2('NewNIC.provisioningState', 'Succeeded')
+ self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet} --vnet-name {vnet} --network-security-group {nsg_id} --public-ip-address {pub_ip_id}', checks=[
+ self.check('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
+ self.check('NewNIC.enableIpForwarding', False),
+ self.check("NewNIC.networkSecurityGroup.contains(id, '{nsg1}')", True),
+ self.check('NewNIC.provisioningState', 'Succeeded')
])
self.cmd('network nic list', checks=[
- JMESPathCheckV2('type(@)', 'array'),
- JMESPathCheckV2("length([?contains(id, 'networkInterfaces')]) == length(@)", True)
- ])
- self.cmd('network nic list --resource-group {}'.format(rg), checks=[
- JMESPathCheckV2('type(@)', 'array'),
- JMESPathCheckV2("length([?type == '{}']) == length(@)".format(rt), True),
- JMESPathCheckV2("length([?resourceGroup == '{}']) == length(@)".format(rg), True)
- ])
- self.cmd('network nic show --resource-group {} --name {}'.format(rg, nic), checks=[
- JMESPathCheckV2('type(@)', 'object'),
- JMESPathCheckV2('type', rt),
- JMESPathCheckV2('resourceGroup', rg),
- JMESPathCheckV2('name', nic)
- ])
- self.cmd('network nic update -g {} -n {} --internal-dns-name noodle --ip-forwarding true --accelerated-networking false --dns-servers "" --network-security-group {}'.format(rg, nic, alt_nsg), checks=[
- JMESPathCheckV2('enableIpForwarding', True),
- JMESPathCheckV2('enableAcceleratedNetworking', False),
- JMESPathCheckV2('dnsSettings.internalDnsNameLabel', 'noodle'),
- JMESPathCheckV2('length(dnsSettings.dnsServers)', 0),
- JMESPathCheckV2("networkSecurityGroup.contains(id, '{}')".format(alt_nsg), True)
+ self.check('type(@)', 'array'),
+ self.check("length([?contains(id, 'networkInterfaces')]) == length(@)", True)
+ ])
+ self.cmd('network nic list --resource-group {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True),
+ self.check("length([?resourceGroup == '{rg}']) == length(@)", True)
+ ])
+ self.cmd('network nic show --resource-group {rg} --name {nic}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('type', '{rt}'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('name', '{nic}')
+ ])
+ self.cmd('network nic update -g {rg} -n {nic} --internal-dns-name noodle --ip-forwarding true --accelerated-networking false --dns-servers "" --network-security-group {nsg2}', checks=[
+ self.check('enableIpForwarding', True),
+ self.check('enableAcceleratedNetworking', False),
+ self.check('dnsSettings.internalDnsNameLabel', 'noodle'),
+ self.check('length(dnsSettings.dnsServers)', 0),
+ self.check("networkSecurityGroup.contains(id, '{nsg2}')", True)
])
# test generic update
- self.cmd('network nic update -g {} -n {} --set dnsSettings.internalDnsNameLabel=doodle --set enableIpForwarding=false'.format(rg, nic), checks=[
- JMESPathCheckV2('enableIpForwarding', False),
- JMESPathCheckV2('dnsSettings.internalDnsNameLabel', 'doodle')
+ self.cmd('network nic update -g {rg} -n {nic} --set dnsSettings.internalDnsNameLabel=doodle --set enableIpForwarding=false', checks=[
+ self.check('enableIpForwarding', False),
+ self.check('dnsSettings.internalDnsNameLabel', 'doodle')
])
- self.cmd('network nic delete --resource-group {} --name {}'.format(rg, nic))
- self.cmd('network nic list -g {}'.format(rg), checks=NoneCheck())
+ self.cmd('network nic delete --resource-group {rg} --name {nic}')
+ self.cmd('network nic list -g {rg}', checks=self.is_empty())
@api_version_constraint(ResourceType.MGMT_NETWORK, max_api='2015-06-15')
@ResourceGroupPreparer(name_prefix='cli_test_nic_stack_scenario', location='local', dev_setting_location='local')
def test_network_nic_stack(self, resource_group):
- rg = resource_group
- nic = 'cli-test-nic'
- rt = 'Microsoft.Network/networkInterfaces'
- subnet = 'mysubnet'
- vnet = 'myvnet'
- nsg = 'mynsg'
- alt_nsg = 'myothernsg'
- lb = 'mylb'
- private_ip = '10.0.0.15'
- public_ip_name = 'publicip1'
-
- subnet_id = self.cmd('network vnet create -g {} -n {} --subnet-name {}'.format(rg, vnet, subnet)).get_output_in_json()['newVNet']['subnets'][0]['id']
- self.cmd('network nsg create -g {} -n {}'.format(rg, nsg))
- nsg_id = self.cmd('network nsg show -g {} -n {}'.format(rg, nsg)).get_output_in_json()['id']
- self.cmd('network nsg create -g {} -n {}'.format(rg, alt_nsg))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, public_ip_name))
- public_ip_id = self.cmd('network public-ip show -g {} -n {}'.format(rg, public_ip_name)).get_output_in_json()['id']
- self.cmd('network lb create -g {} -n {}'.format(rg, lb))
- self.cmd('network lb inbound-nat-rule create -g {} --lb-name {} -n rule1 --protocol tcp --frontend-port 100 --backend-port 100 --frontend-ip-name LoadBalancerFrontEnd'.format(rg, lb))
- self.cmd('network lb inbound-nat-rule create -g {} --lb-name {} -n rule2 --protocol tcp --frontend-port 200 --backend-port 200 --frontend-ip-name LoadBalancerFrontEnd'.format(rg, lb))
- rule_ids = ' '.join(self.cmd('network lb inbound-nat-rule list -g {} --lb-name {} --query "[].id"'.format(rg, lb)).get_output_in_json())
- self.cmd('network lb address-pool create -g {} --lb-name {} -n bap1'.format(rg, lb))
- self.cmd('network lb address-pool create -g {} --lb-name {} -n bap2'.format(rg, lb))
- address_pool_ids = ' '.join(self.cmd('network lb address-pool list -g {} --lb-name {} --query "[].id"'.format(rg, lb)).get_output_in_json())
- # create with minimum parameters
- self.cmd('network nic create -g {} -n {} --subnet {} --vnet-name {}'.format(rg, nic, subnet, vnet), checks=[
- JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
- JMESPathCheckV2('NewNIC.provisioningState', 'Succeeded')])
+ self.kwargs.update({
+ 'nic': 'cli-test-nic',
+ 'rt': 'Microsoft.Network/networkInterfaces',
+ 'subnet': 'mysubnet',
+ 'vnet': 'myvnet',
+ 'nsg1': 'mynsg',
+ 'nsg2': 'myothernsg',
+ 'lb': 'mylb',
+ 'pri_ip': '10.0.0.15',
+ 'pub_ip': 'publicip1'
+ })
+
+ self.kwargs['subnet_id'] = self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name {subnet}').get_output_in_json()['newVNet']['subnets'][0]['id']
+ self.cmd('network nsg create -g {rg} -n {nsg1}')
+ self.kwargs['nsg_id'] = self.cmd('network nsg show -g {rg} -n {nsg1}').get_output_in_json()['id']
+ self.cmd('network nsg create -g {rg} -n {nsg2}')
+ self.cmd('network public-ip create -g {rg} -n {pub_ip}')
+ self.kwargs['pub_ip_id'] = self.cmd('network public-ip show -g {rg} -n {pub_ip}').get_output_in_json()['id']
+ self.cmd('network lb create -g {rg} -n {lb}')
+ self.cmd('network lb inbound-nat-rule create -g {rg} --lb-name {lb} -n rule1 --protocol tcp --frontend-port 100 --backend-port 100 --frontend-ip-name LoadBalancerFrontEnd')
+ self.cmd('network lb inbound-nat-rule create -g {rg} --lb-name {lb} -n rule2 --protocol tcp --frontend-port 200 --backend-port 200 --frontend-ip-name LoadBalancerFrontEnd')
+ self.kwargs['rule_ids'] = self.cmd('network lb inbound-nat-rule list -g {rg} --lb-name {lb} --query "[].id"').get_output_in_json()
+ self.cmd('network lb address-pool create -g {rg} --lb-name {lb} -n bap1')
+ self.cmd('network lb address-pool create -g {rg} --lb-name {lb} -n bap2')
+ self.kwargs['address_pool_ids'] = self.cmd('network lb address-pool list -g {rg} --lb-name {lb} --query "[].id"').get_output_in_json()
+ # create with minimum parameters
+ self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet} --vnet-name {vnet}', checks=[
+ self.check('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
+ self.check('NewNIC.provisioningState', 'Succeeded')
+ ])
# exercise optional parameters
- self.cmd('network nic create -g {} -n {} --subnet {} --ip-forwarding --private-ip-address {} --public-ip-address {} --internal-dns-name test --dns-servers 100.1.2.3 --lb-address-pools {} --lb-inbound-nat-rules {}'.format(rg, nic, subnet_id, private_ip, public_ip_name, address_pool_ids, rule_ids),
- checks=[JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Static'),
- JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAddress', private_ip),
- JMESPathCheckV2('NewNIC.enableIpForwarding', True),
- JMESPathCheckV2('NewNIC.provisioningState', 'Succeeded'),
- JMESPathCheckV2('NewNIC.dnsSettings.internalDnsNameLabel', 'test'),
- JMESPathCheckV2('length(NewNIC.dnsSettings.dnsServers)', 1)])
-
+ self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet_id} --ip-forwarding --private-ip-address {pri_ip} --public-ip-address {pub_ip} --internal-dns-name test --dns-servers 100.1.2.3 --lb-address-pools {address_pool_ids} --lb-inbound-nat-rules {rule_ids}', checks=[
+ self.check('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Static'),
+ self.check('NewNIC.ipConfigurations[0].privateIpAddress', '{pri_ip}'),
+ self.check('NewNIC.enableIpForwarding', True),
+ self.check('NewNIC.provisioningState', 'Succeeded'),
+ self.check('NewNIC.dnsSettings.internalDnsNameLabel', 'test'),
+ self.check('length(NewNIC.dnsSettings.dnsServers)', 1)
+ ])
# exercise creating with NSG
- self.cmd('network nic create -g {} -n {} --subnet {} --vnet-name {} --network-security-group {}'.format(rg, nic, subnet, vnet, nsg),
- checks=[JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
- JMESPathCheckV2('NewNIC.enableIpForwarding', False),
- JMESPathCheckV2("NewNIC.networkSecurityGroup.contains(id, '{}')".format(nsg), True),
- JMESPathCheckV2('NewNIC.provisioningState', 'Succeeded')])
-
+ self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet} --vnet-name {vnet} --network-security-group {nsg1}', checks=[
+ self.check('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
+ self.check('NewNIC.enableIpForwarding', False),
+ self.check("NewNIC.networkSecurityGroup.contains(id, '{nsg1}')", True),
+ self.check('NewNIC.provisioningState', 'Succeeded')
+ ])
# exercise creating with NSG and Public IP
- self.cmd('network nic create -g {} -n {} --subnet {} --vnet-name {} --network-security-group {} --public-ip-address {}'.format(rg, nic, subnet, vnet, nsg_id, public_ip_id), checks=[
- JMESPathCheckV2('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
- JMESPathCheckV2('NewNIC.enableIpForwarding', False),
- JMESPathCheckV2("NewNIC.networkSecurityGroup.contains(id, '{}')".format(nsg), True),
- JMESPathCheckV2('NewNIC.provisioningState', 'Succeeded')])
-
- self.cmd('network nic list',
- checks=[JMESPathCheckV2('type(@)', 'array'),
- JMESPathCheckV2("length([?contains(id, 'networkInterfaces')]) == length(@)", True)])
-
- self.cmd('network nic list --resource-group {}'.format(rg),
- checks=[JMESPathCheckV2('type(@)', 'array'),
- JMESPathCheckV2("length([?type == '{}']) == length(@)".format(rt), True),
- JMESPathCheckV2("length([?resourceGroup == '{}']) == length(@)".format(rg), True)])
-
- self.cmd('network nic show --resource-group {} --name {}'.format(rg, nic),
- checks=[JMESPathCheckV2('type(@)', 'object'),
- JMESPathCheckV2('type', rt),
- JMESPathCheckV2('resourceGroup', rg),
- JMESPathCheckV2('name', nic)])
-
- self.cmd('network nic update -g {} -n {} --internal-dns-name noodle --ip-forwarding true --dns-servers "" --network-security-group {}'.format(rg, nic, alt_nsg),
- checks=[JMESPathCheckV2('enableIpForwarding', True),
- JMESPathCheckV2('dnsSettings.internalDnsNameLabel', 'noodle'),
- JMESPathCheckV2('length(dnsSettings.dnsServers)', 0),
- JMESPathCheckV2("networkSecurityGroup.contains(id, '{}')".format(alt_nsg), True)])
+ self.cmd('network nic create -g {rg} -n {nic} --subnet {subnet} --vnet-name {vnet} --network-security-group {nsg_id} --public-ip-address {pub_ip_id}', checks=[
+ self.check('NewNIC.ipConfigurations[0].privateIpAllocationMethod', 'Dynamic'),
+ self.check('NewNIC.enableIpForwarding', False),
+ self.check("NewNIC.networkSecurityGroup.contains(id, '{nsg}')", True),
+ self.check('NewNIC.provisioningState', 'Succeeded')
+ ])
+ self.cmd('network nic list', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?contains(id, 'networkInterfaces')]) == length(@)", True)
+ ])
+ self.cmd('network nic list --resource-group {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True),
+ self.check("length([?resourceGroup == '{rg}']) == length(@)", True)
+ ])
+ self.cmd('network nic show --resource-group {rg} --name {nic}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('type', '{rt}'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('name', '{nic}')
+ ])
+ self.cmd('network nic update -g {rg} -n {nic} --internal-dns-name noodle --ip-forwarding true --dns-servers "" --network-security-group {nsg2}', checks=[
+ self.check('enableIpForwarding', True),
+ self.check('dnsSettings.internalDnsNameLabel', 'noodle'),
+ self.check('length(dnsSettings.dnsServers)', 0),
+ self.check("networkSecurityGroup.contains(id, '{nsg2}')", True)
+ ])
# test generic update
- self.cmd('network nic update -g {} -n {} --set dnsSettings.internalDnsNameLabel=doodle --set enableIpForwarding=false'.format(rg, nic),
- checks=[JMESPathCheckV2('enableIpForwarding', False),
- JMESPathCheckV2('dnsSettings.internalDnsNameLabel', 'doodle')])
+ self.cmd('network nic update -g {rg} -n {nic} --set dnsSettings.internalDnsNameLabel=doodle --set enableIpForwarding=false', checks=[
+ self.check('enableIpForwarding', False),
+ self.check('dnsSettings.internalDnsNameLabel', 'doodle')
+ ])
- self.cmd('network nic delete --resource-group {} --name {}'.format(rg, nic))
- self.cmd('network nic list -g {}'.format(rg), checks=NoneCheck())
+ self.cmd('network nic delete --resource-group {rg} --name {nic}')
+ self.cmd('network nic list -g {rg}', checks=self.is_empty())
-class NetworkNicSubresourceScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkNicSubresourceScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_nic_subresource')
+class NetworkNicSubresourceScenarioTest(ScenarioTest):
- def test_network_nic_subresources(self):
- self.execute()
+ @ResourceGroupPreparer(name_prefix='cli_test_nic_subresource')
+ def test_network_nic_subresources(self, resource_group):
- def body(self):
- rg = self.resource_group
- nic = 'nic1'
+ self.kwargs['nic'] = 'nic1'
- self.cmd('network vnet create -g {} -n vnet1 --subnet-name subnet1'.format(rg))
- self.cmd('network nic create -g {} -n {} --subnet subnet1 --vnet-name vnet1'.format(rg, nic))
- self.cmd('network nic ip-config list -g {} --nic-name {}'.format(rg, nic), checks=JMESPathCheck('length(@)', 1))
- self.cmd('network nic ip-config show -g {} --nic-name {} -n ipconfig1'.format(rg, nic), checks=[JMESPathCheck('name', 'ipconfig1'), JMESPathCheck('privateIpAllocationMethod', 'Dynamic')])
- self.cmd('network nic ip-config create -g {} --nic-name {} -n ipconfig2 --make-primary'.format(rg, nic), checks=[JMESPathCheck('primary', True)])
- self.cmd('network nic ip-config update -g {} --nic-name {} -n ipconfig1 --make-primary'.format(rg, nic), checks=[JMESPathCheck('primary', True)])
- self.cmd('network nic ip-config delete -g {} --nic-name {} -n ipconfig2'.format(rg, nic))
+ self.cmd('network vnet create -g {rg} -n vnet1 --subnet-name subnet1')
+ self.cmd('network nic create -g {rg} -n {nic} --subnet subnet1 --vnet-name vnet1')
+ self.cmd('network nic ip-config list -g {rg} --nic-name {nic}',
+ checks=self.check('length(@)', 1))
+ self.cmd('network nic ip-config show -g {rg} --nic-name {nic} -n ipconfig1', checks=[
+ self.check('name', 'ipconfig1'),
+ self.check('privateIpAllocationMethod', 'Dynamic')
+ ])
+ self.cmd('network nic ip-config create -g {rg} --nic-name {nic} -n ipconfig2 --make-primary',
+ checks=self.check('primary', True))
+ self.cmd('network nic ip-config update -g {rg} --nic-name {nic} -n ipconfig1 --make-primary',
+ checks=self.check('primary', True))
+ self.cmd('network nic ip-config delete -g {rg} --nic-name {nic} -n ipconfig2')
# test various sets
- vnet = 'vnet2'
- subnet = 'subnet2'
- public_ip = 'publicip2'
- lb = 'lb1'
- config = 'ipconfig1'
- self.cmd('network vnet create -g {} -n {} --subnet-name {}'.format(rg, vnet, subnet))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, public_ip))
- public_ip_id = self.cmd('network public-ip show -g {} -n {}'.format(rg, public_ip))['id']
- self.cmd('network lb create -g {} -n {}'.format(rg, lb))
- self.cmd('network lb inbound-nat-rule create -g {} --lb-name {} -n rule1 --protocol tcp --frontend-port 100 --backend-port 100 --frontend-ip-name LoadBalancerFrontEnd'.format(rg, lb))
- self.cmd('network lb inbound-nat-rule create -g {} --lb-name {} -n rule2 --protocol tcp --frontend-port 200 --backend-port 200 --frontend-ip-name LoadBalancerFrontEnd'.format(rg, lb))
- rule1_id = self.cmd('network lb inbound-nat-rule show -g {} --lb-name {} -n rule1'.format(rg, lb))['id']
- self.cmd('network lb address-pool create -g {} --lb-name {} -n bap1'.format(rg, lb))
- self.cmd('network lb address-pool create -g {} --lb-name {} -n bap2'.format(rg, lb))
- bap1_id = self.cmd('network lb address-pool show -g {} --lb-name {} -n bap1'.format(rg, lb))['id']
-
- private_ip = '10.0.0.15'
+ self.kwargs.update({
+ 'vnet': 'vnet2',
+ 'subnet': 'subnet2',
+ 'ip': 'publicip2',
+ 'lb': 'lb1',
+ 'config': 'ipconfig1'
+ })
+ self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name {subnet}')
+ self.cmd('network public-ip create -g {rg} -n {ip}')
+ self.kwargs['ip_id'] = self.cmd('network public-ip show -g {rg} -n {ip}').get_output_in_json()['id']
+ self.cmd('network lb create -g {rg} -n {lb}')
+ self.cmd('network lb inbound-nat-rule create -g {rg} --lb-name {lb} -n rule1 --protocol tcp --frontend-port 100 --backend-port 100 --frontend-ip-name LoadBalancerFrontEnd')
+ self.cmd('network lb inbound-nat-rule create -g {rg} --lb-name {lb} -n rule2 --protocol tcp --frontend-port 200 --backend-port 200 --frontend-ip-name LoadBalancerFrontEnd')
+ self.kwargs['rule1_id'] = self.cmd('network lb inbound-nat-rule show -g {rg} --lb-name {lb} -n rule1').get_output_in_json()['id']
+ self.cmd('network lb address-pool create -g {rg} --lb-name {lb} -n bap1')
+ self.cmd('network lb address-pool create -g {rg} --lb-name {lb} -n bap2')
+ self.kwargs['bap1_id'] = self.cmd('network lb address-pool show -g {rg} --lb-name {lb} -n bap1').get_output_in_json()['id']
+
+ self.kwargs['private_ip'] = '10.0.0.15'
# test ability to set load balancer IDs
# includes the default backend pool
- self.cmd('network nic ip-config update -g {} --nic-name {} -n {} --lb-name {} --lb-address-pools {} bap2 --lb-inbound-nat-rules {} rule2 --private-ip-address {}'.format(rg, nic, config, lb, bap1_id, rule1_id, private_ip),
- checks=[JMESPathCheck('length(loadBalancerBackendAddressPools)', 2),
- JMESPathCheck('length(loadBalancerInboundNatRules)', 2),
- JMESPathCheck('privateIpAddress', private_ip),
- JMESPathCheck('privateIpAllocationMethod', 'Static')])
+ self.cmd('network nic ip-config update -g {rg} --nic-name {nic} -n {config} --lb-name {lb} --lb-address-pools {bap1_id} bap2 --lb-inbound-nat-rules {rule1_id} rule2 --private-ip-address {private_ip}', checks=[
+ self.check('length(loadBalancerBackendAddressPools)', 2),
+ self.check('length(loadBalancerInboundNatRules)', 2),
+ self.check('privateIpAddress', '{private_ip}'),
+ self.check('privateIpAllocationMethod', 'Static')])
# test generic update
- self.cmd('network nic ip-config update -g {} --nic-name {} -n {} --set privateIpAddress=10.0.0.50'.format(rg, nic, config), checks=JMESPathCheck('privateIpAddress', '10.0.0.50'))
+ self.cmd('network nic ip-config update -g {rg} --nic-name {nic} -n {config} --set privateIpAddress=10.0.0.50',
+ checks=self.check('privateIpAddress', '10.0.0.50'))
# test ability to add and remove IDs one at a time with subcommands
- self.cmd('network nic ip-config inbound-nat-rule remove -g {} --lb-name {} --nic-name {} --ip-config-name {} --inbound-nat-rule rule1'.format(rg, lb, nic, config), checks=JMESPathCheck('length(loadBalancerInboundNatRules)', 1))
- self.cmd('network nic ip-config inbound-nat-rule add -g {} --lb-name {} --nic-name {} --ip-config-name {} --inbound-nat-rule rule1'.format(rg, lb, nic, config), checks=JMESPathCheck('length(loadBalancerInboundNatRules)', 2))
-
- self.cmd('network nic ip-config address-pool remove -g {} --lb-name {} --nic-name {} --ip-config-name {} --address-pool bap1'.format(rg, lb, nic, config), checks=JMESPathCheck('length(loadBalancerBackendAddressPools)', 1))
- self.cmd('network nic ip-config address-pool add -g {} --lb-name {} --nic-name {} --ip-config-name {} --address-pool bap1'.format(rg, lb, nic, config), checks=JMESPathCheck('length(loadBalancerBackendAddressPools)', 2))
-
- self.cmd('network nic ip-config update -g {} --nic-name {} -n {} --private-ip-address "" --public-ip-address {}'.format(rg, nic, config, public_ip_id), checks=[JMESPathCheck('privateIpAllocationMethod', 'Dynamic'), JMESPathCheck("publicIpAddress.contains(id, '{}')".format(public_ip), True)])
-
- self.cmd('network nic ip-config update -g {} --nic-name {} -n {} --subnet {} --vnet-name {}'.format(rg, nic, config, subnet, vnet), checks=JMESPathCheck("subnet.contains(id, '{}')".format(subnet), True))
+ self.cmd('network nic ip-config inbound-nat-rule remove -g {rg} --lb-name {lb} --nic-name {nic} --ip-config-name {config} --inbound-nat-rule rule1',
+ checks=self.check('length(loadBalancerInboundNatRules)', 1))
+ self.cmd('network nic ip-config inbound-nat-rule add -g {rg} --lb-name {lb} --nic-name {nic} --ip-config-name {config} --inbound-nat-rule rule1',
+ checks=self.check('length(loadBalancerInboundNatRules)', 2))
+
+ self.cmd('network nic ip-config address-pool remove -g {rg} --lb-name {lb} --nic-name {nic} --ip-config-name {config} --address-pool bap1',
+ checks=self.check('length(loadBalancerBackendAddressPools)', 1))
+ self.cmd('network nic ip-config address-pool add -g {rg} --lb-name {lb} --nic-name {nic} --ip-config-name {config} --address-pool bap1',
+ checks=self.check('length(loadBalancerBackendAddressPools)', 2))
+
+ self.cmd('network nic ip-config update -g {rg} --nic-name {nic} -n {config} --private-ip-address "" --public-ip-address {ip_id}', checks=[
+ self.check('privateIpAllocationMethod', 'Dynamic'),
+ self.check("publicIpAddress.contains(id, '{ip_id}')", True)
+ ])
+ self.cmd('network nic ip-config update -g {rg} --nic-name {nic} -n {config} --subnet {subnet} --vnet-name {vnet}',
+ checks=self.check("subnet.contains(id, '{subnet}')", True))
-class NetworkNicConvenienceCommandsScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkNicConvenienceCommandsScenarioTest, self).__init__(__file__, test_method, resource_group='cli_nic_convenience_test')
- self.vm_name = 'conveniencevm1'
- def test_network_nic_convenience_commands(self):
- self.execute()
+class NetworkNicConvenienceCommandsScenarioTest(ScenarioTest):
- def set_up(self):
- super(NetworkNicConvenienceCommandsScenarioTest, self).set_up()
- rg = self.resource_group
- vm = self.vm_name
- self.cmd('vm create -g {} -n {} --image UbuntuLTS --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password'.format(rg, vm))
+ @ResourceGroupPreparer(name_prefix='cli_nic_convenience_test')
+ def test_network_nic_convenience_commands(self, resource_group):
- def body(self):
- rg = self.resource_group
- vm = self.vm_name
- nic_id = self.cmd('vm show -g {} -n {} --query "networkProfile.networkInterfaces[0].id"'.format(rg, vm))
- result = self.cmd('network nic list-effective-nsg --ids {}'.format(nic_id))
- self.assertTrue(len(result['value']) > 0)
- result = self.cmd('network nic show-effective-route-table --ids {}'.format(nic_id))
- self.assertTrue(len(result['value']) > 0)
+ self.kwargs['vm'] = 'conveniencevm1'
+ self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --admin-username myusername --admin-password aBcD1234!@#$ --authentication-type password')
+ self.kwargs['nic_id'] = self.cmd('vm show -g {rg} -n {vm} --query "networkProfile.networkInterfaces[0].id"').get_output_in_json()
+ self.cmd('network nic list-effective-nsg --ids {nic_id}',
+ checks=self.greater_than('length(@)', 0))
+ self.cmd('network nic show-effective-route-table --ids {nic_id}',
+ checks=self.greater_than('length(@)', 0))
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01')
@@ -1257,204 +1315,265 @@ class NetworkExtendedNSGScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_extended_nsg')
def test_network_extended_nsg(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'nsg': 'nsg1',
'rule': 'rule1'
- }
- self.cmd('network nsg create --name {nsg} -g {rg}'.format(**kwargs))
- self.cmd('network nsg rule create --access allow --destination-address-prefixes 10.0.0.0/24 11.0.0.0/24 --direction inbound --nsg-name {nsg} --protocol * -g {rg} --source-address-prefix * -n {rule} --source-port-range 700-900 1000-1100 --destination-port-range 4444 --priority 1000'.format(**kwargs), checks=[
- JMESPathCheckV2('length(destinationAddressPrefixes)', 2),
- JMESPathCheckV2('destinationAddressPrefix', ''),
- JMESPathCheckV2('length(sourceAddressPrefixes)', 0),
- JMESPathCheckV2('sourceAddressPrefix', '*'),
- JMESPathCheckV2('length(sourcePortRanges)', 2),
- JMESPathCheckV2('sourcePortRange', None),
- JMESPathCheckV2('length(destinationPortRanges)', 0),
- JMESPathCheckV2('destinationPortRange', '4444')
- ])
- self.cmd('network nsg rule update --destination-address-prefixes Internet --nsg-name {nsg} -g {rg} --source-address-prefix 10.0.0.0/24 11.0.0.0/24 -n {rule} --source-port-range * --destination-port-range 500-1000 2000 3000'.format(**kwargs), checks=[
- JMESPathCheckV2('length(destinationAddressPrefixes)', 0),
- JMESPathCheckV2('destinationAddressPrefix', 'Internet'),
- JMESPathCheckV2('length(sourceAddressPrefixes)', 2),
- JMESPathCheckV2('sourceAddressPrefix', ''),
- JMESPathCheckV2('length(sourcePortRanges)', 0),
- JMESPathCheckV2('sourcePortRange', '*'),
- JMESPathCheckV2('length(destinationPortRanges)', 3),
- JMESPathCheckV2('destinationPortRange', None)
- ])
-
-
-class NetworkSecurityGroupScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkSecurityGroupScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_nsg')
- self.nsg_name = 'test-nsg1'
- self.nsg_rule_name = 'web'
- self.resource_type = 'Microsoft.Network/networkSecurityGroups'
-
- def test_network_nsg(self):
- self.execute()
-
- def body(self):
- rg = self.resource_group
- nsg = self.nsg_name
- nrn = self.nsg_rule_name
- rt = self.resource_type
-
- self.cmd('network nsg create --name {} -g {}'.format(nsg, rg))
- self.cmd('network nsg rule create --access allow --destination-address-prefix 1234 --direction inbound --nsg-name {} --protocol * -g {} --source-address-prefix 789 -n {} --source-port-range * --destination-port-range 4444 --priority 1000'.format(nsg, rg, nrn))
-
- self.cmd('network nsg list', checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format(rt), True)])
- self.cmd('network nsg list --resource-group {}'.format(rg), checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format(rt), True), JMESPathCheck("length([?resourceGroup == '{}']) == length(@)".format(rg), True)])
- self.cmd('network nsg show --resource-group {} --name {}'.format(rg, nsg), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('type', rt), JMESPathCheck('resourceGroup', rg), JMESPathCheck('name', nsg)])
+ })
+ self.cmd('network nsg create --name {nsg} -g {rg}')
+ self.cmd('network nsg rule create --access allow --destination-address-prefixes 10.0.0.0/24 11.0.0.0/24 --direction inbound --nsg-name {nsg} --protocol * -g {rg} --source-address-prefix * -n {rule} --source-port-range 700-900 1000-1100 --destination-port-range 4444 --priority 1000', checks=[
+ self.check('length(destinationAddressPrefixes)', 2),
+ self.check('destinationAddressPrefix', ''),
+ self.check('length(sourceAddressPrefixes)', 0),
+ self.check('sourceAddressPrefix', '*'),
+ self.check('length(sourcePortRanges)', 2),
+ self.check('sourcePortRange', None),
+ self.check('length(destinationPortRanges)', 0),
+ self.check('destinationPortRange', '4444')
+ ])
+ self.cmd('network nsg rule update --destination-address-prefixes Internet --nsg-name {nsg} -g {rg} --source-address-prefix 10.0.0.0/24 11.0.0.0/24 -n {rule} --source-port-range * --destination-port-range 500-1000 2000 3000', checks=[
+ self.check('length(destinationAddressPrefixes)', 0),
+ self.check('destinationAddressPrefix', 'Internet'),
+ self.check('length(sourceAddressPrefixes)', 2),
+ self.check('sourceAddressPrefix', ''),
+ self.check('length(sourcePortRanges)', 0),
+ self.check('sourcePortRange', '*'),
+ self.check('length(destinationPortRanges)', 3),
+ self.check('destinationPortRange', None)
+ ])
+
+
+class NetworkSecurityGroupScenarioTest(ScenarioTest):
+
+ @ResourceGroupPreparer(name_prefix='cli_test_nsg')
+ def test_network_nsg(self, resource_group):
+
+ self.kwargs.update({
+ 'nsg': 'test-nsg1',
+ 'rule': 'web',
+ 'rt': 'Microsoft.Network/networkSecurityGroups'
+ })
+
+ self.cmd('network nsg create --name {nsg} -g {rg}')
+ self.cmd('network nsg rule create --access allow --destination-address-prefix 1234 --direction inbound --nsg-name {nsg} --protocol * -g {rg} --source-address-prefix 789 -n {rule} --source-port-range * --destination-port-range 4444 --priority 1000')
+
+ self.cmd('network nsg list', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True)
+ ])
+ self.cmd('network nsg list --resource-group {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True),
+ self.check("length([?resourceGroup == '{rg}']) == length(@)", True)
+ ])
+ self.cmd('network nsg show --resource-group {rg} --name {nsg}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('type', '{rt}'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('name', '{nsg}')
+ ])
# Test for the manually added nsg rule
- self.cmd('network nsg rule list --resource-group {} --nsg-name {}'.format(rg, nsg), checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck('length(@)', 1), JMESPathCheck("length([?resourceGroup == '{}']) == length(@)".format(rg), True)])
- self.cmd('network nsg rule show --resource-group {} --nsg-name {} --name {}'.format(rg, nsg, nrn), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('resourceGroup', rg), JMESPathCheck('name', nrn)])
-
- # Test for updating the rule
- new_access = 'DENY'
- new_addr_prefix = '111'
- new_direction = 'Outbound'
- new_protocol = 'Tcp'
- new_port_range = '1234-1235'
- description = 'greatrule'
- priority = 888
- self.cmd('network nsg rule update -g {} --nsg-name {} -n {} --direction {} --access {} --destination-address-prefix {} --protocol {} --source-address-prefix {} --source-port-range {} --destination-port-range {} --priority {} --description {}'.format(rg, nsg, nrn, new_direction, new_access, new_addr_prefix, new_protocol, new_addr_prefix, new_port_range, new_port_range, priority, description), checks=[JMESPathCheck('access', 'Deny'), JMESPathCheck('direction', new_direction), JMESPathCheck('destinationAddressPrefix', new_addr_prefix), JMESPathCheck('protocol', new_protocol), JMESPathCheck('sourceAddressPrefix', new_addr_prefix), JMESPathCheck('sourcePortRange', new_port_range), JMESPathCheck('priority', priority), JMESPathCheck('description', description), ])
+ self.cmd('network nsg rule list --resource-group {rg} --nsg-name {nsg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check('length(@)', 1),
+ self.check("length([?resourceGroup == '{rg}']) == length(@)", True)
+ ])
+ self.cmd('network nsg rule show --resource-group {rg} --nsg-name {nsg} --name {rule}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('name', '{rule}')
+ ])
+
+ self.kwargs.update({
+ 'access': 'DENY',
+ 'prefix': '111',
+ 'dir': 'Outbound',
+ 'protocol': 'Tcp',
+ 'ports': '1234-1235',
+ 'desc': 'greatrule',
+ 'priority': 888
+ })
+ self.cmd('network nsg rule update -g {rg} --nsg-name {nsg} -n {rule} --direction {dir} --access {access} --destination-address-prefix {prefix} --protocol {protocol} --source-address-prefix {prefix} --source-port-range {ports} --destination-port-range {ports} --priority {priority} --description {desc}', checks=[
+ self.check('access', 'Deny'),
+ self.check('direction', '{dir}'),
+ self.check('destinationAddressPrefix', '{prefix}'),
+ self.check('protocol', '{protocol}'),
+ self.check('sourceAddressPrefix', '{prefix}'),
+ self.check('sourcePortRange', '{ports}'),
+ self.check('priority', '{priority}'),
+ self.check('description', '{desc}')
+ ])
# test generic update
- self.cmd('network nsg rule update -g {} --nsg-name {} -n {} --set description="cool"'.format(rg, nsg, nrn), checks=JMESPathCheck('description', 'cool'))
+ self.cmd('network nsg rule update -g {rg} --nsg-name {nsg} -n {rule} --set description="cool"',
+ checks=self.check('description', 'cool'))
- self.cmd('network nsg rule delete --resource-group {} --nsg-name {} --name {}'.format(rg, nsg, nrn))
+ self.cmd('network nsg rule delete --resource-group {rg} --nsg-name {nsg} --name {rule}')
# Delete the network security group
- self.cmd('network nsg delete --resource-group {} --name {}'.format(rg, nsg))
+ self.cmd('network nsg delete --resource-group {rg} --name {nsg}')
# Expecting no results as we just deleted the only security group in the resource group
- self.cmd('network nsg list --resource-group {}'.format(rg), checks=NoneCheck())
+ self.cmd('network nsg list --resource-group {rg}', checks=self.is_empty())
-class NetworkRouteTableOperationScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkRouteTableOperationScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_route_table')
- self.route_table_name = 'cli-test-route-table'
- self.route_name = 'my-route'
- self.resource_type = 'Microsoft.Network/routeTables'
+class NetworkRouteTableOperationScenarioTest(ScenarioTest):
- def test_network_route_table_operation(self):
- self.execute()
+ @ResourceGroupPreparer(name_prefix='cli_test_route_table')
+ def test_network_route_table_operation(self, resource_group):
- def body(self):
- self.cmd('network route-table create -n {} -g {}'.format(self.route_table_name, self.resource_group))
- self.cmd('network route-table route create --address-prefix 10.0.5.0/24 -n {} -g {} --next-hop-type None'
- ' --route-table-name {}'.format(self.route_name, self.resource_group, self.route_table_name))
+ self.kwargs.update({
+ 'table': 'cli-test-route-table',
+ 'route': 'my-route',
+ 'rt': 'Microsoft.Network/routeTables'
+ })
- self.cmd('network route-table list', checks=JMESPathCheck('type(@)', 'array'))
- self.cmd('network route-table list --resource-group {}'.format(self.resource_group), checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck('length(@)', 1), JMESPathCheck('[0].name', self.route_table_name), JMESPathCheck('[0].resourceGroup', self.resource_group), JMESPathCheck('[0].type', self.resource_type)])
- self.cmd('network route-table show --resource-group {} --name {}'.format(self.resource_group, self.route_table_name), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('name', self.route_table_name), JMESPathCheck('resourceGroup', self.resource_group), JMESPathCheck('type', self.resource_type)])
- self.cmd('network route-table route list --resource-group {} --route-table-name {}'.format(self.resource_group, self.route_table_name), checks=JMESPathCheck('type(@)', 'array'))
- self.cmd('network route-table route show --resource-group {} --route-table-name {} --name {}'.format(self.resource_group, self.route_table_name, self.route_name), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('name', self.route_name), JMESPathCheck('resourceGroup', self.resource_group)])
- self.cmd('network route-table route delete --resource-group {} --route-table-name {} --name {}'.format(self.resource_group, self.route_table_name, self.route_name))
- # Expecting no results as the route operation was just deleted
- self.cmd('network route-table route list --resource-group {} --route-table-name {}'.format(self.resource_group, self.route_table_name), checks=NoneCheck())
- self.cmd('network route-table delete --resource-group {} --name {}'.format(self.resource_group, self.route_table_name))
- # Expecting no results as the route table was just deleted
- self.cmd('network route-table list --resource-group {}'.format(self.resource_group), checks=NoneCheck())
+ self.cmd('network route-table create -n {table} -g {rg}')
+ self.cmd('network route-table route create --address-prefix 10.0.5.0/24 -n {route} -g {rg} --next-hop-type None --route-table-name {table}')
+ self.cmd('network route-table list',
+ checks=self.check('type(@)', 'array'))
+ self.cmd('network route-table list --resource-group {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check('length(@)', 1),
+ self.check('[0].name', '{table}'),
+ self.check('[0].type', '{rt}')
+ ])
+ self.cmd('network route-table show --resource-group {rg} --name {table}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('name', '{table}'),
+ self.check('type', '{rt}')
+ ])
+ self.cmd('network route-table route list --resource-group {rg} --route-table-name {table}',
+ checks=self.check('type(@)', 'array'))
+ self.cmd('network route-table route show --resource-group {rg} --route-table-name {table} --name {route}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('name', '{route}'),
+ ])
+ self.cmd('network route-table route delete --resource-group {rg} --route-table-name {table} --name {route}')
+ self.cmd('network route-table route list --resource-group {rg} --route-table-name {table}', checks=self.is_empty())
+ self.cmd('network route-table delete --resource-group {rg} --name {table}')
+ self.cmd('network route-table list --resource-group {rg}', checks=self.is_empty())
-class NetworkVNetScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkVNetScenarioTest, self).__init__(__file__, test_method, resource_group='cli_vnet_test')
- self.vnet_name = 'test-vnet'
- self.vnet_subnet_name = 'test-subnet1'
- self.resource_type = 'Microsoft.Network/virtualNetworks'
- def test_network_vnet(self):
- self.execute()
+class NetworkVNetScenarioTest(ScenarioTest):
- def body(self):
- # verify the deployment result
- self.cmd('network vnet create --resource-group {} --name {} --subnet-name default'.format(self.resource_group, self.vnet_name), checks=[JMESPathCheck('newVNet.provisioningState', 'Succeeded'), JMESPathCheck('newVNet.addressSpace.addressPrefixes[0]', '10.0.0.0/16')])
+ @ResourceGroupPreparer(name_prefix='cli_vnet_test')
+ def test_network_vnet(self, resource_group):
- self.cmd('network vnet check-ip-address -g {} -n {} --ip-address 10.0.0.50'.format(self.resource_group, self.vnet_name), checks=JMESPathCheck('available', True))
+ self.kwargs.update({
+ 'vnet': 'vnet1',
+ 'subnet': 'subnet1',
+ 'rt': 'Microsoft.Network/virtualNetworks'
+ })
- self.cmd('network vnet check-ip-address -g {} -n {} --ip-address 10.0.0.0'.format(self.resource_group, self.vnet_name), checks=JMESPathCheck('available', False))
+ self.cmd('network vnet create --resource-group {rg} --name {vnet} --subnet-name default', checks=[
+ self.check('newVNet.provisioningState', 'Succeeded'),
+ self.check('newVNet.addressSpace.addressPrefixes[0]', '10.0.0.0/16')
+ ])
+ self.cmd('network vnet check-ip-address -g {rg} -n {vnet} --ip-address 10.0.0.50',
+ checks=self.check('available', True))
- self.cmd('network vnet list', checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format(self.resource_type), True)])
- self.cmd('network vnet list --resource-group {}'.format(self.resource_group), checks=[JMESPathCheck('type(@)', 'array'), JMESPathCheck("length([?type == '{}']) == length(@)".format(self.resource_type), True), JMESPathCheck("length([?resourceGroup == '{}']) == length(@)".format(self.resource_group), True)])
- self.cmd('network vnet show --resource-group {} --name {}'.format(self.resource_group, self.vnet_name), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('name', self.vnet_name), JMESPathCheck('resourceGroup', self.resource_group), JMESPathCheck('type', self.resource_type)])
+ self.cmd('network vnet check-ip-address -g {rg} -n {vnet} --ip-address 10.0.0.0',
+ checks=self.check('available', False))
- vnet_addr_prefixes = '20.0.0.0/16 10.0.0.0/16'
- self.cmd('network vnet update --resource-group {} --name {} --address-prefixes {} --dns-servers 1.2.3.4'.format(self.resource_group, self.vnet_name, vnet_addr_prefixes), checks=[
- JMESPathCheck('length(addressSpace.addressPrefixes)', 2),
- JMESPathCheck('dhcpOptions.dnsServers[0]', '1.2.3.4')
+ self.cmd('network vnet list', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True)
+ ])
+ self.cmd('network vnet list --resource-group {rg}', checks=[
+ self.check('type(@)', 'array'),
+ self.check("length([?type == '{rt}']) == length(@)", True),
+ ])
+ self.cmd('network vnet show --resource-group {rg} --name {vnet}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('name', '{vnet}'),
+ self.check('type', '{rt}')
])
- self.cmd('network vnet update -g {} -n {} --dns-servers ""'.format(self.resource_group, self.vnet_name), checks=[
- JMESPathCheck('length(addressSpace.addressPrefixes)', 2),
- JMESPathCheck('dhcpOptions.dnsServers', [])
+ self.kwargs['prefixes'] = '20.0.0.0/16 10.0.0.0/16'
+ self.cmd('network vnet update --resource-group {rg} --name {vnet} --address-prefixes {prefixes} --dns-servers 1.2.3.4', checks=[
+ self.check('length(addressSpace.addressPrefixes)', 2),
+ self.check('dhcpOptions.dnsServers[0]', '1.2.3.4')
+ ])
+ self.cmd('network vnet update -g {rg} -n {vnet} --dns-servers ""', checks=[
+ self.check('length(addressSpace.addressPrefixes)', 2),
+ self.check('dhcpOptions.dnsServers', [])
])
# test generic update
- self.cmd('network vnet update --resource-group {} --name {} --set addressSpace.addressPrefixes[0]="20.0.0.0/24"'.format(self.resource_group, self.vnet_name), checks=JMESPathCheck('addressSpace.addressPrefixes[0]', '20.0.0.0/24'))
-
- self.cmd('network vnet subnet create --resource-group {} --vnet-name {} --name {} --address-prefix {}'.format(self.resource_group, self.vnet_name, self.vnet_subnet_name, '20.0.0.0/24'))
-
- self.cmd('network vnet subnet list --resource-group {} --vnet-name {}'.format(self.resource_group, self.vnet_name), checks=JMESPathCheck('type(@)', 'array'))
- self.cmd('network vnet subnet show --resource-group {} --vnet-name {} --name {}'.format(self.resource_group, self.vnet_name, self.vnet_subnet_name), checks=[JMESPathCheck('type(@)', 'object'), JMESPathCheck('name', self.vnet_subnet_name), JMESPathCheck('resourceGroup', self.resource_group)])
+ self.cmd('network vnet update --resource-group {rg} --name {vnet} --set addressSpace.addressPrefixes[0]="20.0.0.0/24"',
+ checks=self.check('addressSpace.addressPrefixes[0]', '20.0.0.0/24'))
+
+ self.cmd('network vnet subnet create --resource-group {rg} --vnet-name {vnet} --name {subnet} --address-prefix 20.0.0.0/24')
+ self.cmd('network vnet subnet list --resource-group {rg} --vnet-name {vnet}',
+ checks=self.check('type(@)', 'array'))
+ self.cmd('network vnet subnet show --resource-group {rg} --vnet-name {vnet} --name {subnet}', checks=[
+ self.check('type(@)', 'object'),
+ self.check('name', '{subnet}'),
+ ])
- # Test delete subnet
- self.cmd('network vnet subnet delete --resource-group {} --vnet-name {} --name {}'.format(self.resource_group, self.vnet_name, self.vnet_subnet_name))
- # Expecting the subnet to not be listed after delete
- self.cmd('network vnet subnet list --resource-group {} --vnet-name {}'.format(self.resource_group, self.vnet_name), checks=JMESPathCheck("length([?name == '{}'])".format(self.vnet_subnet_name), 0))
+ self.cmd('network vnet subnet delete --resource-group {rg} --vnet-name {vnet} --name {subnet}')
+ self.cmd('network vnet subnet list --resource-group {rg} --vnet-name {vnet}',
+ checks=self.check("length([?name == '{subnet}'])", 0))
- # Test delete vnet
- self.cmd('network vnet list --resource-group {}'.format(self.resource_group), checks=JMESPathCheck("length([?name == '{}'])".format(self.vnet_name), 1))
- self.cmd('network vnet delete --resource-group {} --name {}'.format(self.resource_group, self.vnet_name))
- # Expecting the vnet we deleted to not be listed after delete
- self.cmd('network vnet list --resource-group {}'.format(self.resource_group), NoneCheck())
+ self.cmd('network vnet list --resource-group {rg}',
+ checks=self.check("length([?name == '{vnet}'])", 1))
+ self.cmd('network vnet delete --resource-group {rg} --name {vnet}')
+ self.cmd('network vnet list --resource-group {rg}', checks=self.is_empty())
class NetworkVNetPeeringScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_vnet_peering')
def test_network_vnet_peering(self, resource_group):
- rg = resource_group
+
# create two vnets with non-overlapping prefixes
- self.cmd('network vnet create -g {} -n vnet1'.format(rg))
- self.cmd('network vnet create -g {} -n vnet2 --subnet-name GatewaySubnet --address-prefix 11.0.0.0/16 --subnet-prefix 11.0.0.0/24'.format(rg))
+ self.cmd('network vnet create -g {rg} -n vnet1')
+ self.cmd('network vnet create -g {rg} -n vnet2 --subnet-name GatewaySubnet --address-prefix 11.0.0.0/16 --subnet-prefix 11.0.0.0/24')
# create supporting resources for gateway
- self.cmd('network public-ip create -g {} -n ip1'.format(rg))
- ip_id = self.cmd('network public-ip show -g {} -n ip1 --query id'.format(rg)).get_output_in_json()
- vnet_id = self.cmd('network vnet show -g {} -n vnet2 --query id'.format(rg)).get_output_in_json()
+ self.cmd('network public-ip create -g {rg} -n ip1')
+ ip_id = self.cmd('network public-ip show -g {rg} -n ip1 --query id').get_output_in_json()
+ vnet_id = self.cmd('network vnet show -g {rg} -n vnet2 --query id').get_output_in_json()
+
+ self.kwargs.update({
+ 'ip_id': ip_id,
+ 'vnet_id': vnet_id
+ })
# create the gateway on vnet2
- self.cmd('network vnet-gateway create -g {} -n gateway1 --public-ip-address {} --vnet {}'.format(rg, ip_id, vnet_id))
+ self.cmd('network vnet-gateway create -g {rg} -n gateway1 --public-ip-address {ip_id} --vnet {vnet_id}')
- vnet1_id = self.cmd('network vnet show -g {} -n vnet1 --query id'.format(rg)).get_output_in_json()
- vnet2_id = self.cmd('network vnet show -g {} -n vnet2 --query id'.format(rg)).get_output_in_json()
+ vnet1_id = self.cmd('network vnet show -g {rg} -n vnet1 --query id').get_output_in_json()
+ vnet2_id = self.cmd('network vnet show -g {rg} -n vnet2 --query id').get_output_in_json()
+
+ self.kwargs.update({
+ 'vnet1_id': vnet1_id,
+ 'vnet2_id': vnet2_id
+ })
# set up gateway sharing from vnet1 to vnet2
- self.cmd('network vnet peering create -g {} -n peering2 --vnet-name vnet2 --remote-vnet-id {} --allow-gateway-transit'.format(rg, vnet1_id), checks=[
- JMESPathCheckV2('allowGatewayTransit', True),
- JMESPathCheckV2('remoteVirtualNetwork.id', vnet1_id),
- JMESPathCheckV2('peeringState', 'Initiated')
- ])
- self.cmd('network vnet peering create -g {} -n peering1 --vnet-name vnet1 --remote-vnet-id {} --use-remote-gateways --allow-forwarded-traffic'.format(rg, vnet2_id), checks=[
- JMESPathCheckV2('useRemoteGateways', True),
- JMESPathCheckV2('remoteVirtualNetwork.id', vnet2_id),
- JMESPathCheckV2('peeringState', 'Connected'),
- JMESPathCheckV2('allowVirtualNetworkAccess', False)
- ])
- self.cmd('network vnet peering show -g {} -n peering1 --vnet-name vnet1'.format(rg),
- checks=JMESPathCheckV2('name', 'peering1'))
- self.cmd('network vnet peering list -g {} --vnet-name vnet2'.format(rg), checks=[
- JMESPathCheckV2('[0].name', 'peering2'),
- JMESPathCheckV2('length(@)', 1)
- ])
- self.cmd('network vnet peering update -g {} -n peering1 --vnet-name vnet1 --set useRemoteGateways=false'.format(rg), checks=[
- JMESPathCheckV2('useRemoteGateways', False),
- JMESPathCheckV2('allowForwardedTraffic', True)
- ])
- self.cmd('network vnet peering delete -g {} -n peering1 --vnet-name vnet1'.format(rg))
- self.cmd('network vnet peering list -g {} --vnet-name vnet1'.format(rg), checks=NoneCheck())
+ self.cmd('network vnet peering create -g {rg} -n peering2 --vnet-name vnet2 --remote-vnet-id {vnet1_id} --allow-gateway-transit', checks=[
+ self.check('allowGatewayTransit', True),
+ self.check('remoteVirtualNetwork.id', '{vnet1_id}'),
+ self.check('peeringState', 'Initiated')
+ ])
+ self.cmd('network vnet peering create -g {rg} -n peering1 --vnet-name vnet1 --remote-vnet-id {vnet2_id} --use-remote-gateways --allow-forwarded-traffic', checks=[
+ self.check('useRemoteGateways', True),
+ self.check('remoteVirtualNetwork.id', '{vnet2_id}'),
+ self.check('peeringState', 'Connected'),
+ self.check('allowVirtualNetworkAccess', False)
+ ])
+ self.cmd('network vnet peering show -g {rg} -n peering1 --vnet-name vnet1',
+ checks=self.check('name', 'peering1'))
+ self.cmd('network vnet peering list -g {rg} --vnet-name vnet2', checks=[
+ self.check('[0].name', 'peering2'),
+ self.check('length(@)', 1)
+ ])
+ self.cmd('network vnet peering update -g {rg} -n peering1 --vnet-name vnet1 --set useRemoteGateways=false', checks=[
+ self.check('useRemoteGateways', False),
+ self.check('allowForwardedTraffic', True)
+ ])
+ self.cmd('network vnet peering delete -g {rg} -n peering1 --vnet-name vnet1')
+ self.cmd('network vnet peering list -g {rg} --vnet-name vnet1',
+ checks=self.is_empty())
# must delete the second peering and the gateway or the resource group delete will fail
- self.cmd('network vnet peering delete -g {} -n peering2 --vnet-name vnet2'.format(rg))
- self.cmd('network vnet-gateway delete -g {} -n gateway1'.format(rg))
+ self.cmd('network vnet peering delete -g {rg} -n peering2 --vnet-name vnet2')
+ self.cmd('network vnet-gateway delete -g {rg} -n gateway1')
class NetworkVpnConnectionIpSecPolicy(ScenarioTest):
@@ -1462,8 +1581,7 @@ class NetworkVpnConnectionIpSecPolicy(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_vpn_connection_ipsec')
def test_network_vpn_connection_ipsec(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'vnet1': 'vnet1',
'vnet_prefix1': '10.11.0.0/16',
'vnet_prefix2': '10.12.0.0/16',
@@ -1481,55 +1599,57 @@ def test_network_vpn_connection_ipsec(self, resource_group):
'lgw1_prefix1': '10.61.0.0/16',
'lgw1_prefix2': '10.62.0.0/16',
'conn1': 'conn1'
- }
-
- self.cmd('network vnet create -g {rg} -n {vnet1} --address-prefix {vnet_prefix1} {vnet_prefix2}'.format(**kwargs))
- self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet1} -n {fe_sub1} --address-prefix {fe_sub_prefix1}'.format(**kwargs))
- self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet1} -n {be_sub1} --address-prefix {be_sub_prefix1}'.format(**kwargs))
- self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet1} -n {gw_sub1} --address-prefix {gw_sub_prefix1}'.format(**kwargs))
- self.cmd('network public-ip create -g {rg} -n {gw1ip}'.format(**kwargs))
+ })
- self.cmd('network vnet-gateway create -g {rg} -n {gw1} --public-ip-address {gw1ip} --vnet {vnet1} --sku {gw1_sku}'.format(**kwargs))
- self.cmd('network local-gateway create -g {rg} -n {lgw1} --gateway-ip-address {lgw1ip} --local-address-prefixes {lgw1_prefix1} {lgw1_prefix2}'.format(**kwargs))
- self.cmd('network vpn-connection create -g {rg} -n {conn1} --vnet-gateway1 {gw1} --local-gateway2 {lgw1} --shared-key AzureA1b2C3'.format(**kwargs))
+ self.cmd('network vnet create -g {rg} -n {vnet1} --address-prefix {vnet_prefix1} {vnet_prefix2}')
+ self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet1} -n {fe_sub1} --address-prefix {fe_sub_prefix1}')
+ self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet1} -n {be_sub1} --address-prefix {be_sub_prefix1}')
+ self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet1} -n {gw_sub1} --address-prefix {gw_sub_prefix1}')
+ self.cmd('network public-ip create -g {rg} -n {gw1ip}')
- self.cmd('network vpn-connection ipsec-policy add -g {rg} --connection-name {conn1} --ike-encryption AES256 --ike-integrity SHA384 --dh-group DHGroup24 --ipsec-encryption GCMAES256 --ipsec-integrity GCMAES256 --pfs-group PFS24 --sa-lifetime 7200 --sa-max-size 2048'.format(**kwargs))
- self.cmd('network vpn-connection ipsec-policy list -g {rg} --connection-name {conn1}'.format(**kwargs))
- self.cmd('network vpn-connection ipsec-policy clear -g {rg} --connection-name {conn1}'.format(**kwargs))
- self.cmd('network vpn-connection ipsec-policy list -g {rg} --connection-name {conn1}'.format(**kwargs))
+ self.cmd('network vnet-gateway create -g {rg} -n {gw1} --public-ip-address {gw1ip} --vnet {vnet1} --sku {gw1_sku}')
+ self.cmd('network local-gateway create -g {rg} -n {lgw1} --gateway-ip-address {lgw1ip} --local-address-prefixes {lgw1_prefix1} {lgw1_prefix2}')
+ self.cmd('network vpn-connection create -g {rg} -n {conn1} --vnet-gateway1 {gw1} --local-gateway2 {lgw1} --shared-key AzureA1b2C3')
- # TODO: Continue with the VNET-to-VNET scenario... >_>
+ self.cmd('network vpn-connection ipsec-policy add -g {rg} --connection-name {conn1} --ike-encryption AES256 --ike-integrity SHA384 --dh-group DHGroup24 --ipsec-encryption GCMAES256 --ipsec-integrity GCMAES256 --pfs-group PFS24 --sa-lifetime 7200 --sa-max-size 2048')
+ self.cmd('network vpn-connection ipsec-policy list -g {rg} --connection-name {conn1}')
+ self.cmd('network vpn-connection ipsec-policy clear -g {rg} --connection-name {conn1}')
+ self.cmd('network vpn-connection ipsec-policy list -g {rg} --connection-name {conn1}')
-class NetworkSubnetSetScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkSubnetSetScenarioTest, self).__init__(__file__, test_method, resource_group='cli_subnet_set_test')
- self.vnet_name = 'test-vnet2'
+class NetworkSubnetSetScenarioTest(ScenarioTest):
- def test_network_subnet_set(self):
- self.execute()
+ @ResourceGroupPreparer(name_prefix='cli_subnet_set_test')
+ def test_network_subnet_set(self, resource_group):
- def body(self):
- vnet_addr_prefix = '123.0.0.0/16'
- subnet_name = 'default'
- subnet_addr_prefix = '123.0.0.0/24'
- subnet_addr_prefix_new = '123.0.5.0/24'
- nsg_name = 'test-vnet-nsg'
+ self.kwargs.update({
+ 'vnet': 'vnet1',
+ 'vnet_prefix': '123.0.0.0/16',
+ 'subnet': 'default',
+ 'subnet_prefix': '123.0.0.0/24',
+ 'subnet_prefix2': '123.0.5.0/24',
+ 'nsg': 'test-vnet-nsg'
+ })
- self.cmd('network vnet create --resource-group {} --name {} --address-prefix {} --subnet-name {} --subnet-prefix {}'.format(self.resource_group, self.vnet_name, vnet_addr_prefix, subnet_name, subnet_addr_prefix))
- self.cmd('network nsg create --resource-group {} --name {}'.format(self.resource_group, nsg_name))
+ self.cmd('network vnet create --resource-group {rg} --name {vnet} --address-prefix {vnet_prefix} --subnet-name {subnet} --subnet-prefix {subnet_prefix}')
+ self.cmd('network nsg create --resource-group {rg} --name {nsg}')
# Test we can update the address space and nsg
- self.cmd('network vnet subnet update --resource-group {} --vnet-name {} --name {} --address-prefix {} --network-security-group {}'.format(self.resource_group, self.vnet_name, subnet_name, subnet_addr_prefix_new, nsg_name), checks=[JMESPathCheck('addressPrefix', subnet_addr_prefix_new), JMESPathCheck('ends_with(@.networkSecurityGroup.id, `{}`)'.format('/' + nsg_name), True)])
+ self.cmd('network vnet subnet update --resource-group {rg} --vnet-name {vnet} --name {subnet} --address-prefix {subnet_prefix2} --network-security-group {nsg}', checks=[
+ self.check('addressPrefix', '{subnet_prefix2}'),
+ self.check('ends_with(@.networkSecurityGroup.id, `/{nsg}`)', True)
+ ])
# test generic update
- self.cmd('network vnet subnet update -g {} --vnet-name {} -n {} --set addressPrefix=123.0.0.0/24'.format(self.resource_group, self.vnet_name, subnet_name), checks=JMESPathCheck('addressPrefix', '123.0.0.0/24'))
+ self.cmd('network vnet subnet update -g {rg} --vnet-name {vnet} -n {subnet} --set addressPrefix=123.0.0.0/24',
+ checks=self.check('addressPrefix', '123.0.0.0/24'))
# Test we can get rid of the nsg.
- self.cmd('network vnet subnet update --resource-group {} --vnet-name {} --name {} --address-prefix {} --network-security-group {}'.format(self.resource_group, self.vnet_name, subnet_name, subnet_addr_prefix_new, '\"\"'), checks=JMESPathCheck('networkSecurityGroup', None))
+ self.cmd('network vnet subnet update --resource-group {rg} --vnet-name {vnet} --name {subnet} --address-prefix {subnet_prefix2} --network-security-group \"\"',
+ checks=self.check('networkSecurityGroup', None))
- self.cmd('network vnet delete --resource-group {} --name {}'.format(self.resource_group, self.vnet_name))
- self.cmd('network nsg delete --resource-group {} --name {}'.format(self.resource_group, nsg_name))
+ self.cmd('network vnet delete --resource-group {rg} --name {vnet}')
+ self.cmd('network nsg delete --resource-group {rg} --name {nsg}')
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2017-06-01')
@@ -1537,144 +1657,120 @@ class NetworkSubnetEndpointServiceScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_subnet_endpoint_service_test')
def test_network_subnet_endpoint_service(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'vnet': 'vnet1',
'subnet': 'subnet1'
- }
+ })
self.cmd('network vnet list-endpoint-services -l westus', checks=[
- JMESPathCheckV2('length(@)', 1),
- JMESPathCheckV2('@[0].name', 'Microsoft.Storage')
- ])
- self.cmd('network vnet create -g {rg} -n {vnet}'.format(**kwargs))
- self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet} -n {subnet} --address-prefix 10.0.1.0/24 --service-endpoints Microsoft.Storage'.format(**kwargs),
- checks=JMESPathCheckV2('serviceEndpoints[0].service', 'Microsoft.Storage'))
- self.cmd('network vnet subnet update -g {rg} --vnet-name {vnet} -n {subnet} --service-endpoints ""'.format(**kwargs),
- checks=JMESPathCheckV2('serviceEndpoints', None))
-
-
-class NetworkActiveActiveCrossPremiseScenarioTest(ResourceGroupVCRTestBase): # pylint: disable=too-many-instance-attributes
-
- def __init__(self, test_method):
- super(NetworkActiveActiveCrossPremiseScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_active_active_cross_premise_connection')
- self.vnet1 = 'vnet1'
- self.gw_subnet = 'GatewaySubnet'
- self.vnet_prefix1 = '10.11.0.0/16'
- self.vnet_prefix2 = '10.12.0.0/16'
- self.gw_subnet_prefix = '10.12.255.0/27'
- self.gw_ip1 = 'gwip1'
- self.gw_ip2 = 'gwip2'
-
- def test_network_active_active_cross_premise_connection(self):
- self.execute()
-
- def set_up(self):
- super(NetworkActiveActiveCrossPremiseScenarioTest, self).set_up()
- rg = self.resource_group
-
- self.cmd('network vnet create -g {} -n {} --address-prefix {} {} --subnet-name {} --subnet-prefix {}'.format(rg, self.vnet1, self.vnet_prefix1, self.vnet_prefix2, self.gw_subnet, self.gw_subnet_prefix))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, self.gw_ip1))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, self.gw_ip2))
-
- def body(self):
- rg = self.resource_group
- vnet1 = self.vnet1
- vnet1_asn = 65010
- gw1 = 'gw1'
-
- lgw2 = 'lgw2'
- lgw_ip = '131.107.72.22'
- lgw_prefix = '10.52.255.253/32'
- bgp_peer1 = '10.52.255.253'
- lgw_asn = 65050
- lgw_loc = 'eastus'
- conn_151 = 'Vnet1toSite5_1'
- conn_152 = 'Vnet1toSite5_2'
- shared_key = 'abc123'
- shared_key2 = 'a1b2c3'
+ self.check('length(@)', 1),
+ self.check('@[0].name', 'Microsoft.Storage')
+ ])
+ self.cmd('network vnet create -g {rg} -n {vnet}')
+ self.cmd('network vnet subnet create -g {rg} --vnet-name {vnet} -n {subnet} --address-prefix 10.0.1.0/24 --service-endpoints Microsoft.Storage',
+ checks=self.check('serviceEndpoints[0].service', 'Microsoft.Storage'))
+ self.cmd('network vnet subnet update -g {rg} --vnet-name {vnet} -n {subnet} --service-endpoints ""',
+ checks=self.check('serviceEndpoints', None))
- # create the vnet gateway with active-active feature
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --sku HighPerformance --asn {} --public-ip-addresses {} {}'.format(rg, gw1, vnet1, vnet1_asn, self.gw_ip1, self.gw_ip2))
- # create and connect first local-gateway
- self.cmd('network local-gateway create -g {} -n {} -l {} --gateway-ip-address {} --local-address-prefixes {} --asn {} --bgp-peering-address {}'.format(rg, lgw2, lgw_loc, lgw_ip, lgw_prefix, lgw_asn, bgp_peer1))
- self.cmd('network vpn-connection create -g {} -n {} --vnet-gateway1 {} --local-gateway2 {} --shared-key {} --enable-bgp'.format(rg, conn_151, gw1, lgw2, shared_key))
- self.cmd('network vpn-connection shared-key reset -g {} --connection-name {} --key-length 128'.format(rg, conn_151))
- sk1 = self.cmd('network vpn-connection shared-key show -g {} --connection-name {}'.format(rg, conn_151))
- self.cmd('network vpn-connection shared-key update -g {} --connection-name {} --value {}'.format(rg, conn_151, shared_key2))
- sk2 = self.cmd('network vpn-connection shared-key show -g {} --connection-name {}'.format(rg, conn_151), checks=JMESPathCheck('value', shared_key2))
- self.assertNotEqual(sk1, sk2)
+class NetworkActiveActiveCrossPremiseScenarioTest(ScenarioTest): # pylint: disable=too-many-instance-attributes
- lgw3 = 'lgw3'
- lgw3_ip = '131.107.72.23'
- lgw3_prefix = '10.52.255.254/32'
- bgp_peer2 = '10.52.255.254'
+ @ResourceGroupPreparer(name_prefix='cli_test_active_active_cross_premise_connection')
+ def test_network_active_active_cross_premise_connection(self, resource_group):
- # create and connect second local-gateway
- self.cmd('network local-gateway create -g {} -n {} -l {} --gateway-ip-address {} --local-address-prefixes {} --asn {} --bgp-peering-address {}'.format(rg, lgw3, lgw_loc, lgw3_ip, lgw3_prefix, lgw_asn, bgp_peer2))
- self.cmd('network vpn-connection create -g {} -n {} --vnet-gateway1 {} --local-gateway2 {} --shared-key {} --enable-bgp'.format(rg, conn_152, gw1, lgw3, shared_key))
+ self.kwargs.update({
+ 'vnet1': 'vnet1',
+ 'vnet_prefix1': '10.11.0.0/16',
+ 'vnet_prefix2': '10.12.0.0/16',
+ 'vnet1_asn': 65010,
+ 'gw_subnet': 'GatewaySubnet',
+ 'gw_subnet_prefix': '10.12.255.0/27',
+ 'gw_ip1': 'gwip1',
+ 'gw_ip2': 'gwip2',
+ 'gw1': 'gw1',
+ 'lgw2': 'lgw2',
+ 'lgw_ip': '131.107.72.22',
+ 'lgw_prefix': '10.52.255.253/32',
+ 'bgp_peer1': '10.52.255.253',
+ 'lgw_asn': 65050,
+ 'lgw_loc': 'eastus',
+ 'conn_151': 'Vnet1toSite5_1',
+ 'conn_152': 'Vnet1toSite5_2',
+ 'shared_key': 'abc123',
+ 'shared_key2': 'a1b2c3',
+ 'lgw3': 'lgw3',
+ 'lgw3_ip': '131.107.72.23',
+ 'lgw3_prefix': '10.52.255.254/32',
+ 'bgp_peer2': '10.52.255.254'
+ })
+
+ self.cmd('network vnet create -g {rg} -n {vnet1} --address-prefix {vnet_prefix1} {vnet_prefix2} --subnet-name {gw_subnet} --subnet-prefix {gw_subnet_prefix}')
+ self.cmd('network public-ip create -g {rg} -n {gw_ip1}')
+ self.cmd('network public-ip create -g {rg} -n {gw_ip2}')
+ # create the vnet gateway with active-active feature
+ self.cmd('network vnet-gateway create -g {rg} -n {gw1} --vnet {vnet1} --sku HighPerformance --asn {vnet1_asn} --public-ip-addresses {gw_ip1} {gw_ip2}')
-class NetworkActiveActiveVnetVnetScenarioTest(ResourceGroupVCRTestBase): # pylint: disable=too-many-instance-attributes
+ # create and connect first local-gateway
+ self.cmd('network local-gateway create -g {rg} -n {lgw2} -l {lgw_loc} --gateway-ip-address {lgw_ip} --local-address-prefixes {lgw_prefix} --asn {lgw_asn} --bgp-peering-address {bgp_peer1}')
+ self.cmd('network vpn-connection create -g {rg} -n {conn_151} --vnet-gateway1 {gw1} --local-gateway2 {lgw2} --shared-key {shared_key} --enable-bgp')
+ self.cmd('network vpn-connection shared-key reset -g {rg} --connection-name {conn_151} --key-length 128')
+ sk1 = self.cmd('network vpn-connection shared-key show -g {rg} --connection-name {conn_151}').get_output_in_json()
+ self.cmd('network vpn-connection shared-key update -g {rg} --connection-name {conn_151} --value {shared_key2}').get_output_in_json()
+ sk2 = self.cmd('network vpn-connection shared-key show -g {rg} --connection-name {conn_151}',
+ checks=self.check('value', '{shared_key2}'))
+ self.assertNotEqual(sk1, sk2)
- def __init__(self, test_method):
- super(NetworkActiveActiveVnetVnetScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_active_active_vnet_vnet_connection')
- self.gw_subnet = 'GatewaySubnet'
+ # create and connect second local-gateway
+ self.cmd('network local-gateway create -g {rg} -n {lgw3} -l {lgw_loc} --gateway-ip-address {lgw3_ip} --local-address-prefixes {lgw3_prefix} --asn {lgw_asn} --bgp-peering-address {bgp_peer2}')
+ self.cmd('network vpn-connection create -g {rg} -n {conn_152} --vnet-gateway1 {gw1} --local-gateway2 {lgw3} --shared-key {shared_key} --enable-bgp')
- # First VNet
- self.vnet1 = 'vnet1'
- self.vnet1_prefix = '10.21.0.0/16'
- self.gw1_subnet_prefix = '10.21.255.0/27'
- self.gw1_ip1 = 'gw1ip1'
- self.gw1_ip2 = 'gw1ip2'
- # Second VNet
- self.vnet2 = 'vnet2'
- self.vnet2_prefix = '10.22.0.0/16'
- self.gw2_subnet_prefix = '10.22.255.0/27'
- self.gw2_ip1 = 'gw2ip1'
- self.gw2_ip2 = 'gw2ip2'
+class NetworkActiveActiveVnetScenarioTest(ScenarioTest): # pylint: disable=too-many-instance-attributes
- def test_network_active_active_vnet_vnet_connection(self):
- self.execute()
+ @ResourceGroupPreparer(name_prefix='cli_test_active_active_vnet_vnet_connection')
+ def test_network_active_active_vnet_connection(self, resource_group):
- def set_up(self):
- super(NetworkActiveActiveVnetVnetScenarioTest, self).set_up()
- rg = self.resource_group
+ self.kwargs.update({
+ 'subnet': 'GatewaySubnet',
+ 'vnet1': 'vnet1',
+ 'vnet1_prefix': '10.21.0.0/16',
+ 'vnet1_asn': 65010,
+ 'gw1': 'vgw1',
+ 'gw1_prefix': '10.21.255.0/27',
+ 'gw1_ip1': 'gw1ip1',
+ 'gw1_ip2': 'gw1ip2',
+ 'vnet2': 'vnet2',
+ 'vnet2_prefix': '10.22.0.0/16',
+ 'vnet2_asn': 65020,
+ 'gw2': 'vgw2',
+ 'gw2_prefix': '10.22.255.0/27',
+ 'gw2_ip1': 'gw2ip1',
+ 'gw2_ip2': 'gw2ip2',
+ 'key': 'abc123',
+ 'conn12': 'vnet1to2',
+ 'conn21': 'vnet2to1'
+ })
# Create one VNet with two public IPs
- self.cmd('network vnet create -g {} -n {} --address-prefix {} --subnet-name {} --subnet-prefix {}'.format(rg, self.vnet1, self.vnet1_prefix, self.gw_subnet, self.gw1_subnet_prefix))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, self.gw1_ip1))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, self.gw1_ip2))
+ self.cmd('network vnet create -g {rg} -n {vnet1} --address-prefix {vnet1_prefix} --subnet-name {subnet} --subnet-prefix {gw1_prefix}')
+ self.cmd('network public-ip create -g {rg} -n {gw1_ip1}')
+ self.cmd('network public-ip create -g {rg} -n {gw1_ip2}')
# Create second VNet with two public IPs
- self.cmd('network vnet create -g {} -n {} --address-prefix {} --subnet-name {} --subnet-prefix {}'.format(rg, self.vnet2, self.vnet2_prefix, self.gw_subnet, self.gw2_subnet_prefix))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, self.gw2_ip1))
- self.cmd('network public-ip create -g {} -n {}'.format(rg, self.gw2_ip2))
-
- def body(self):
- rg = self.resource_group
- vnet1 = self.vnet1
- vnet1_asn = 65010
- gw1 = 'vgw1'
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --sku HighPerformance --asn {} --public-ip-addresses {} {} --no-wait'.format(rg, gw1, vnet1, vnet1_asn, self.gw1_ip1, self.gw1_ip2))
-
- vnet2 = self.vnet2
- vnet2_asn = 65020
- gw2 = 'vgw2'
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --sku HighPerformance --asn {} --public-ip-addresses {} {} --no-wait'.format(rg, gw2, vnet2, vnet2_asn, self.gw2_ip1, self.gw2_ip2))
+ self.cmd('network vnet create -g {rg} -n {vnet2} --address-prefix {vnet2_prefix} --subnet-name {subnet} --subnet-prefix {gw2_prefix}')
+ self.cmd('network public-ip create -g {rg} -n {gw2_ip1}')
+ self.cmd('network public-ip create -g {rg} -n {gw2_ip2}')
- # wait for gateway completion to finish
- self.cmd('network vnet-gateway wait -g {} -n {} --created'.format(rg, gw1))
- self.cmd('network vnet-gateway wait -g {} -n {} --created'.format(rg, gw2))
+ self.cmd('network vnet-gateway create -g {rg} -n {gw1} --vnet {vnet1} --sku HighPerformance --asn {vnet1_asn} --public-ip-addresses {gw1_ip1} {gw1_ip2} --no-wait')
+ self.cmd('network vnet-gateway create -g {rg} -n {gw2} --vnet {vnet2} --sku HighPerformance --asn {vnet2_asn} --public-ip-addresses {gw2_ip1} {gw2_ip2} --no-wait')
- conn12 = 'vnet1to2'
- conn21 = 'vnet2to1'
- shared_key = 'abc123'
+ # wait for gateway completion to finish
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw1} --created')
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw2} --created')
# create and connect the VNet gateways
- self.cmd('network vpn-connection create -g {} -n {} --vnet-gateway1 {} --vnet-gateway2 {} --shared-key {} --enable-bgp'.format(rg, conn12, gw1, gw2, shared_key))
- self.cmd('network vpn-connection create -g {} -n {} --vnet-gateway1 {} --vnet-gateway2 {} --shared-key {} --enable-bgp'.format(rg, conn21, gw2, gw1, shared_key))
+ self.cmd('network vpn-connection create -g {rg} -n {conn12} --vnet-gateway1 {gw1} --vnet-gateway2 {gw2} --shared-key {key} --enable-bgp')
+ self.cmd('network vpn-connection create -g {rg} -n {conn21} --vnet-gateway1 {gw2} --vnet-gateway2 {gw1} --shared-key {key} --enable-bgp')
@api_version_constraint(ResourceType.MGMT_NETWORK, max_api='2015-06-15')
@@ -1682,65 +1778,69 @@ class NetworkVpnGatewayScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_vpn_gateway')
def test_network_vpn_gateway(self, resource_group):
- vnet1_name = 'myvnet1'
- vnet2_name = 'myvnet2'
- vnet3_name = 'myvnet3'
- gateway1_name = 'gateway1'
- gateway2_name = 'gateway2'
- gateway3_name = 'gateway3'
- ip1_name = 'pubip1'
- ip2_name = 'pubip2'
- ip3_name = 'pubip3'
- rg = resource_group
-
- self.cmd('network public-ip create -n {} -g {}'.format(ip1_name, rg))
- self.cmd('network public-ip create -n {} -g {}'.format(ip2_name, rg))
- self.cmd('network public-ip create -n {} -g {}'.format(ip3_name, rg))
- self.cmd('network vnet create -g {} -n {} --subnet-name GatewaySubnet --address-prefix 10.0.0.0/16 --subnet-prefix 10.0.0.0/24'.format(rg, vnet1_name))
- self.cmd('network vnet create -g {} -n {} --subnet-name GatewaySubnet --address-prefix 10.1.0.0/16'.format(rg, vnet2_name))
- self.cmd('network vnet create -g {} -n {} --subnet-name GatewaySubnet --address-prefix 10.2.0.0/16'.format(rg, vnet3_name))
-
- subscription_id = MOCKED_SUBSCRIPTION_ID if not self.in_recording \
- else self.cmd('account list --query "[?isDefault].id"').get_output_in_json()[0]
-
- vnet1_id = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/virtualNetworks/{}'.format(subscription_id, rg, vnet1_name)
- vnet2_id = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/virtualNetworks/{}'.format(subscription_id, rg, vnet2_name)
-
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --public-ip-address {} --no-wait'.format(rg, gateway1_name, vnet1_id, ip1_name))
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --public-ip-address {} --no-wait'.format(rg, gateway2_name, vnet2_id, ip2_name))
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --public-ip-address {} --no-wait --sku standard --asn 12345 --bgp-peering-address 10.2.250.250 --peer-weight 50'.format(rg, gateway3_name, vnet3_name, ip3_name))
-
- self.cmd('network vnet-gateway wait -g {} -n {} --created'.format(rg, gateway1_name))
- self.cmd('network vnet-gateway wait -g {} -n {} --created'.format(rg, gateway2_name))
- self.cmd('network vnet-gateway wait -g {} -n {} --created'.format(rg, gateway3_name))
-
- self.cmd('network vnet-gateway show -g {} -n {}'.format(rg, gateway1_name), checks=[
- JMESPathCheckV2('gatewayType', 'Vpn'),
- JMESPathCheckV2('sku.capacity', 2),
- JMESPathCheckV2('sku.name', 'Basic'),
- JMESPathCheckV2('vpnType', 'RouteBased'),
- JMESPathCheckV2('enableBgp', False)
- ])
- self.cmd('network vnet-gateway show -g {} -n {}'.format(rg, gateway2_name), checks=[
- JMESPathCheckV2('gatewayType', 'Vpn'),
- JMESPathCheckV2('sku.capacity', 2),
- JMESPathCheckV2('sku.name', 'Basic'),
- JMESPathCheckV2('vpnType', 'RouteBased'),
- JMESPathCheckV2('enableBgp', False)
- ])
- self.cmd('network vnet-gateway show -g {} -n {}'.format(rg, gateway3_name), checks=[
- JMESPathCheckV2('sku.name', 'Standard'),
- JMESPathCheckV2('enableBgp', True),
- JMESPathCheckV2('bgpSettings.asn', 12345),
- JMESPathCheckV2('bgpSettings.bgpPeeringAddress', '10.2.250.250'),
- JMESPathCheckV2('bgpSettings.peerWeight', 50)
- ])
-
- conn12 = 'conn1to2'
- gateway1_id = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/virtualNetworkGateways/{}'.format(subscription_id, rg, gateway1_name)
- self.cmd('network vpn-connection create -n {} -g {} --shared-key 123 --vnet-gateway1 {} --vnet-gateway2 {}'.format(conn12, rg, gateway1_id, gateway2_name))
- self.cmd('network vpn-connection update -n {} -g {} --routing-weight 25'.format(conn12, rg),
- checks=JMESPathCheckV2('routingWeight', 25))
+
+ self.kwargs.update({
+ 'vnet1': 'myvnet1',
+ 'vnet2': 'myvnet2',
+ 'vnet3': 'myvnet3',
+ 'gw1': 'gateway1',
+ 'gw2': 'gateway2',
+ 'gw3': 'gateway3',
+ 'ip1': 'pubip1',
+ 'ip2': 'pubip2',
+ 'ip3': 'pubip3'
+ })
+
+ self.cmd('network public-ip create -n {ip1} -g {rg}')
+ self.cmd('network public-ip create -n {ip2} -g {rg}')
+ self.cmd('network public-ip create -n {ip3} -g {rg}')
+ self.cmd('network vnet create -g {rg} -n {vnet1} --subnet-name GatewaySubnet --address-prefix 10.0.0.0/16 --subnet-prefix 10.0.0.0/24')
+ self.cmd('network vnet create -g {rg} -n {vnet2} --subnet-name GatewaySubnet --address-prefix 10.1.0.0/16')
+ self.cmd('network vnet create -g {rg} -n {vnet2} --subnet-name GatewaySubnet --address-prefix 10.2.0.0/16')
+
+ self.kwargs.update({'sub': self.get_subscription_id()})
+ self.kwargs.update({
+ 'vnet1_id': '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworks/{vnet1}'.format(**self.kwargs),
+ 'vnet2_id': '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworks/{vnet2}'.format(**self.kwargs)
+ })
+
+ self.cmd('network vnet-gateway create -g {rg} -n {gw1} --vnet {vnet1_id} --public-ip-address {ip1} --no-wait')
+ self.cmd('network vnet-gateway create -g {rg} -n {gw2} --vnet {vnet2_id} --public-ip-address {ip2} --no-wait')
+ self.cmd('network vnet-gateway create -g {rg} -n {gw3} --vnet {vnet3} --public-ip-address {ip3} --no-wait --sku standard --asn 12345 --bgp-peering-address 10.2.250.250 --peer-weight 50')
+
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw1} --created')
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw2} --created')
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw3} --created')
+
+ self.cmd('network vnet-gateway show -g {rg} -n {gw1}', checks=[
+ self.check('gatewayType', 'Vpn'),
+ self.check('sku.capacity', 2),
+ self.check('sku.name', 'Basic'),
+ self.check('vpnType', 'RouteBased'),
+ self.check('enableBgp', False)
+ ])
+ self.cmd('network vnet-gateway show -g {rg} -n {gw2}', checks=[
+ self.check('gatewayType', 'Vpn'),
+ self.check('sku.capacity', 2),
+ self.check('sku.name', 'Basic'),
+ self.check('vpnType', 'RouteBased'),
+ self.check('enableBgp', False)
+ ])
+ self.cmd('network vnet-gateway show -g {rg} -n {gw3}', checks=[
+ self.check('sku.name', 'Standard'),
+ self.check('enableBgp', True),
+ self.check('bgpSettings.asn', 12345),
+ self.check('bgpSettings.bgpPeeringAddress', '10.2.250.250'),
+ self.check('bgpSettings.peerWeight', 50)
+ ])
+
+ self.kwargs.update({
+ 'conn12': 'conn1to2',
+ 'gw1_id': '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworkGateways/{gw1}'.format(**self.kwargs)
+ })
+ self.cmd('network vpn-connection create -n {conn12} -g {rg} --shared-key 123 --vnet-gateway1 {gw1_id} --vnet-gateway2 {gw2}')
+ self.cmd('network vpn-connection update -n {conn12} -g {rg} --routing-weight 25',
+ checks=self.check('routingWeight', 25))
@api_version_constraint(ResourceType.MGMT_NETWORK, min_api='2016-09-01')
@@ -1748,71 +1848,76 @@ class NetworkVpnGatewayScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_vpn_gateway')
def test_network_vpn_gateway(self, resource_group):
- vnet1_name = 'myvnet1'
- vnet2_name = 'myvnet2'
- vnet3_name = 'myvnet3'
- gateway1_name = 'gateway1'
- gateway2_name = 'gateway2'
- gateway3_name = 'gateway3'
- ip1_name = 'pubip1'
- ip2_name = 'pubip2'
- ip3_name = 'pubip3'
- rg = resource_group
-
- self.cmd('network public-ip create -n {} -g {}'.format(ip1_name, rg))
- self.cmd('network public-ip create -n {} -g {}'.format(ip2_name, rg))
- self.cmd('network public-ip create -n {} -g {}'.format(ip3_name, rg))
- self.cmd('network vnet create -g {} -n {} --subnet-name GatewaySubnet --address-prefix 10.0.0.0/16 --subnet-prefix 10.0.0.0/24'.format(rg, vnet1_name))
- self.cmd('network vnet create -g {} -n {} --subnet-name GatewaySubnet --address-prefix 10.1.0.0/16'.format(rg, vnet2_name))
- self.cmd('network vnet create -g {} -n {} --subnet-name GatewaySubnet --address-prefix 10.2.0.0/16'.format(rg, vnet3_name))
-
- subscription_id = MOCKED_SUBSCRIPTION_ID if not self.in_recording \
- else self.cmd('account list --query "[?isDefault].id"').get_output_in_json()[0]
-
- vnet1_id = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/virtualNetworks/{}'.format(subscription_id, rg, vnet1_name)
- vnet2_id = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/virtualNetworks/{}'.format(subscription_id, rg, vnet2_name)
-
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --public-ip-address {} --no-wait'.format(rg, gateway1_name, vnet1_id, ip1_name))
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --public-ip-address {} --no-wait'.format(rg, gateway2_name, vnet2_id, ip2_name))
- self.cmd('network vnet-gateway create -g {} -n {} --vnet {} --public-ip-address {} --no-wait --sku standard --asn 12345 --bgp-peering-address 10.2.250.250 --peer-weight 50'.format(rg, gateway3_name, vnet3_name, ip3_name))
-
- self.cmd('network vnet-gateway wait -g {} -n {} --created'.format(rg, gateway1_name))
- self.cmd('network vnet-gateway wait -g {} -n {} --created'.format(rg, gateway2_name))
- self.cmd('network vnet-gateway wait -g {} -n {} --created'.format(rg, gateway3_name))
-
- self.cmd('network vnet-gateway show -g {} -n {}'.format(rg, gateway1_name), checks=[
- JMESPathCheckV2('gatewayType', 'Vpn'),
- JMESPathCheckV2('sku.capacity', 2),
- JMESPathCheckV2('sku.name', 'Basic'),
- JMESPathCheckV2('vpnType', 'RouteBased'),
- JMESPathCheckV2('enableBgp', False)
- ])
- self.cmd('network vnet-gateway show -g {} -n {}'.format(rg, gateway2_name), checks=[
- JMESPathCheckV2('gatewayType', 'Vpn'),
- JMESPathCheckV2('sku.capacity', 2),
- JMESPathCheckV2('sku.name', 'Basic'),
- JMESPathCheckV2('vpnType', 'RouteBased'),
- JMESPathCheckV2('enableBgp', False)
- ])
- self.cmd('network vnet-gateway show -g {} -n {}'.format(rg, gateway3_name), checks=[
- JMESPathCheckV2('sku.name', 'Standard'),
- JMESPathCheckV2('enableBgp', True),
- JMESPathCheckV2('bgpSettings.asn', 12345),
- JMESPathCheckV2('bgpSettings.bgpPeeringAddress', '10.2.250.250'),
- JMESPathCheckV2('bgpSettings.peerWeight', 50)
- ])
-
- conn12 = 'conn1to2'
- conn21 = 'conn2to1'
- gateway1_id = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/virtualNetworkGateways/{}'.format(subscription_id, rg, gateway1_name)
- self.cmd('network vpn-connection create -n {} -g {} --shared-key 123 --vnet-gateway1 {} --vnet-gateway2 {}'.format(conn12, rg, gateway1_id, gateway2_name))
- self.cmd('network vpn-connection update -n {} -g {} --routing-weight 25'.format(conn12, rg),
- checks=JMESPathCheckV2('routingWeight', 25))
- self.cmd('network vpn-connection create -n {} -g {} --shared-key 123 --vnet-gateway2 {} --vnet-gateway1 {}'.format(conn21, rg, gateway1_id, gateway2_name))
-
- self.cmd('network vnet-gateway list-learned-routes -g {} -n {}'.format(rg, gateway1_name))
- self.cmd('network vnet-gateway list-advertised-routes -g {} -n {} --peer 10.1.1.1'.format(rg, gateway1_name))
- self.cmd('network vnet-gateway list-bgp-peer-status -g {} -n {} --peer 10.1.1.1'.format(rg, gateway1_name))
+
+ self.kwargs.update({
+ 'vnet1': 'myvnet1',
+ 'vnet2': 'myvnet2',
+ 'vnet3': 'myvnet3',
+ 'gw1': 'gateway1',
+ 'gw2': 'gateway2',
+ 'gw3': 'gateway3',
+ 'ip1': 'pubip1',
+ 'ip2': 'pubip2',
+ 'ip3': 'pubip3'
+ })
+
+ self.cmd('network public-ip create -n {ip1} -g {rg}')
+ self.cmd('network public-ip create -n {ip2} -g {rg}')
+ self.cmd('network public-ip create -n {ip3} -g {rg}')
+ self.cmd('network vnet create -g {rg} -n {vnet1} --subnet-name GatewaySubnet --address-prefix 10.0.0.0/16 --subnet-prefix 10.0.0.0/24')
+ self.cmd('network vnet create -g {rg} -n {vnet2} --subnet-name GatewaySubnet --address-prefix 10.1.0.0/16')
+ self.cmd('network vnet create -g {rg} -n {vnet3} --subnet-name GatewaySubnet --address-prefix 10.2.0.0/16')
+
+ self.kwargs.update({'sub': self.get_subscription_id()})
+ self.kwargs.update({
+ 'vnet1_id': '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworks/{vnet1}'.format(**self.kwargs),
+ 'vnet2_id': '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworks/{vnet2}'.format(**self.kwargs)
+ })
+
+ self.cmd('network vnet-gateway create -g {rg} -n {gw1} --vnet {vnet1_id} --public-ip-address {ip1} --no-wait')
+ self.cmd('network vnet-gateway create -g {rg} -n {gw2} --vnet {vnet2_id} --public-ip-address {ip2} --no-wait')
+ self.cmd('network vnet-gateway create -g {rg} -n {gw3} --vnet {vnet3} --public-ip-address {ip3} --no-wait --sku standard --asn 12345 --bgp-peering-address 10.2.250.250 --peer-weight 50')
+
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw1} --created')
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw2} --created')
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw3} --created')
+
+ self.cmd('network vnet-gateway show -g {rg} -n {gw1}', checks=[
+ self.check('gatewayType', 'Vpn'),
+ self.check('sku.capacity', 2),
+ self.check('sku.name', 'Basic'),
+ self.check('vpnType', 'RouteBased'),
+ self.check('enableBgp', False)
+ ])
+ self.cmd('network vnet-gateway show -g {rg} -n {gw2}', checks=[
+ self.check('gatewayType', 'Vpn'),
+ self.check('sku.capacity', 2),
+ self.check('sku.name', 'Basic'),
+ self.check('vpnType', 'RouteBased'),
+ self.check('enableBgp', False)
+ ])
+ self.cmd('network vnet-gateway show -g {rg} -n {gw3}', checks=[
+ self.check('sku.name', 'Standard'),
+ self.check('enableBgp', True),
+ self.check('bgpSettings.asn', 12345),
+ self.check('bgpSettings.bgpPeeringAddress', '10.2.250.250'),
+ self.check('bgpSettings.peerWeight', 50)
+ ])
+
+ self.kwargs.update({
+ 'conn12': 'conn1to2',
+ 'conn21': 'conn2to1',
+ 'gw1_id': '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworkGateways/{gw1}'.format(**self.kwargs)
+ })
+
+ self.cmd('network vpn-connection create -n {conn12} -g {rg} --shared-key 123 --vnet-gateway1 {gw1_id} --vnet-gateway2 {gw2}')
+ self.cmd('network vpn-connection update -n {conn12} -g {rg} --routing-weight 25',
+ checks=self.check('routingWeight', 25))
+ self.cmd('network vpn-connection create -n {conn21} -g {rg} --shared-key 123 --vnet-gateway2 {gw1_id} --vnet-gateway1 {gw2}')
+
+ self.cmd('network vnet-gateway list-learned-routes -g {rg} -n {gw1}')
+ self.cmd('network vnet-gateway list-advertised-routes -g {rg} -n {gw1} --peer 10.1.1.1')
+ self.cmd('network vnet-gateway list-bgp-peer-status -g {rg} -n {gw1} --peer 10.1.1.1')
@api_version_constraint(ResourceType.MGMT_NETWORK, max_api='2017-06-01')
@@ -1821,23 +1926,22 @@ class NetworkVpnClientPackageScenarioTest(ScenarioTest):
@ResourceGroupPreparer('cli_test_vpn_client_package')
def test_vpn_client_package(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'vnet': 'vnet1',
'public_ip': 'pip1',
'gateway_prefix': '100.1.1.0/24',
'gateway': 'vgw1',
'cert': 'cert1',
'cert_path': os.path.join(TEST_DIR, 'test-root-cert.cer')
- }
+ })
- self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name GatewaySubnet'.format(**kwargs))
- self.cmd('network public-ip create -g {rg} -n {public_ip}'.format(**kwargs))
- self.cmd('network vnet-gateway create -g {rg} -n {gateway} --address-prefix {gateway_prefix} --vnet {vnet} --public-ip-address {public_ip}'.format(**kwargs))
- self.cmd('network vnet-gateway root-cert create -g {rg} --gateway-name {gateway} -n {cert} --public-cert-data "{cert_path}"'.format(**kwargs))
- output = self.cmd('network vnet-gateway vpn-client generate -g {rg} -n {gateway} --processor-architecture X86'.format(**kwargs)).get_output_in_json()
+ self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name GatewaySubnet')
+ self.cmd('network public-ip create -g {rg} -n {public_ip}')
+ self.cmd('network vnet-gateway create -g {rg} -n {gateway} --address-prefix {gateway_prefix} --vnet {vnet} --public-ip-address {public_ip}')
+ self.cmd('network vnet-gateway root-cert create -g {rg} --gateway-name {gateway} -n {cert} --public-cert-data "{cert_path}"')
+ output = self.cmd('network vnet-gateway vpn-client generate -g {rg} -n {gateway} --processor-architecture X86').get_output_in_json()
self.assertTrue('.exe' in output, 'Expected EXE file in output.\nActual: {}'.format(output))
- output = self.cmd('network vnet-gateway vpn-client generate -g {rg} -n {gateway} --processor-architecture Amd64'.format(**kwargs)).get_output_in_json()
+ output = self.cmd('network vnet-gateway vpn-client generate -g {rg} -n {gateway} --processor-architecture Amd64').get_output_in_json()
self.assertTrue('.exe' in output, 'Expected EXE file in output.\nActual: {}'.format(output))
@@ -1848,23 +1952,22 @@ class NetworkVpnClientPackageScenarioTest(ScenarioTest):
@ResourceGroupPreparer('cli_test_vpn_client_package')
def test_vpn_client_package(self, resource_group):
- kwargs = {
- 'rg': resource_group,
+ self.kwargs.update({
'vnet': 'vnet1',
'public_ip': 'pip1',
'gateway_prefix': '100.1.1.0/24',
'gateway': 'vgw1',
'cert': 'cert1',
'cert_path': os.path.join(TEST_DIR, 'test-root-cert.cer')
- }
+ })
- self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name GatewaySubnet'.format(**kwargs))
- self.cmd('network public-ip create -g {rg} -n {public_ip}'.format(**kwargs))
- self.cmd('network vnet-gateway create -g {rg} -n {gateway} --address-prefix {gateway_prefix} --vnet {vnet} --public-ip-address {public_ip}'.format(**kwargs))
- self.cmd('network vnet-gateway root-cert create -g {rg} --gateway-name {gateway} -n {cert} --public-cert-data "{cert_path}"'.format(**kwargs))
- output = self.cmd('network vnet-gateway vpn-client generate -g {rg} -n {gateway}'.format(**kwargs)).get_output_in_json()
+ self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name GatewaySubnet')
+ self.cmd('network public-ip create -g {rg} -n {public_ip}')
+ self.cmd('network vnet-gateway create -g {rg} -n {gateway} --address-prefix {gateway_prefix} --vnet {vnet} --public-ip-address {public_ip}')
+ self.cmd('network vnet-gateway root-cert create -g {rg} --gateway-name {gateway} -n {cert} --public-cert-data "{cert_path}"')
+ output = self.cmd('network vnet-gateway vpn-client generate -g {rg} -n {gateway}').get_output_in_json()
self.assertTrue('.zip' in output, 'Expected ZIP file in output.\nActual: {}'.format(str(output)))
- output = self.cmd('network vnet-gateway vpn-client show-url -g {rg} -n {gateway}'.format(**kwargs)).get_output_in_json()
+ output = self.cmd('network vnet-gateway vpn-client show-url -g {rg} -n {gateway}').get_output_in_json()
self.assertTrue('.zip' in output, 'Expected ZIP file in output.\nActual: {}'.format(str(output)))
@@ -1872,49 +1975,58 @@ class NetworkTrafficManagerScenarioTest(ScenarioTest):
@ResourceGroupPreparer('cli_test_traffic_manager')
def test_network_traffic_manager(self, resource_group):
- self.resource_group = resource_group
- tm_name = 'mytmprofile'
- endpoint_name = 'myendpoint'
- unique_dns_name = 'mytrafficmanager001100a'
+
+ self.kwargs.update({
+ 'tm': 'mytmprofile',
+ 'endpoint': 'myendpoint',
+ 'dns': 'mytrafficmanager001100a'
+ })
self.cmd('network traffic-manager profile check-dns -n myfoobar1')
- self.cmd('network traffic-manager profile create -n {} -g {} --routing-method priority --unique-dns-name {}'.format(tm_name, self.resource_group, unique_dns_name), checks=JMESPathCheckV2('TrafficManagerProfile.trafficRoutingMethod', 'Priority'))
- self.cmd('network traffic-manager profile show -g {} -n {}'.format(self.resource_group, tm_name), checks=JMESPathCheckV2('dnsConfig.relativeName', unique_dns_name))
- self.cmd('network traffic-manager profile update -n {} -g {} --routing-method weighted'.format(tm_name, self.resource_group), checks=JMESPathCheckV2('trafficRoutingMethod', 'Weighted'))
- self.cmd('network traffic-manager profile list -g {}'.format(self.resource_group))
+ self.cmd('network traffic-manager profile create -n {tm} -g {rg} --routing-method priority --unique-dns-name {dns}',
+ checks=self.check('TrafficManagerProfile.trafficRoutingMethod', 'Priority'))
+ self.cmd('network traffic-manager profile show -g {rg} -n {tm}',
+ checks=self.check('dnsConfig.relativeName', '{dns}'))
+ self.cmd('network traffic-manager profile update -n {tm} -g {rg} --routing-method weighted',
+ checks=self.check('trafficRoutingMethod', 'Weighted'))
+ self.cmd('network traffic-manager profile list -g {rg}')
# Endpoint tests
- self.cmd('network traffic-manager endpoint create -n {} --profile-name {} -g {} --type externalEndpoints --weight 50 --target www.microsoft.com'.format(endpoint_name, tm_name, self.resource_group), checks=JMESPathCheckV2('type', 'Microsoft.Network/trafficManagerProfiles/externalEndpoints'))
- self.cmd('network traffic-manager endpoint update -n {} --profile-name {} -g {} --type externalEndpoints --weight 25 --target www.contoso.com'.format(endpoint_name, tm_name, self.resource_group), checks=[JMESPathCheckV2('weight', 25), JMESPathCheckV2('target', 'www.contoso.com')])
- self.cmd('network traffic-manager endpoint show -g {} --profile-name {} -t externalEndpoints -n {}'.format(self.resource_group, tm_name, endpoint_name))
- self.cmd('network traffic-manager endpoint list -g {} --profile-name {} -t externalEndpoints'.format(self.resource_group, tm_name), checks=JMESPathCheckV2('length(@)', 1))
+ self.cmd('network traffic-manager endpoint create -n {endpoint} --profile-name {tm} -g {rg} --type externalEndpoints --weight 50 --target www.microsoft.com',
+ checks=self.check('type', 'Microsoft.Network/trafficManagerProfiles/externalEndpoints'))
+ self.cmd('network traffic-manager endpoint update -n {endpoint} --profile-name {tm} -g {rg} --type externalEndpoints --weight 25 --target www.contoso.com', checks=[
+ self.check('weight', 25),
+ self.check('target', 'www.contoso.com')
+ ])
+ self.cmd('network traffic-manager endpoint show -g {rg} --profile-name {tm} -t externalEndpoints -n {endpoint}')
+ self.cmd('network traffic-manager endpoint list -g {rg} --profile-name {tm} -t externalEndpoints',
+ checks=self.check('length(@)', 1))
- # ensure that a profile with endpoints can be updated
- self.cmd('network traffic-manager profile update -n {} -g {}'.format(tm_name, self.resource_group))
+ # ensure a profile with endpoints can be updated
+ self.cmd('network traffic-manager profile update -n {tm} -g {rg}')
- self.cmd('network traffic-manager endpoint delete -g {} --profile-name {} -t externalEndpoints -n {}'.format(self.resource_group, tm_name, endpoint_name))
- self.cmd('network traffic-manager endpoint list -g {} --profile-name {} -t externalEndpoints'.format(self.resource_group, tm_name), checks=JMESPathCheckV2('length(@)', 0))
+ self.cmd('network traffic-manager endpoint delete -g {rg} --profile-name {tm} -t externalEndpoints -n {endpoint}')
+ self.cmd('network traffic-manager endpoint list -g {rg} --profile-name {tm} -t externalEndpoints',
+ checks=self.check('length(@)', 0))
- self.cmd('network traffic-manager profile delete -g {} -n {}'.format(self.resource_group, tm_name))
+ self.cmd('network traffic-manager profile delete -g {rg} -n {tm}')
-class NetworkDnsScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(NetworkDnsScenarioTest, self).__init__(__file__, test_method, resource_group='cli_test_dns')
+class NetworkDnsScenarioTest(ScenarioTest):
- def test_network_dns(self):
- self.execute()
+ @ResourceGroupPreparer(name_prefix='cli_test_dns')
+ def test_network_dns(self, resource_group):
- def body(self):
- zone_name = 'myzone.com'
- rg = self.resource_group
+ self.kwargs['zone'] = 'myzone.com'
self.cmd('network dns zone list') # just verify is works (no Exception raised)
- self.cmd('network dns zone create -n {} -g {}'.format(zone_name, rg))
- self.cmd('network dns zone list -g {}'.format(rg), checks=JMESPathCheck('length(@)', 1))
+ self.cmd('network dns zone create -n {zone} -g {rg}')
+ self.cmd('network dns zone list -g {rg}',
+ checks=self.check('length(@)', 1))
base_record_sets = 2
- self.cmd('network dns zone show -n {} -g {}'.format(zone_name, rg), checks=[JMESPathCheck('numberOfRecordSets', base_record_sets)])
+ self.cmd('network dns zone show -n {zone} -g {rg}',
+ checks=self.check('numberOfRecordSets', base_record_sets))
args = {
'a': '--ipv4-address 10.0.0.10',
@@ -1933,53 +2045,61 @@ def body(self):
for t in record_types:
# test creating the record set and then adding records
- self.cmd('network dns record-set {0} create -n myrs{0} -g {1} --zone-name {2}'.format(t, rg, zone_name))
+ self.cmd('network dns record-set {0} create -n myrs{0} -g {{rg}} --zone-name {{zone}}'.format(t))
add_command = 'set-record' if t == 'cname' else 'add-record'
- self.cmd('network dns record-set {0} {4} -g {1} --zone-name {2} --record-set-name myrs{0} {3}'.format(t, rg, zone_name, args[t], add_command))
+ self.cmd('network dns record-set {0} {2} -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0} {1}'.format(t, args[t], add_command))
# test creating the record set at the same time you add records
- self.cmd('network dns record-set {0} {4} -g {1} --zone-name {2} --record-set-name myrs{0}alt {3}'.format(t, rg, zone_name, args[t], add_command))
+ self.cmd('network dns record-set {0} {2} -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0}alt {1}'.format(t, args[t], add_command))
- self.cmd('network dns record-set {0} add-record -g {1} --zone-name {2} --record-set-name myrs{0} {3}'.format('a', rg, zone_name, '--ipv4-address 10.0.0.11'))
- self.cmd('network dns record-set soa update -g {0} --zone-name {1} {2}'.format(rg, zone_name, args['soa']))
+ self.cmd('network dns record-set a add-record -g {rg} --zone-name {zone} --record-set-name myrsa --ipv4-address 10.0.0.11')
+ self.cmd('network dns record-set soa update -g {{rg}} --zone-name {{zone}} {0}'.format(args['soa']))
long_value = '0123456789' * 50
- self.cmd('network dns record-set txt add-record -g {} -z {} -n longtxt -v {}'.format(rg, zone_name, long_value))
+ self.cmd('network dns record-set txt add-record -g {{rg}} -z {{zone}} -n longtxt -v {0}'.format(long_value))
typed_record_sets = 2 * len(record_types) + 1
- self.cmd('network dns zone show -n {} -g {}'.format(zone_name, rg), checks=[JMESPathCheck('numberOfRecordSets', base_record_sets + typed_record_sets)])
- self.cmd('network dns record-set {0} show -n myrs{0} -g {1} --zone-name {2}'.format('a', rg, zone_name), checks=[JMESPathCheck('length(arecords)', 2)])
+ self.cmd('network dns zone show -n {zone} -g {rg}',
+ checks=self.check('numberOfRecordSets', base_record_sets + typed_record_sets))
+ self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}',
+ checks=self.check('length(arecords)', 2))
# test list vs. list type
- self.cmd('network dns record-set list -g {} -z {}'.format(rg, zone_name), checks=JMESPathCheck('length(@)', base_record_sets + typed_record_sets))
+ self.cmd('network dns record-set list -g {rg} -z {zone}',
+ checks=self.check('length(@)', base_record_sets + typed_record_sets))
- self.cmd('network dns record-set txt list -g {} -z {}'.format(rg, zone_name), checks=JMESPathCheck('length(@)', 3))
+ self.cmd('network dns record-set txt list -g {rg} -z {zone}',
+ checks=self.check('length(@)', 3))
for t in record_types:
- self.cmd('network dns record-set {0} remove-record -g {1} --zone-name {2} --record-set-name myrs{0} {3}'.format(t, rg, zone_name, args[t]))
+ self.cmd('network dns record-set {0} remove-record -g {{rg}} --zone-name {{zone}} --record-set-name myrs{0} {1}'.format(t, args[t]))
- self.cmd('network dns record-set {0} show -n myrs{0} -g {1} --zone-name {2}'.format('a', rg, zone_name), checks=[JMESPathCheck('length(arecords)', 1)])
+ self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}',
+ checks=self.check('length(arecords)', 1))
- self.cmd('network dns record-set {0} remove-record -g {1} --zone-name {2} --record-set-name myrs{0} {3}'.format('a', rg, zone_name, '--ipv4-address 10.0.0.11'))
+ self.cmd('network dns record-set a remove-record -g {rg} --zone-name {zone} --record-set-name myrsa --ipv4-address 10.0.0.11')
- self.cmd('network dns record-set {0} show -n myrs{0} -g {1} --zone-name {2}'.format('a', rg, zone_name), checks=NoneCheck())
+ self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}',
+ checks=self.is_empty())
- self.cmd('network dns record-set {0} delete -n myrs{0} -g {1} --zone-name {2} -y'.format('a', rg, zone_name))
- self.cmd('network dns record-set {0} show -n myrs{0} -g {1} --zone-name {2}'.format('a', rg, zone_name), allowed_exceptions='does not exist in resource group')
+ self.cmd('network dns record-set a delete -n myrsa -g {rg} --zone-name {zone} -y')
+ self.cmd('network dns record-set a show -n myrsa -g {rg} --zone-name {zone}')
- self.cmd('network dns zone delete -g {} -n {} -y'.format(rg, zone_name), checks=NoneCheck())
+ self.cmd('network dns zone delete -g {rg} -n {zone} -y',
+ checks=self.is_empty())
class NetworkZoneImportExportTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_dns_zone_import_export')
def test_network_dns_zone_import_export(self, resource_group):
- zone_name = 'myzone.com'
- zone_file_path = os.path.join(TEST_DIR, 'zone_files', 'zone1.txt')
-
- self.cmd('network dns zone import -n {} -g {} --file-name "{}"'.format(zone_name, resource_group, zone_file_path))
- self.cmd('network dns zone export -n {} -g {}'.format(zone_name, resource_group))
-
-# TODO: Troubleshoot VNET gateway issue and re-enable
+ self.kwargs.update({
+ 'zone': 'myzone.com',
+ 'path': os.path.join(TEST_DIR, 'zone_files', 'zone1.txt')
+ })
+ self.cmd('network dns zone import -n {zone} -g {rg} --file-name "{path}"')
+ self.cmd('network dns zone export -n {zone} -g {rg}')
+
+# TODO: Troubleshoot VNET gateway issue and re-enable...
# class NetworkWatcherScenarioTest(ScenarioTest):
# import mock
@@ -1991,56 +2111,58 @@ def test_network_dns_zone_import_export(self, resource_group):
# @StorageAccountPreparer(name_prefix='clitestnw', location='westcentralus')
# def test_network_watcher(self, resource_group, storage_account):
-# location = 'westcentralus'
-# vm = 'vm1'
-# nsg = '{}NSG'.format(vm)
-# capture = 'capture1'
+# self.kwargs.update({
+# 'loc': 'westcentralus',
+# 'vm': 'vm1',
+# 'nsg': 'msg1',
+# 'capture': 'capture1'
+# })
-# self.cmd('network watcher configure -g {} --locations westus westus2 westcentralus --enabled'.format(resource_group))
+# self.cmd('network watcher configure -g {rg} --locations westus westus2 westcentralus --enabled')
# self.cmd('network watcher configure --locations westus westus2 --tags foo=doo')
# self.cmd('network watcher configure -l westus2 --enabled false')
# self.cmd('network watcher list')
# # set up resource to troubleshoot
-# self.cmd('storage container create -n troubleshooting --account-name {}'.format(storage_account))
-# sa = self.cmd('storage account show -g {} -n {}'.format(resource_group, storage_account)).get_output_in_json()
-# storage_path = sa['primaryEndpoints']['blob'] + 'troubleshooting'
-# self.cmd('network vnet create -g {} -n vnet1 --subnet-name GatewaySubnet'.format(resource_group))
-# self.cmd('network public-ip create -g {} -n vgw1-pip'.format(resource_group))
-# self.cmd('network vnet-gateway create -g {} -n vgw1 --vnet vnet1 --public-ip-address vgw1-pip --no-wait'.format(resource_group))
+# self.cmd('storage container create -n troubleshooting --account-name {sa}')
+# sa = self.cmd('storage account show -g {rg} -n {sa}').get_output_in_json()
+# self.kwargs['storage_path'] = sa['primaryEndpoints']['blob'] + 'troubleshooting'
+# self.cmd('network vnet create -g {rg} -n vnet1 --subnet-name GatewaySubnet')
+# self.cmd('network public-ip create -g {rg} -n vgw1-pip')
+# self.cmd('network vnet-gateway create -g {rg} -n vgw1 --vnet vnet1 --public-ip-address vgw1-pip --no-wait')
# # create VM with NetworkWatcher extension
-# self.cmd('vm create -g {} -n {} --image UbuntuLTS --authentication-type password --admin-username deploy --admin-password PassPass10!)'.format(resource_group, vm))
-# self.cmd('vm extension set -g {} --vm-name {} -n NetworkWatcherAgentLinux --publisher Microsoft.Azure.NetworkWatcher'.format(resource_group, vm))
+# self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --authentication-type password --admin-username deploy --admin-password PassPass10!)')
+# self.cmd('vm extension set -g {rg} --vm-name {vm} -n NetworkWatcherAgentLinux --publisher Microsoft.Azure.NetworkWatcher')
-# self.cmd('network watcher show-topology -g {}'.format(resource_group))
+# self.cmd('network watcher show-topology -g {rg}')
-# self.cmd('network watcher test-ip-flow -g {} --vm {} --direction inbound --local 10.0.0.4:22 --protocol tcp --remote 100.1.2.3:*'.format(resource_group, vm))
-# self.cmd('network watcher test-ip-flow -g {} --vm {} --direction outbound --local 10.0.0.4:* --protocol tcp --remote 100.1.2.3:80'.format(resource_group, vm))
+# self.cmd('network watcher test-ip-flow -g {rg} --vm {vm} --direction inbound --local 10.0.0.4:22 --protocol tcp --remote 100.1.2.3:*')
+# self.cmd('network watcher test-ip-flow -g {rg} --vm {vm} --direction outbound --local 10.0.0.4:* --protocol tcp --remote 100.1.2.3:80')
-# self.cmd('network watcher show-security-group-view -g {} --vm {}'.format(resource_group, vm))
+# self.cmd('network watcher show-security-group-view -g {rg} --vm {vm}')
-# self.cmd('network watcher show-next-hop -g {} --vm {} --source-ip 123.4.5.6 --dest-ip 10.0.0.6'.format(resource_group, vm))
+# self.cmd('network watcher show-next-hop -g {rg} --vm {vm} --source-ip 123.4.5.6 --dest-ip 10.0.0.6')
-# self.cmd('network watcher test-connectivity -g {} --source-resource {} --dest-address www.microsoft.com --dest-port 80'.format(resource_group, vm))
+# self.cmd('network watcher test-connectivity -g {rg} --source-resource {vm} --dest-address www.microsoft.com --dest-port 80')
-# self.cmd('network watcher flow-log configure -g {} --nsg {} --enabled --retention 5 --storage-account {}'.format(resource_group, nsg, storage_account))
-# self.cmd('network watcher flow-log configure -g {} --nsg {} --retention 0'.format(resource_group, nsg))
-# self.cmd('network watcher flow-log show -g {} --nsg {}'.format(resource_group, nsg))
+# self.cmd('network watcher flow-log configure -g {rg} --nsg {nsg} --enabled --retention 5 --storage-account {sa}')
+# self.cmd('network watcher flow-log configure -g {rg} --nsg {nsg} --retention 0')
+# self.cmd('network watcher flow-log show -g {rg} --nsg {nsg}')
# # test packet capture
-# self.cmd('network watcher packet-capture create -g {} --vm {} -n {} --file-path capture/capture.cap'.format(resource_group, vm, capture))
-# self.cmd('network watcher packet-capture show -l {} -n {}'.format(location, capture))
-# self.cmd('network watcher packet-capture stop -l {} -n {}'.format(location, capture))
-# self.cmd('network watcher packet-capture show-status -l {} -n {}'.format(location, capture))
-# self.cmd('network watcher packet-capture list -l {}'.format(location, capture))
-# self.cmd('network watcher packet-capture delete -l {} -n {}'.format(location, capture))
-# self.cmd('network watcher packet-capture list -l {}'.format(location, capture))
+# self.cmd('network watcher packet-capture create -g {rg} --vm {vm} -n {capture} --file-path capture/capture.cap')
+# self.cmd('network watcher packet-capture show -l {loc} -n {capture}')
+# self.cmd('network watcher packet-capture stop -l {loc} -n {capture}')
+# self.cmd('network watcher packet-capture show-status -l {loc} -n {capture}')
+# self.cmd('network watcher packet-capture list -l {loc}')
+# self.cmd('network watcher packet-capture delete -l {loc} -n {capture}')
+# self.cmd('network watcher packet-capture list -l {loc}')
# # test troubleshooting
-# self.cmd('network vnet-gateway wait -g {} -n vgw1 --created'.format(resource_group))
-# self.cmd('network watcher troubleshooting start --resource vgw1 -t vnetGateway -g {} --storage-account {} --storage-path {}'.format(resource_group, storage_account, storage_path))
-# self.cmd('network watcher troubleshooting show --resource vgw1 -t vnetGateway -g {}'.format(resource_group))
+# self.cmd('network vnet-gateway wait -g {rg} -n vgw1 --created')
+# self.cmd('network watcher troubleshooting start --resource vgw1 -t vnetGateway -g {rg} --storage-account {sa} --storage-path {storage_path}')
+# self.cmd('network watcher troubleshooting show --resource vgw1 -t vnetGateway -g {rg}')
if __name__ == '__main__':
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_network_unit_tests.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_network_unit_tests.py
index 3bc750f1112..6e9453e087c 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_network_unit_tests.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/tests/test_network_unit_tests.py
@@ -7,10 +7,10 @@
import mock
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
-class Test_Network_Unit_Tests(unittest.TestCase):
+class TestNetworkUnitTests(unittest.TestCase):
def test_network_get_nic_ip_config(self):
from azure.cli.command_modules.network.custom import _get_nic_ip_config
diff --git a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/zone_file/parse_zone_file.py b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/zone_file/parse_zone_file.py
index ec46b2ade3f..d7e21cbf725 100644
--- a/src/command_modules/azure-cli-network/azure/cli/command_modules/network/zone_file/parse_zone_file.py
+++ b/src/command_modules/azure-cli-network/azure/cli/command_modules/network/zone_file/parse_zone_file.py
@@ -42,13 +42,14 @@
from collections import OrderedDict
import re
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
+from knack.log import get_logger
+from knack.util import CLIError
from azure.cli.command_modules.network.zone_file.configs import SUPPORTED_RECORDS
from azure.cli.command_modules.network.zone_file.exceptions import InvalidLineException
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
+
semicolon_regex = re.compile(r'(?:"[^"]*")*[^\\](;.*)')
date_regex_dict = {
'w': {'regex': re.compile(r'(\d*w)'), 'scale': 86400 * 7},
@@ -384,7 +385,7 @@ def _parse_record(parser, record_token):
break
if not record_type:
- from azure.cli.core.util import CLIError
+ from knack.util import CLIError
raise CLIError('Unable to determine record type: {}'.format(' '.join(record_token)))
# move the record type to the front of the token list so it will conform to argparse
diff --git a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/__init__.py b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/__init__.py
index 6f52b2305a5..ecca0be747a 100644
--- a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/__init__.py
+++ b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/__init__.py
@@ -3,12 +3,64 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.sdk.util import CliCommandType
+
+from azure.cli.command_modules.profile.custom import get_subscription_id_list
+from azure.cli.command_modules.profile._format import transform_account_list
import azure.cli.command_modules.profile._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.profile._params # pylint: disable=redefined-outer-name, unused-variable
+class ProfileCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ super(ProfileCommandsLoader, self).__init__(cli_ctx=cli_ctx)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(ProfileCommandsLoader, self).load_command_table(args)
+
+ profile_custom = CliCommandType(
+ operations_tmpl='azure.cli.command_modules.profile.custom#{}'
+ )
+
+ with self.command_group('', profile_custom) as g:
+ g.command('login', 'login')
+ g.command('logout', 'logout')
+
+ with self.command_group('account', profile_custom) as g:
+ g.command('list', 'list_subscriptions', table_transformer=transform_account_list)
+ g.command('set', 'set_active_subscription')
+ g.command('show', 'show_subscription')
+ g.command('clear', 'account_clear')
+ g.command('list-locations', 'list_locations')
+ g.command('get-access-token', 'get_access_token')
+
+ return self.command_table
+
+ # pylint: disable=line-too-long
+ def load_arguments(self, command):
+ super(ProfileCommandsLoader, self).load_arguments(command)
+ with self.argument_context('login') as c:
+ c.argument('password', options_list=('--password', '-p'), help="Credentials like user password, or for a service principal, provide client secret or a pem file with key and public certificate. Will prompt if not given.")
+ c.argument('service_principal', action='store_true', help='The credential representing a service principal.')
+ c.argument('username', options_list=('--username', '-u'), help='Organization id or service principal')
+ c.argument('tenant', options_list=('--tenant', '-t'), help='The AAD tenant, must provide when using service principals.')
+ c.argument('allow_no_subscriptions', action='store_true', help="Support access tenants without subscriptions. It's uncommon but useful to run tenant level commands, such as 'az ad'")
+ c.argument('msi', action='store_true', help="Log in using the Virtual Machine's identity", arg_group='Managed Service Identity')
+ c.argument('msi_port', help="the port to retrieve tokens for login", arg_group='Managed Service Identity')
+
+ with self.argument_context('logout') as c:
+ c.argument('username', help='account user, if missing, logout the current active account')
+
+ with self.argument_context('account') as c:
+ c.argument('subscription', options_list=('--subscription', '-s'), help='Name or ID of subscription.', completer=get_subscription_id_list)
+
+ with self.argument_context('account list') as c:
+ c.argument('all', help="List all subscriptions, rather just 'Enabled' ones", action='store_true')
+ c.argument('refresh', help="retrieve up-to-date subscriptions from server", action='store_true')
+ with self.argument_context('account show') as c:
+ c.argument('show_auth_for_sdk', options_list=('--sdk-auth',), action='store_true', help='output result in compatible with Azure SDK auth file')
-def load_commands():
- import azure.cli.command_modules.profile.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = ProfileCommandsLoader
diff --git a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_format.py b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_format.py
new file mode 100644
index 00000000000..ae0affb6447
--- /dev/null
+++ b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_format.py
@@ -0,0 +1,18 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+from collections import OrderedDict
+
+
+def transform_account_list(result):
+ transformed = []
+ for r in result:
+ res = OrderedDict([('Name', r['name']),
+ ('CloudName', r['cloudName']),
+ ('SubscriptionId', r['id']),
+ ('State', r['state']),
+ ('IsDefault', r['isDefault'])])
+ transformed.append(res)
+ return transformed
diff --git a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_help.py b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_help.py
index b6139106549..de4c4c9e8a3 100644
--- a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_help.py
+++ b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_help.py
@@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps # pylint: disable=unused-import
+from knack.help_files import helps # pylint: disable=unused-import
helps['login'] = """
type: command
diff --git a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_params.py b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_params.py
index a2b7d6f1cc3..a0815f3aa74 100644
--- a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_params.py
+++ b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/_params.py
@@ -3,31 +3,4 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-# pylint: disable=line-too-long
-from azure.cli.core.commands import register_cli_argument
-from .custom import load_subscriptions
-
-
-def get_subscription_id_list(prefix, **kwargs): # pylint: disable=unused-argument
- subscriptions = load_subscriptions()
- result = []
- for subscription in subscriptions:
- result.append(subscription['id'])
- result.append(subscription['name'])
- return result
-
-
-register_cli_argument('login', 'password', options_list=('--password', '-p'), help="Credentials like user password, or for a service principal, provide client secret or a pem file with key and public certificate. Will prompt if not given.")
-register_cli_argument('login', 'service_principal', action='store_true', help='The credential representing a service principal.')
-register_cli_argument('login', 'username', options_list=('--username', '-u'), help='Organization id or service principal')
-register_cli_argument('login', 'tenant', options_list=('--tenant', '-t'), help='The AAD tenant, must provide when using service principals.')
-register_cli_argument('login', 'allow_no_subscriptions', action='store_true', help="Support access tenants without subscriptions. It's uncommon but useful to run tenant level commands, such as 'az ad'")
-register_cli_argument('login', 'msi', action='store_true', help="Log in using the Virtual Machine's identity", arg_group='Managed Service Identity')
-register_cli_argument('login', 'msi_port', help="the port to retrieve tokens for login", arg_group='Managed Service Identity')
-
-register_cli_argument('logout', 'username', help='account user, if missing, logout the current active account')
-
-register_cli_argument('account', 'subscription', options_list=('--subscription', '-s'), help='Name or ID of subscription.', completer=get_subscription_id_list)
-register_cli_argument('account list', 'all', help="List all subscriptions, rather just 'Enabled' ones", action='store_true')
-register_cli_argument('account list', 'refresh', help="retrieve up to date subscriptions from server", action='store_true')
-register_cli_argument('account show', 'show_auth_for_sdk', options_list=('--sdk-auth',), action='store_true', help='output result in compatible with Azure SDK auth file')
+# TODO: Delete this file once all Knack conversion work is complete
diff --git a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/commands.py b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/commands.py
deleted file mode 100644
index 5ffc26c9ec6..00000000000
--- a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/commands.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-
-from collections import OrderedDict
-
-from azure.cli.core.commands import cli_command
-
-cli_command(__name__, 'login', 'azure.cli.command_modules.profile.custom#login')
-cli_command(__name__, 'logout', 'azure.cli.command_modules.profile.custom#logout')
-
-
-def transform_account_list(result):
- transformed = []
- for r in result:
- res = OrderedDict([('Name', r['name']),
- ('CloudName', r['cloudName']),
- ('SubscriptionId', r['id']),
- ('State', r['state']),
- ('IsDefault', r['isDefault'])])
- transformed.append(res)
- return transformed
-
-
-_custom_module = 'azure.cli.command_modules.profile.custom#'
-
-cli_command(__name__, 'account list', _custom_module + 'list_subscriptions',
- table_transformer=transform_account_list)
-cli_command(__name__, 'account set', _custom_module + 'set_active_subscription')
-cli_command(__name__, 'account show', _custom_module + 'show_subscription')
-cli_command(__name__, 'account clear', _custom_module + 'account_clear')
-cli_command(__name__, 'account list-locations', _custom_module + 'list_locations')
-cli_command(__name__, 'account get-access-token', _custom_module + 'get_access_token')
diff --git a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/custom.py b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/custom.py
index b5a11197ab2..d1056271a4d 100644
--- a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/custom.py
+++ b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/custom.py
@@ -5,30 +5,41 @@
from __future__ import print_function
-from azure.cli.core.prompting import prompt_pass, NoTTYException
-from azure.cli.core import get_az_logger
from azure.cli.core._profile import Profile
-from azure.cli.core.util import CLIError, in_cloud_console
-from azure.cli.core.cloud import get_active_cloud
+from azure.cli.core.util import in_cloud_console
+
from azure.cli.core.commands.validators import DefaultStr
-logger = get_az_logger(__name__)
+from knack.log import get_logger
+from knack.prompting import prompt_pass, NoTTYException
+from knack.util import CLIError
+
+logger = get_logger(__name__)
_CLOUD_CONSOLE_WARNING_TEMPLATE = ("Azure Cloud Shell automatically authenticates the user account it was initially"
" launched under, as a result 'az %s' is disabled.")
-def load_subscriptions(all_clouds=False, refresh=False):
- profile = Profile()
+def _load_subscriptions(cli_ctx, all_clouds=False, refresh=False):
+ profile = Profile(cli_ctx)
if refresh:
subscriptions = profile.refresh_accounts()
subscriptions = profile.load_cached_subscriptions(all_clouds)
return subscriptions
-def list_subscriptions(all=False, refresh=False): # pylint: disable=redefined-builtin
+def get_subscription_id_list(cli_ctx, prefix, **kwargs): # pylint: disable=unused-argument
+ subscriptions = _load_subscriptions(cli_ctx)
+ result = []
+ for subscription in subscriptions:
+ result.append(subscription['id'])
+ result.append(subscription['name'])
+ return result
+
+
+def list_subscriptions(cmd, all=False, refresh=False): # pylint: disable=redefined-builtin
"""List the imported subscriptions."""
- subscriptions = load_subscriptions(all_clouds=all, refresh=refresh)
+ subscriptions = _load_subscriptions(cmd.cli_ctx, all_clouds=all, refresh=refresh)
if not subscriptions:
logger.warning('Please run "az login" to access your accounts.')
for sub in subscriptions:
@@ -42,9 +53,9 @@ def list_subscriptions(all=False, refresh=False): # pylint: disable=redefined-b
return subscriptions
-def show_subscription(subscription=None, show_auth_for_sdk=None):
+def show_subscription(cmd, subscription=None, show_auth_for_sdk=None):
import json
- profile = Profile()
+ profile = Profile(cmd.cli_ctx)
if not show_auth_for_sdk:
return profile.get_subscription(subscription)
@@ -52,15 +63,15 @@ def show_subscription(subscription=None, show_auth_for_sdk=None):
print(json.dumps(profile.get_sp_auth_info(subscription), indent=2))
-def get_access_token(subscription=None, resource=None):
+def get_access_token(cmd, subscription=None, resource=None):
'''
get AAD token to access to a specified resource
:param resource: Azure resource endpoints. Default to Azure Resource Manager
Use 'az cloud show' command for other Azure resources
'''
- resource = (resource or get_active_cloud().endpoints.active_directory_resource_id)
- profile = Profile()
- creds, subscription, tenant = profile.get_raw_token(resource, subscription=subscription)
+ resource = (resource or cmd.cli_ctx.cloud.endpoints.active_directory_resource_id)
+ profile = Profile(cmd.cli_ctx)
+ creds, subscription, tenant = profile.get_raw_token(subscription=subscription, resource=resource)
return {
'tokenType': creds[0],
'accessToken': creds[1],
@@ -70,21 +81,21 @@ def get_access_token(subscription=None, resource=None):
}
-def set_active_subscription(subscription):
+def set_active_subscription(cmd, subscription):
"""Set the current subscription"""
+ profile = Profile(cmd.cli_ctx)
if not id:
raise CLIError('Please provide subscription id or unique name.')
- profile = Profile()
profile.set_active_subscription(subscription)
-def account_clear():
+def account_clear(cmd):
"""Clear all stored subscriptions. To clear individual, use 'logout'"""
- profile = Profile()
+ profile = Profile(cmd.cli_ctx)
profile.logout_all()
-def login(username=None, password=None, service_principal=None, tenant=None,
+def login(cmd, username=None, password=None, service_principal=None, tenant=None,
allow_no_subscriptions=False, msi=False, msi_port=DefaultStr(50342)):
"""Log in to access Azure subscriptions"""
import os
@@ -99,7 +110,7 @@ def login(username=None, password=None, service_principal=None, tenant=None,
interactive = False
- profile = Profile()
+ profile = Profile(cmd.cli_ctx)
if in_cloud_console():
console_tokens = os.environ.get('AZURE_CONSOLE_TOKENS', None)
@@ -121,6 +132,7 @@ def login(username=None, password=None, service_principal=None, tenant=None,
interactive = True
try:
+ profile = Profile(cmd.cli_ctx)
subscriptions = profile.find_subscriptions_on_login(
interactive,
username,
@@ -146,18 +158,18 @@ def login(username=None, password=None, service_principal=None, tenant=None,
return all_subscriptions
-def logout(username=None):
+def logout(cmd, username=None):
"""Log out to remove access to Azure subscriptions"""
if in_cloud_console():
logger.warning(_CLOUD_CONSOLE_WARNING_TEMPLATE, 'logout')
return
- profile = Profile()
+ profile = Profile(cmd.cli_ctx)
if not username:
username = profile.get_current_account_user()
profile.logout(username)
-def list_locations():
+def list_locations(cmd):
from azure.cli.core.commands.parameters import get_subscription_locations
- return get_subscription_locations()
+ return get_subscription_locations(cmd.cli_ctx)
diff --git a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/test_custom.py b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/test_custom.py
index 80fa52084c8..e613289f368 100644
--- a/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/test_custom.py
+++ b/src/command_modules/azure-cli-profile/azure/cli/command_modules/profile/tests/test_custom.py
@@ -7,33 +7,39 @@
import mock
from azure.cli.command_modules.profile.custom import list_subscriptions, get_access_token
+from azure.cli.testsdk import TestCli
class ProfileCommandTest(unittest.TestCase):
- @mock.patch('azure.cli.command_modules.profile.custom.load_subscriptions', autospec=True)
+ @mock.patch('azure.cli.command_modules.profile.custom._load_subscriptions', autospec=True)
@mock.patch('azure.cli.command_modules.profile.custom.logger', autospec=True)
def test_list_only_enabled_one(self, logger_mock, load_subscription_mock):
+ cmd = mock.MagicMock()
+ cmd.cli_ctx = TestCli()
sub1 = {'state': 'Enabled'}
sub2 = {'state': 'Overdued'}
load_subscription_mock.return_value = [sub1, sub2]
# list all
- self.assertEqual(2, len(list_subscriptions(all=True)))
+ self.assertEqual(2, len(list_subscriptions(cmd, all=True)))
self.assertTrue(not logger_mock.warning.called)
# list only enabled one
- result = list_subscriptions()
+ result = list_subscriptions(cmd)
self.assertEqual(1, len(result))
self.assertEqual('Enabled', result[0]['state'])
logger_mock.warning.assert_called_once_with(mock.ANY)
@mock.patch('azure.cli.core._profile.Profile.get_raw_token', autospec=True)
def test_get_row_token(self, get_raw_token_mcok):
+ cmd = mock.MagicMock()
+ cmd.cli_ctx = TestCli()
+
# arrange
get_raw_token_mcok.return_value = (['bearer', 'token123', {'expiresOn': '2100-01-01'}], 'sub123', 'tenant123')
# action
- result = get_access_token()
+ result = get_access_token(cmd)
# assert
get_raw_token_mcok.assert_called_with(mock.ANY, 'https://management.core.windows.net/', None)
@@ -47,5 +53,5 @@ def test_get_row_token(self, get_raw_token_mcok):
self.assertEqual(result, expected_result)
# assert it takes customized resource, subscription
- get_access_token(subscription='foosub', resource='foores')
+ get_access_token(cmd, subscription='foosub', resource='foores')
get_raw_token_mcok.assert_called_with(mock.ANY, 'foores', 'foosub')
diff --git a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/__init__.py b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/__init__.py
index 753982ea222..6284656e090 100644
--- a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/__init__.py
+++ b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/__init__.py
@@ -9,7 +9,7 @@
def load_params(_):
- import azure.cli.command_modules.rdbms.params # pylint: disable=redefined-outer-name, unused-variable
+ import azure.cli.command_modules.rdbms._params # pylint: disable=redefined-outer-name, unused-variable
def load_commands():
diff --git a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_help.py b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_help.py
index 8f3f866ff73..5cc39306cf1 100644
--- a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_help.py
+++ b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
def add_helps(command_group, server_type):
diff --git a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/params.py b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_params.py
similarity index 97%
rename from src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/params.py
rename to src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_params.py
index 91b525aae40..9bc17aa578d 100644
--- a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/params.py
+++ b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_params.py
@@ -6,8 +6,10 @@
from azure.mgmt.rdbms import postgresql
from azure.cli.core.commands import register_cli_argument
-from azure.cli.core.commands.parameters import \
- (get_resource_name_completion_list, tags_type, enum_choice_list, location_type)
+from azure.cli.core.commands.parameters import get_resource_name_completion_list, tags_type, location_type
+
+from knack.arguments import enum_choice_list
+
from ._util import PolyParametersContext
from .validators import configuration_value_validator
diff --git a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_util.py b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_util.py
index f22661bafe1..563dd5e6861 100644
--- a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_util.py
+++ b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/_util.py
@@ -5,9 +5,10 @@
from azure.cli.core.commands import _get_cli_argument
from azure.cli.core.commands.client_factory import get_mgmt_service_client
-from azure.cli.core.commands.parameters import ignore_type
from azure.cli.core.sdk.util import ParametersContext
+from knack.arguments import ignore_type
+
# CLIENT FACTORIES
RM_URI_OVERRIDE = 'AZURE_CLI_RDBMS_RM_URI'
diff --git a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/commands.py b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/commands.py
index 03f83398f16..93b5e72a488 100644
--- a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/commands.py
+++ b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/commands.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.commands.arm import cli_generic_update_command
+from azure.cli.core.commands.arm import _cli_generic_update_command
from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
from azure.cli.core.sdk.util import (
create_service_adapter,
@@ -48,7 +48,7 @@ def firewall_rule_factory(args):
c.command('delete', 'delete', confirmation=True)
c.command('show', 'get')
c.command('list', 'list_by_server')
- cli_generic_update_command(__name__,
+ _cli_generic_update_command(__name__,
'{} server firewall-rule update'.format(command_group_name),
firewall_rule_sa('get'),
custom_path.format('_firewall_rule_custom_setter'),
diff --git a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/validators.py b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/validators.py
index 57ef4ab573c..9edef5367d2 100644
--- a/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/validators.py
+++ b/src/command_modules/azure-cli-rdbms/azure/cli/command_modules/rdbms/validators.py
@@ -5,8 +5,9 @@
from azure.cli.core.commands.validators import \
(get_default_location_from_resource_group, validate_tags)
-from azure.cli.core.prompting import prompt_pass, NoTTYException
-from azure.cli.core.util import CLIError
+
+from knack.prompting import prompt_pass, NoTTYException
+from knack.util import CLIError
def get_combined_validator(validators):
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/__init__.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/__init__.py
index 5e58759021c..0112d8f708b 100644
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/__init__.py
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/__init__.py
@@ -3,12 +3,33 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-import azure.cli.command_modules.redis._help # pylint: disable=unused-import
+from azure.cli.core import AzCommandsLoader
+from azure.cli.command_modules.redis._help import helps
-def load_params(_):
- import azure.cli.command_modules.redis._params # pylint: disable=redefined-outer-name, unused-variable
+class RedisCommandsLoader(AzCommandsLoader):
-def load_commands():
- import azure.cli.command_modules.redis.commands # pylint: disable=redefined-outer-name, unused-variable
+ def __init__(self, cli_ctx=None):
+ from azure.cli.core.sdk.util import CliCommandType
+ from azure.cli.command_modules.redis._client_factory import cf_redis
+ redis_custom = CliCommandType(
+ operations_tmpl='azure.cli.command_modules.redis.custom#{}',
+ client_factory=cf_redis)
+ super(RedisCommandsLoader, self).__init__(cli_ctx=cli_ctx,
+ min_profile='2017-03-10-profile',
+ custom_command_type=redis_custom)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(RedisCommandsLoader, self).load_command_table(args)
+ from azure.cli.command_modules.redis.commands import load_command_table
+ load_command_table(self, args)
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(RedisCommandsLoader, self).load_arguments(command)
+ from azure.cli.command_modules.redis._params import load_arguments
+ load_arguments(self, command)
+
+COMMAND_LOADER_CLS = RedisCommandsLoader
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_client_factory.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_client_factory.py
index 45f07a8c622..18171c0de3e 100644
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_client_factory.py
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_client_factory.py
@@ -4,13 +4,13 @@
# --------------------------------------------------------------------------------------------
-def cf_redis(_):
+def cf_redis(cli_ctx, _):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.redis import RedisManagementClient
- return get_mgmt_service_client(RedisManagementClient).redis
+ return get_mgmt_service_client(cli_ctx, RedisManagementClient).redis
-def cf_patch_schedules(_):
+def cf_patch_schedules(cli_ctx, _):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.redis import RedisManagementClient
- return get_mgmt_service_client(RedisManagementClient).patch_schedules
+ return get_mgmt_service_client(cli_ctx, RedisManagementClient).patch_schedules
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_help.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_help.py
index b269707de4d..1ef0ac03f38 100644
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_help.py
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps # pylint: disable=unused-import
+from knack.help_files import helps # pylint: disable=unused-import
helps['redis'] = """
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_params.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_params.py
index 05a01bbb382..b9f319ec322 100644
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_params.py
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_params.py
@@ -3,64 +3,36 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.commands.parameters import (
- get_resource_name_completion_list,
- enum_choice_list,
- name_type)
-from azure.cli.core.util import shell_safe_json_parse
-from azure.cli.core.commands import register_cli_argument
-import azure.cli.core.commands.arm # pylint: disable=unused-import
-from azure.mgmt.redis.models.redis_management_client_enums import (
- RebootType,
- RedisKeyType,
- SkuName)
+# pylint: disable=line-too-long
-from azure.mgmt.redis.models import (
- ScheduleEntry,
-)
+from azure.cli.core.commands.parameters import get_resource_name_completion_list, name_type
+import azure.cli.command_modules.redis._help # pylint: disable=unused-import
+from azure.cli.command_modules.redis._validators import JsonString, ScheduleEntryList
+from azure.mgmt.redis.models.redis_management_client_enums import RebootType, RedisKeyType, SkuName
-class JsonString(dict):
- def __init__(self, value):
- super(JsonString, self).__init__()
- if value[0] in ("'", '"') and value[-1] == value[0]:
- # Remove leading and trailing quotes for dos/cmd.exe users
- value = value[1:-1]
- dictval = shell_safe_json_parse(value)
- self.update(dictval)
+from azure.cli.core.commands.parameters import get_enum_type # TODO: Move this into Knack
-class ScheduleEntryList(list):
- def __init__(self, value):
- super(ScheduleEntryList, self).__init__()
- if value[0] in ("'", '"') and value[-1] == value[0]:
- # Remove leading and trailing quotes for dos/cmd.exe users
- value = value[1:-1]
- dictval = shell_safe_json_parse(value)
- self.extend([ScheduleEntry(row['dayOfWeek'],
- int(row['startHourUtc']),
- row.get('maintenanceWindow', None)) for row in dictval])
+def load_arguments(self, _):
+ with self.argument_context('redis') as c:
+ c.argument('name', options_list=['--name', '-n'], help='Name of the redis cache.', completer=get_resource_name_completion_list('Microsoft.Cache/redis'))
+ c.argument('redis_configuration', type=JsonString)
+ c.argument('reboot_type', arg_type=get_enum_type(RebootType))
+ c.argument('key_type', arg_type=get_enum_type(RedisKeyType))
+ c.argument('shard_id', type=int)
+ c.argument('sku', arg_type=get_enum_type(SkuName))
+ c.argument('vm_size', help='Size of redis cache to deploy. Example : values for C family (C0, C1, C2, C3, C4, C5, C6). For P family (P1, P2, P3, P4)')
+ c.argument('enable_non_ssl_port', action='store_true')
+ c.argument('shard_count', type=int)
-register_cli_argument('redis', 'name', arg_type=name_type, help='Name of the redis cache.',
- completer=get_resource_name_completion_list('Microsoft.Cache/redis'),
- id_part='name')
-register_cli_argument('redis', 'redis_configuration', type=JsonString)
-register_cli_argument('redis', 'reboot_type', **enum_choice_list(RebootType))
-register_cli_argument('redis', 'key_type', **enum_choice_list(RedisKeyType))
-register_cli_argument('redis', 'shard_id', type=int)
-register_cli_argument('redis', 'sku', **enum_choice_list(SkuName))
-register_cli_argument('redis', 'vm_size',
- help='Size of redis cache to deploy. '
- 'Example : values for C family (C0, C1, C2, C3, C4, C5, C6). '
- 'For P family (P1, P2, P3, P4)')
-register_cli_argument('redis', 'enable_non_ssl_port', action='store_true')
-register_cli_argument('redis', 'shard_count', type=int)
-register_cli_argument('redis', 'subnet_id')
+ with self.argument_context('redis import-method') as c:
+ c.argument('files', nargs='+')
-register_cli_argument('redis import-method', 'files', nargs='+')
+ with self.argument_context('redis patch-schedule set') as c:
+ c.argument('schedule_entries', type=ScheduleEntryList)
-register_cli_argument('redis patch-schedule set', 'schedule_entries', type=ScheduleEntryList)
-
-register_cli_argument('redis create', 'name', arg_type=name_type, completer=None)
-register_cli_argument('redis create', 'tenant_settings', type=JsonString)
+ with self.argument_context('redis create') as c:
+ c.argument('name', arg_type=name_type, completer=None)
+ c.argument('tenant_settings', type=JsonString)
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_validators.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_validators.py
new file mode 100644
index 00000000000..dd79d31d019
--- /dev/null
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/_validators.py
@@ -0,0 +1,29 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+from azure.cli.core.util import shell_safe_json_parse
+from azure.mgmt.redis.models import ScheduleEntry
+
+
+class JsonString(dict):
+ def __init__(self, value):
+ super(JsonString, self).__init__()
+ if value[0] in ("'", '"') and value[-1] == value[0]:
+ # Remove leading and trailing quotes for dos/cmd.exe users
+ value = value[1:-1]
+ dictval = shell_safe_json_parse(value)
+ self.update(dictval)
+
+
+class ScheduleEntryList(list):
+ def __init__(self, value):
+ super(ScheduleEntryList, self).__init__()
+ if value[0] in ("'", '"') and value[-1] == value[0]:
+ # Remove leading and trailing quotes for dos/cmd.exe users
+ value = value[1:-1]
+ dictval = shell_safe_json_parse(value)
+ self.extend([ScheduleEntry(row['dayOfWeek'],
+ int(row['startHourUtc']),
+ row.get('maintenanceWindow', None)) for row in dictval])
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/commands.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/commands.py
index e53f683708c..5a32a1e0865 100644
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/commands.py
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/commands.py
@@ -3,41 +3,39 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.commands import cli_command
-from azure.cli.core.commands.arm import cli_generic_update_command
-from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
-from azure.cli.command_modules.redis._client_factory import (cf_redis, cf_patch_schedules)
+from azure.cli.core.sdk.util import CliCommandType
+
+from azure.cli.command_modules.redis._client_factory import cf_redis, cf_patch_schedules
from azure.cli.command_modules.redis.custom import wrong_vmsize_argument_exception_handler
-if not supported_api_version(PROFILE_TYPE, max_api='2017-03-09-profile'):
- redis_operation = 'azure.mgmt.redis.operations.redis_operations#RedisOperations.'
- redis_custom = 'azure.cli.command_modules.redis.custom#'
- redis_patch_operation = \
- 'azure.mgmt.redis.operations.patch_schedules_operations#PatchSchedulesOperations.'
-
- cli_command(__name__, 'redis create', redis_custom + 'cli_redis_create', cf_redis,
- exception_handler=wrong_vmsize_argument_exception_handler)
- cli_command(__name__, 'redis delete', redis_operation + 'delete', cf_redis)
- cli_command(__name__, 'redis export', redis_custom + 'cli_redis_export', cf_redis)
- cli_command(__name__, 'redis force-reboot', redis_operation + 'force_reboot', cf_redis)
- cli_command(__name__, 'redis import-method', redis_custom + 'cli_redis_import_method', cf_redis)
- cli_command(__name__, 'redis list', redis_operation + 'list_by_resource_group', cf_redis)
- cli_command(__name__, 'redis list-all', redis_operation + 'list', cf_redis)
- cli_command(__name__, 'redis list-keys', redis_operation + 'list_keys', cf_redis)
- cli_command(__name__, 'redis regenerate-keys', redis_operation + 'regenerate_key', cf_redis)
- cli_command(__name__, 'redis show', redis_operation + 'get', cf_redis)
- cli_command(__name__, 'redis update-settings', redis_custom + 'cli_redis_update_settings', cf_redis)
-
- cli_generic_update_command(__name__, 'redis update',
- redis_operation + 'get',
- redis_operation + 'update',
- cf_redis,
- custom_function_op=redis_custom + 'cli_redis_update',
- exception_handler=wrong_vmsize_argument_exception_handler)
-
- cli_command(__name__, 'redis patch-schedule set', redis_patch_operation + 'create_or_update',
- cf_patch_schedules)
- cli_command(__name__, 'redis patch-schedule delete', redis_patch_operation + 'delete',
- cf_patch_schedules)
- cli_command(__name__, 'redis patch-schedule show', redis_patch_operation + 'get',
- cf_patch_schedules)
+
+def load_command_table(self, _):
+
+ redis_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.redis.operations.redis_operations#RedisOperations.{}',
+ client_factory=cf_redis)
+
+ redis_patch = CliCommandType(
+ operations_tmpl='azure.mgmt.redis.operations.patch_schedules_operations#PatchSchedulesOperations.{}',
+ client_factory=cf_patch_schedules)
+
+ with self.command_group('redis', redis_sdk) as g:
+ g.custom_command('create', 'cli_redis_create', client_factory=cf_redis,
+ exception_handler=wrong_vmsize_argument_exception_handler)
+ g.command('delete', 'delete')
+ g.custom_command('export', 'cli_redis_export')
+ g.command('force-reboot', 'force_reboot')
+ g.custom_command('import-method', 'cli_redis_import_method')
+ g.command('list', 'list_by_resource_group')
+ g.command('list-all', 'list')
+ g.command('list-keys', 'list_keys')
+ g.command('regenerate-keys', 'regenerate_key')
+ g.command('show', 'get')
+ g.custom_command('update-settings', 'cli_redis_update_settings')
+ g.generic_update_command('update', exception_handler=wrong_vmsize_argument_exception_handler,
+ setter_name='update', custom_func_name='cli_redis_update')
+
+ with self.command_group('redis patch-schedule', redis_patch) as g:
+ g.command('set', 'create_or_update')
+ g.command('delete', 'delete')
+ g.command('patch-schedule show', 'get')
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/custom.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/custom.py
index 08d4c2ee87d..63c549cc63f 100644
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/custom.py
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/custom.py
@@ -3,26 +3,45 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.util import CLIError
+from knack.log import get_logger
+from knack.util import CLIError
-import azure.cli.core.azlogging as azlogging
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
-def cli_redis_export(client, resource_group_name, name, prefix, container, file_format=None):
+def wrong_vmsize_argument_exception_handler(ex):
+
+ from msrest.exceptions import ClientException
+ if isinstance(ex, ClientException):
+ if ("The value of the parameter 'properties.sku.family/properties.sku.capacity' is invalid"
+ in format(ex)) \
+ or ("The value of the parameter 'properties.sku.family' is invalid"
+ in format(ex)):
+ raise CLIError('Invalid VM size. Example for Valid values: '
+ 'For C family (C0, C1, C2, C3, C4, C5, C6), '
+ 'for P family (P1, P2, P3, P4)')
+ raise ex
+
+
+# region Custom Commands
+
+# pylint: disable=unused-argument
+def cli_redis_export(cmd, client, resource_group_name, name, prefix, container, file_format=None):
from azure.mgmt.redis.models import ExportRDBParameters
parameters = ExportRDBParameters(prefix, container, file_format)
return client.export(resource_group_name, name, parameters)
-def cli_redis_import_method(client, resource_group_name, name, file_format, files):
+# pylint: disable=unused-argument
+def cli_redis_import_method(cmd, client, resource_group_name, name, file_format, files):
from azure.mgmt.redis.models import ImportRDBParameters
parameters = ImportRDBParameters(files, file_format)
return client.import_method(resource_group_name, name, files, parameters)
-def cli_redis_update_settings(client, resource_group_name, name, redis_configuration):
+# pylint: disable=unused-argument
+def cli_redis_update_settings(cmd, client, resource_group_name, name, redis_configuration):
from azure.mgmt.redis.models import RedisUpdateParameters
logger.warning('This command is getting deprecated. Please use "redis update" command')
@@ -44,7 +63,8 @@ def cli_redis_update_settings(client, resource_group_name, name, redis_configura
return client.update(resource_group_name, name, parameters=update_params)
-def cli_redis_update(instance, sku=None, vm_size=None):
+# pylint: disable=unused-argument
+def cli_redis_update(cmd, instance, sku=None, vm_size=None):
from azure.mgmt.redis.models import RedisUpdateParameters
if sku is not None:
instance.sku.name = sku
@@ -63,25 +83,11 @@ def cli_redis_update(instance, sku=None, vm_size=None):
instance.sku,
instance.tags
)
-
return update_params
-def wrong_vmsize_argument_exception_handler(ex):
-
- from msrest.exceptions import ClientException
- if isinstance(ex, ClientException):
- if ("The value of the parameter 'properties.sku.family/properties.sku.capacity' is invalid"
- in format(ex)) \
- or ("The value of the parameter 'properties.sku.family' is invalid"
- in format(ex)):
- raise CLIError('Invalid VM size. Example for Valid values: '
- 'For C family (C0, C1, C2, C3, C4, C5, C6), '
- 'for P family (P1, P2, P3, P4)')
- raise ex
-
-
-def cli_redis_create(client,
+# pylint: disable=unused-argument
+def cli_redis_create(cmd, client,
resource_group_name, name, location, sku, vm_size, tags=None,
redis_configuration=None, enable_non_ssl_port=None, tenant_settings=None,
shard_count=None, subnet_id=None, static_ip=None):
@@ -110,5 +116,6 @@ def cli_redis_create(client,
shard_count,
subnet_id,
static_ip)
-
return client.create(resource_group_name, name, params)
+
+# endregion
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/recordings/latest/test_create_redis_cache.yaml b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/recordings/latest/test_create_redis_cache.yaml
deleted file mode 100644
index aceadf93c48..00000000000
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/recordings/latest/test_create_redis_cache.yaml
+++ /dev/null
@@ -1,209 +0,0 @@
-interactions:
-- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
- Connection: [keep-alive]
- Content-Length: ['50']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.1 (Darwin-16.7.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.13 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.13+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Fri, 25 Aug 2017 17:52:15 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1106']
- status: {code: 201, message: Created}
-- request:
- body: '{"location": "WestUS", "properties": {"sku": {"capacity": 0, "name": "Basic",
- "family": "C"}}}'
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [redis create]
- Connection: [keep-alive]
- Content-Length: ['94']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.1 (Darwin-16.7.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.13 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.13+dev]
- accept-language: [en-US]
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/Redis/cli000002?api-version=2016-04-01
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/Redis/cli000002","location":"West
- US","name":"cli000002","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":0},"enableNonSslPort":false,"redisConfiguration":{"maxclients":"256","maxmemory-reserved":"2","maxfragmentationmemory-reserved":"12","maxmemory-delta":"2"},"accessKeys":{"primaryKey":"jMfGYgf1x4vuqRKL2HnPhOAADPniqz+VP8ApwZacXsw=","secondaryKey":"0sR25L+baEYjwq446A2HzWkT6KQ6YIemITC+P7N3pMs="},"hostName":"cli000002.redis.cache.windows.net","port":6379,"sslPort":6380}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['801']
- content-type: [application/json; charset=utf-8]
- date: ['Fri, 25 Aug 2017 17:52:17 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/redis/cli000002?api-version=2016-04-01']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-content-type-options: [nosniff]
- x-ms-ratelimit-remaining-subscription-writes: ['1115']
- x-rp-server-mvid: [14d6ad0c-2e51-4e96-8912-4ea3e39277ce]
- status: {code: 201, message: Created}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [redis create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.1 (Darwin-16.7.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.13 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.13+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/redis/cli000002?api-version=2016-04-01
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/Redis/cli000002","location":"West
- US","name":"cli000002","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":0},"enableNonSslPort":false,"redisConfiguration":{"maxclients":"256","maxmemory-reserved":"2","maxfragmentationmemory-reserved":"12","maxmemory-delta":"2"},"accessKeys":null,"hostName":"cli000002.redis.cache.windows.net","port":6379,"sslPort":6380}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['682']
- content-type: [application/json; charset=utf-8]
- date: ['Fri, 25 Aug 2017 17:52:47 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- x-content-type-options: [nosniff]
- x-rp-server-mvid: [14d6ad0c-2e51-4e96-8912-4ea3e39277ce]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [redis show]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.1 (Darwin-16.7.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.13 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.13+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/Redis/cli000002?api-version=2016-04-01
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/Redis/cli000002","location":"West
- US","name":"cli000002","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":0},"enableNonSslPort":false,"redisConfiguration":{"maxclients":"256","maxmemory-reserved":"2","maxfragmentationmemory-reserved":"12","maxmemory-delta":"2"},"accessKeys":null,"hostName":"cli000002.redis.cache.windows.net","port":6379,"sslPort":6380}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['682']
- content-type: [application/json; charset=utf-8]
- date: ['Fri, 25 Aug 2017 17:52:48 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- x-content-type-options: [nosniff]
- x-rp-server-mvid: [14d6ad0c-2e51-4e96-8912-4ea3e39277ce]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [redis list]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.1 (Darwin-16.7.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.13 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.13+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/Redis/?api-version=2016-04-01
- response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/Redis/cli000002","location":"West
- US","name":"cli000002","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":0},"enableNonSslPort":false,"redisConfiguration":{"maxclients":"256","maxmemory-reserved":"2","maxfragmentationmemory-reserved":"12","maxmemory-delta":"2"},"accessKeys":null,"hostName":"cli000002.redis.cache.windows.net","port":6379,"sslPort":6380}}]}'}
- headers:
- cache-control: [no-cache]
- content-length: ['694']
- content-type: [application/json; charset=utf-8]
- date: ['Fri, 25 Aug 2017 17:52:48 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [Microsoft-HTTPAPI/2.0]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- transfer-encoding: [chunked]
- vary: [Accept-Encoding]
- x-content-type-options: [nosniff]
- x-rp-server-mvid: [14d6ad0c-2e51-4e96-8912-4ea3e39277ce]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [redis list-keys]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.1 (Darwin-16.7.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.13 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.13+dev]
- accept-language: [en-US]
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Cache/Redis/cli000002/listKeys?api-version=2016-04-01
- response:
- body: {string: '{"primaryKey":"jMfGYgf1x4vuqRKL2HnPhOAADPniqz+VP8ApwZacXsw=","secondaryKey":"0sR25L+baEYjwq446A2HzWkT6KQ6YIemITC+P7N3pMs="}'}
- headers:
- cache-control: [no-cache]
- content-length: ['123']
- content-type: [application/json; charset=utf-8]
- date: ['Fri, 25 Aug 2017 17:52:48 GMT']
- expires: ['-1']
- pragma: [no-cache]
- server: [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: ['1142']
- x-rp-server-mvid: [14d6ad0c-2e51-4e96-8912-4ea3e39277ce]
- status: {code: 200, message: OK}
-- request:
- body: null
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
- Connection: [keep-alive]
- Content-Length: ['0']
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.1 (Darwin-16.7.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.13 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.13+dev]
- accept-language: [en-US]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10
- response:
- body: {string: ''}
- headers:
- cache-control: [no-cache]
- content-length: ['0']
- date: ['Fri, 25 Aug 2017 17:52:49 GMT']
- expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkcyTkpDR0lITUIzWUM0Nk9IMkJJWEpJRlRJNkFPU0JaRVlCUHw2NDREODA3N0M1MkRDMjhBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1125']
- status: {code: 202, message: Accepted}
-version: 1
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/recordings/latest/test_redis_cache.yaml b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/recordings/latest/test_redis_cache.yaml
new file mode 100644
index 00000000000..446e606392f
--- /dev/null
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/recordings/latest/test_redis_cache.yaml
@@ -0,0 +1,272 @@
+interactions:
+- request:
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_redis000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001","name":"cli_test_redis000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 03 Oct 2017 22:29:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: '{"location": "WestUS", "properties": {"sku": {"name": "Basic", "family":
+ "C", "capacity": 0}}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['94']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000002?api-version=2016-04-01
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000002","location":"West
+ US","name":"redis000002","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":0},"enableNonSslPort":false,"redisConfiguration":{"maxclients":"256","maxmemory-reserved":"2","maxfragmentationmemory-reserved":"12","maxmemory-delta":"2"},"accessKeys":{"primaryKey":"O+pjzu7q0853JYInDsLoGtDY3DOEpfg5avCDCX8gLKo=","secondaryKey":"72Z3Y+1mE0ug11eCK5DAxf1wjYrqnv5XeolNXsH3fHg="},"hostName":"redis000002.redis.cache.windows.net","port":6379,"sslPort":6380}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['801']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 03 Oct 2017 22:29:25 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/redis/redis000002?api-version=2016-04-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-rp-server-mvid: [9c96d9e4-c135-4090-acf5-f1775944f751]
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/redis/redis000002?api-version=2016-04-01
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000002","location":"West
+ US","name":"redis000002","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":0},"enableNonSslPort":false,"redisConfiguration":{"maxclients":"256","maxmemory-reserved":"2","maxfragmentationmemory-reserved":"12","maxmemory-delta":"2"},"accessKeys":null,"hostName":"redis000002.redis.cache.windows.net","port":6379,"sslPort":6380}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['682']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 03 Oct 2017 22:29:55 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ x-rp-server-mvid: [9c96d9e4-c135-4090-acf5-f1775944f751]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "WestUS", "properties": {"sku": {"name": "Basic", "family":
+ "C", "capacity": 1}, "tenantSettings": {"hello": "1"}}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['128']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000003?api-version=2016-04-01
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000003","location":"West
+ US","name":"redis000003","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":1},"enableNonSslPort":false,"tenantSettings":{"hello":"1"},"redisConfiguration":{"maxclients":"1000","maxmemory-reserved":"50","maxfragmentationmemory-reserved":"50","maxmemory-delta":"50"},"accessKeys":{"primaryKey":"BW1JH+lj8/dOzI43kTwuqpzNJrDErCH6Q/o/zCHK2Fg=","secondaryKey":"WbiDCK0KxeX54PisU5EYG0R/dGcmQUz4QflitdJGwJI="},"hostName":"redis000003.redis.cache.windows.net","port":6379,"sslPort":6380}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['835']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 03 Oct 2017 22:29:58 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/redis/redis000003?api-version=2016-04-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-content-type-options: [nosniff]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-rp-server-mvid: [9c96d9e4-c135-4090-acf5-f1775944f751]
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/redis/redis000003?api-version=2016-04-01
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000003","location":"West
+ US","name":"redis000003","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":1},"enableNonSslPort":false,"tenantSettings":{"hello":"1"},"redisConfiguration":{"maxclients":"1000","maxmemory-reserved":"50","maxfragmentationmemory-reserved":"50","maxmemory-delta":"50"},"accessKeys":null,"hostName":"redis000003.redis.cache.windows.net","port":6379,"sslPort":6380}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['716']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 03 Oct 2017 22:30:29 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ x-rp-server-mvid: [9c96d9e4-c135-4090-acf5-f1775944f751]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000002?api-version=2016-04-01
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000002","location":"West
+ US","name":"redis000002","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":0},"enableNonSslPort":false,"redisConfiguration":{"maxclients":"256","maxmemory-reserved":"2","maxfragmentationmemory-reserved":"12","maxmemory-delta":"2"},"accessKeys":null,"hostName":"redis000002.redis.cache.windows.net","port":6379,"sslPort":6380}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['682']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 03 Oct 2017 22:30:30 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ x-rp-server-mvid: [9c96d9e4-c135-4090-acf5-f1775944f751]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/?api-version=2016-04-01
+ response:
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000002","location":"West
+ US","name":"redis000002","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":0},"enableNonSslPort":false,"redisConfiguration":{"maxclients":"256","maxmemory-reserved":"2","maxfragmentationmemory-reserved":"12","maxmemory-delta":"2"},"accessKeys":null,"hostName":"redis000002.redis.cache.windows.net","port":6379,"sslPort":6380}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000003","location":"West
+ US","name":"redis000003","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"3.2.7","sku":{"name":"Basic","family":"C","capacity":1},"enableNonSslPort":false,"tenantSettings":{"hello":"1"},"redisConfiguration":{"maxclients":"1000","maxmemory-reserved":"50","maxfragmentationmemory-reserved":"50","maxmemory-delta":"50"},"accessKeys":null,"hostName":"redis000003.redis.cache.windows.net","port":6379,"sslPort":6380}}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1411']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 03 Oct 2017 22:30:30 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-content-type-options: [nosniff]
+ x-rp-server-mvid: [9c96d9e4-c135-4090-acf5-f1775944f751]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 redismanagementclient/4.1.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redis000001/providers/Microsoft.Cache/Redis/redis000002/listKeys?api-version=2016-04-01
+ response:
+ body: {string: '{"primaryKey":"O+pjzu7q0853JYInDsLoGtDY3DOEpfg5avCDCX8gLKo=","secondaryKey":"72Z3Y+1mE0ug11eCK5DAxf1wjYrqnv5XeolNXsH3fHg="}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['123']
+ content-type: [application/json; charset=utf-8]
+ date: ['Tue, 03 Oct 2017 22:30:31 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [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: ['1190']
+ x-rp-server-mvid: [9c96d9e4-c135-4090-acf5-f1775944f751]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_redis000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Tue, 03 Oct 2017 22:30:31 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkVESVNLNTU0WkNLQkhTQ0RZRDdESEpENElQNjRYNVhLRnxCMzAxM0IxNjY5MjI1RTgwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
+version: 1
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/test_redis_params.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/test_redis_params.py
deleted file mode 100644
index a1a9e35c2bd..00000000000
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/test_redis_params.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-import unittest
-
-from azure.cli.core.application import APPLICATION, Configuration
-
-
-def mock_echo_args(command_name, parameters):
- try:
- argv = ' '.join((command_name, parameters)).split()
- APPLICATION.initialize(Configuration())
- command_table = APPLICATION.configuration.get_command_table(argv)
- prefunc = command_table[command_name].handler
- command_table[command_name].handler = lambda args: args
- parsed_namespace = APPLICATION.execute(argv)
- return parsed_namespace
- finally:
- command_table[command_name].handler = prefunc
-
-
-class Test_RedisCache(unittest.TestCase):
- @classmethod
- def setUpClass(cls):
- pass
-
- def test_parse_redis_create(self):
- args = mock_echo_args('redis create',
- '--tenant-settings {\"hello\":1} -g wombat -n asldkj -l westus '
- '--sku basic --vm-size C1 ')
- subset = set(dict(vm_size='C1', sku='Basic', name='asldkj').items())
- superset = set([(k, v) for k, v in args.result.items() if not isinstance(v, dict)])
-
- self.assertTrue(subset.issubset(superset))
-
- tenant_settings = dict(hello=1)
- self.assertDictEqual(tenant_settings, args.result['tenant_settings'])
diff --git a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/test_redis_scenario.py b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/test_redis_scenario.py
index 6814f2d2280..a3f6229f572 100644
--- a/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/test_redis_scenario.py
+++ b/src/command_modules/azure-cli-redis/azure/cli/command_modules/redis/tests/test_redis_scenario.py
@@ -3,18 +3,31 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.testsdk import ScenarioTest, JMESPathCheck, ResourceGroupPreparer
+from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer
class RedisCacheTests(ScenarioTest):
- @ResourceGroupPreparer()
- def test_create_redis_cache(self, resource_group):
- name = self.create_random_name(prefix='cli', length=24)
- self.cmd('az redis create -n {} -g {} -l {} --sku {} --vm-size {}'.format(
- name, resource_group, 'WestUS', 'Basic', 'C0'))
- self.cmd('az redis show -n {} -g {}'.format(name, resource_group), checks=[
- JMESPathCheck('name', name),
- JMESPathCheck('provisioningState', 'Creating')
+
+ @ResourceGroupPreparer(name_prefix='cli_test_redis')
+ def test_redis_cache(self, resource_group):
+
+ self.kwargs = {
+ 'rg': resource_group,
+ 'loc': 'WestUS',
+ 'name': self.create_random_name(prefix='redis', length=24),
+ 'sku': 'basic',
+ 'size': 'C0',
+ 'name2': self.create_random_name(prefix='redis', length=24),
+ 'size2': 'C1',
+ 'settings': "{\\\"hello\\\":1}"
+ }
+
+ self.cmd('az redis create -n {name} -g {rg} -l {loc} --sku {sku} --vm-size {size}')
+
+ self.cmd('az redis create -n {name2} -g {rg} -l {loc} --sku {sku} --vm-size {size2} --tenant-settings {settings}')
+ self.cmd('az redis show -n {name} -g {rg}', checks=[
+ self.check('name', '{name}'),
+ self.check('provisioningState', 'Creating')
])
- self.cmd('az redis list -g {}'.format(resource_group))
- self.cmd('az redis list-keys -n {} -g {}'.format(name, resource_group))
+ self.cmd('az redis list -g {rg}')
+ self.cmd('az redis list-keys -n {name} -g {rg}')
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/__init__.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/__init__.py
index d776270eec9..9e430c527ac 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/__init__.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/__init__.py
@@ -3,12 +3,32 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.profiles import ResourceType
+
import azure.cli.command_modules.resource._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.resource._params # pylint: disable=redefined-outer-name, unused-variable
+class ResourceCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ from azure.cli.core.sdk.util import CliCommandType
+ resource_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.resource.custom#{}')
+ super(ResourceCommandsLoader, self).__init__(cli_ctx=cli_ctx,
+ resource_type=ResourceType.MGMT_RESOURCE_RESOURCES,
+ custom_command_type=resource_custom)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(ResourceCommandsLoader, self).load_command_table(args)
+ from azure.cli.command_modules.resource.commands import load_command_table
+ load_command_table(self, args)
+ return self.command_table
+
+ def load_arguments(self, command):
+ super(ResourceCommandsLoader, self).load_arguments(command)
+ from azure.cli.command_modules.resource._params import load_arguments
+ load_arguments(self, command)
-def load_commands():
- import azure.cli.command_modules.resource.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = ResourceCommandsLoader
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py
index 1386bb450a4..1d877f57a8f 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_client_factory.py
@@ -4,95 +4,95 @@
# --------------------------------------------------------------------------------------------
-def _resource_client_factory(**_):
+def _resource_client_factory(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
- return get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
-def _resource_feature_client_factory(**_):
+def _resource_feature_client_factory(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
- return get_mgmt_service_client(ResourceType.MGMT_RESOURCE_FEATURES)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_FEATURES)
-def _resource_policy_client_factory(**_):
+def _resource_policy_client_factory(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
- return get_mgmt_service_client(ResourceType.MGMT_RESOURCE_POLICY)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_POLICY)
-def _resource_lock_client_factory(**_):
+def _resource_lock_client_factory(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
- return get_mgmt_service_client(ResourceType.MGMT_RESOURCE_LOCKS)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_LOCKS)
-def _resource_links_client_factory(**_):
+def _resource_links_client_factory(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
- return get_mgmt_service_client(ResourceType.MGMT_RESOURCE_LINKS)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_LINKS)
-def _authorization_management_client(**_):
+def _authorization_management_client(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.authorization import AuthorizationManagementClient
- return get_mgmt_service_client(AuthorizationManagementClient)
+ return get_mgmt_service_client(cli_ctx, AuthorizationManagementClient)
-def _resource_managedapps_client_factory(**_):
+def _resource_managedapps_client_factory(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.resource.managedapplications import ApplicationClient
- return get_mgmt_service_client(ApplicationClient)
+ return get_mgmt_service_client(cli_ctx, ApplicationClient)
-def cf_resource_groups(_):
- return _resource_client_factory().resource_groups
+def cf_resource_groups(cli_ctx, _):
+ return _resource_client_factory(cli_ctx).resource_groups
-def cf_resources(_):
- return _resource_client_factory().resources
+def cf_resources(cli_ctx, _):
+ return _resource_client_factory(cli_ctx).resources
-def cf_providers(_):
- return _resource_client_factory().providers
+def cf_providers(cli_ctx, _):
+ return _resource_client_factory(cli_ctx).providers
-def cf_tags(_):
- return _resource_client_factory().tags
+def cf_tags(cli_ctx, _):
+ return _resource_client_factory(cli_ctx).tags
-def cf_deployments(_):
- return _resource_client_factory().deployments
+def cf_deployments(cli_ctx, _):
+ return _resource_client_factory(cli_ctx).deployments
-def cf_deployment_operations(_):
- return _resource_client_factory().deployment_operations
+def cf_deployment_operations(cli_ctx, _):
+ return _resource_client_factory(cli_ctx).deployment_operations
-def cf_features(_):
- return _resource_feature_client_factory().features
+def cf_features(cli_ctx, _):
+ return _resource_feature_client_factory(cli_ctx).features
-def cf_policy_definitions(_):
- return _resource_policy_client_factory().policy_definitions
+def cf_policy_definitions(cli_ctx, _):
+ return _resource_policy_client_factory(cli_ctx).policy_definitions
-def cf_policy_set_definitions(_):
- return _resource_policy_client_factory().policy_set_definitions
+def cf_policy_set_definitions(cli_ctx, _):
+ return _resource_policy_client_factory(cli_ctx).policy_set_definitions
-def cf_management_locks(_):
- return _resource_lock_client_factory().management_locks
+def cf_management_locks(cli_ctx, _):
+ return _resource_lock_client_factory(cli_ctx).management_locks
-def cf_resource_links():
- return _resource_links_client_factory().resource_links
+def cf_resource_links(cli_ctx, _):
+ return _resource_links_client_factory(cli_ctx).resource_links
-def cf_resource_managedapplications(_):
- return _resource_managedapps_client_factory().applications
+def cf_resource_managedapplications(cli_ctx, _):
+ return _resource_managedapps_client_factory(cli_ctx).applications
-def cf_resource_managedappdefinitions(_):
- return _resource_managedapps_client_factory().application_definitions
+def cf_resource_managedappdefinitions(cli_ctx, _):
+ return _resource_managedapps_client_factory(cli_ctx).application_definitions
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py
index 2515a298a4d..7cc639272a8 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
# pylint: disable=line-too-long, too-many-lines
helps['managedapp'] = """
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py
index ff1528b0969..021ef314c7d 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_params.py
@@ -3,176 +3,207 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-# pylint: disable=line-too-long
-from argcomplete.completers import FilesCompleter
-
-from azure.mgmt.resource.resources.models import DeploymentMode
-from azure.mgmt.resource.locks.models import LockLevel
-from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel
-from azure.cli.core.profiles import ResourceType
-from azure.cli.core.commands import register_cli_argument, CliArgumentType, VersionConstraint
-from azure.cli.core.commands.parameters import (ignore_type, resource_group_name_type, tag_type,
- tags_type, get_resource_group_completion_list,
- enum_choice_list, no_wait_type, file_type)
-from .custom import (get_policy_completion_list, get_policy_set_completion_list,
- get_policy_assignment_completion_list, get_resource_types_completion_list,
- get_providers_completion_list)
-from ._validators import (process_deployment_create_namespace, validate_lock_parameters, validate_subscription_lock,
- validate_group_lock, validate_resource_lock)
-
-# BASIC PARAMETER CONFIGURATION
-
-resource_name_type = CliArgumentType(options_list=('--name', '-n'), help='The resource name. (Ex: myC)')
-resource_type_type = CliArgumentType(help="The resource type (Ex: 'resC'). Can also accept namespace/type"
- " format (Ex: 'Microsoft.Provider/resC')")
-resource_namespace_type = CliArgumentType(options_list=('--namespace',), completer=get_providers_completion_list,
- help="Provider namespace (Ex: 'Microsoft.Provider')")
-resource_parent_type = CliArgumentType(required=False, options_list=('--parent',),
- help="The parent path (Ex: 'resA/myA/resB/myB')")
-_PROVIDER_HELP_TEXT = 'the resource namespace, aka \'provider\''
-register_cli_argument('resource', 'no_wait', no_wait_type)
-register_cli_argument('resource', 'resource_name', resource_name_type)
-register_cli_argument('resource', 'api_version', help='The api version of the resource (omit for latest)', required=False)
-register_cli_argument('resource', 'resource_provider_namespace', resource_namespace_type)
-register_cli_argument('resource', 'resource_type', arg_type=resource_type_type, completer=get_resource_types_completion_list)
-register_cli_argument('resource', 'parent_resource_path', resource_parent_type)
-register_cli_argument('resource', 'tag', tag_type)
-register_cli_argument('resource', 'tags', tags_type)
-register_cli_argument('resource', 'resource_ids', nargs='+', options_list=('--ids'), help='One or more resource IDs (space delimited). If provided, no other "Resource Id" arguments should be specified.')
-
-register_cli_argument('resource list', 'name', resource_name_type)
-register_cli_argument('resource move', 'ids', nargs='+')
-register_cli_argument('resource invoke-action', 'action', help='The action that will be invoked on the specified resource')
-register_cli_argument('resource invoke-action', 'request_body', help='JSON encoded parameter arguments for the action that will be passed along in the post request body. Use @{file} to load from a file.')
-
-register_cli_argument('resource create', 'resource_id', options_list=['--id'], help='Resource ID.', action=None)
-register_cli_argument('resource create', 'properties', options_list=('--properties', '-p'),
- help='a JSON-formatted string containing resource properties')
-register_cli_argument('resource create', 'is_full_object', action='store_true',
- help='Indicates that the properties object includes other options such as location, tags, sku, and/or plan.')
-
-register_cli_argument('provider', 'top', ignore_type)
-register_cli_argument('provider register', 'wait', action='store_true', help='wait for the registration to finish')
-register_cli_argument('provider unregister', 'wait', action='store_true', help='wait for unregistration to finish')
-register_cli_argument('provider', 'resource_provider_namespace', options_list=('--namespace', '-n'), completer=get_providers_completion_list,
- help=_PROVIDER_HELP_TEXT)
-register_cli_argument('provider operation', 'api_version', help="The api version of the 'Microsoft.Authorization/providerOperations' resource (omit for latest)")
-
-register_cli_argument('feature', 'resource_provider_namespace', options_list=('--namespace',), required=True, help=_PROVIDER_HELP_TEXT)
-register_cli_argument('feature list', 'resource_provider_namespace', options_list=('--namespace',), required=False, help=_PROVIDER_HELP_TEXT)
-register_cli_argument('feature', 'feature_name', options_list=('--name', '-n'), help='the feature name')
-
-existing_policy_definition_name_type = CliArgumentType(options_list=('--name', '-n'), completer=get_policy_completion_list, help='The policy definition name')
-register_cli_argument('policy', 'resource_group_name', arg_type=resource_group_name_type, help='the resource group where the policy will be applied')
-register_cli_argument('policy definition', 'policy_definition_name', arg_type=existing_policy_definition_name_type)
-register_cli_argument('policy definition create', 'name', options_list=('--name', '-n'), help='name of the new policy definition')
-register_cli_argument('policy definition', 'rules',
- help='JSON formatted string or a path to a file or uri with such content',
- type=file_type, completer=FilesCompleter())
-
-with VersionConstraint(ResourceType.MGMT_RESOURCE_POLICY, min_api='2016-12-01') as c:
- from azure.mgmt.resource.policy.models import PolicyMode
- c.register_cli_argument('policy definition', 'params',
- help='JSON formatted string or a path to a file or uri with parameter definitions',
- type=file_type, completer=FilesCompleter())
- c.register_cli_argument('policy definition create', 'mode',
- options_list=('--mode', '-m'),
- help='mode of the new policy definition.',
- **enum_choice_list(PolicyMode))
-
-register_cli_argument('policy definition', 'display_name', help='display name of policy definition')
-register_cli_argument('policy definition', 'description', help='description of policy definition')
-register_cli_argument('policy assignment', 'name', options_list=('--name', '-n'), completer=get_policy_assignment_completion_list, help='name of the assignment')
-register_cli_argument('policy assignment create', 'name', options_list=('--name', '-n'), help='name of the new assignment')
-
-with VersionConstraint(ResourceType.MGMT_RESOURCE_POLICY, min_api='2016-12-01') as c:
- c.register_cli_argument('policy assignment create', 'params', options_list=('--params', '-p'),
- help='JSON formatted string or path to file with parameter values of policy rule')
-
-with VersionConstraint(ResourceType.MGMT_RESOURCE_POLICY, min_api='2017-06-01-preview') as c:
- existing_policy_set_definition_name_type = CliArgumentType(options_list=('--name', '-n'), completer=get_policy_set_completion_list, help='The policy set definition name')
- c.register_cli_argument('policy set-definition', 'policy_set_definition_name', arg_type=existing_policy_set_definition_name_type)
- c.register_cli_argument('policy set-definition create', 'name', options_list=('--name', '-n'), help='name of the new policy set definition')
- c.register_cli_argument('policy set-definition', 'display_name', help='display name of policy set definition')
- c.register_cli_argument('policy set-definition', 'description', help='description of policy set definition')
- c.register_cli_argument('policy set-definition', 'params',
- help='JSON formatted string or a path to a file or uri with parameter definitions',
- type=file_type, completer=FilesCompleter())
- c.register_cli_argument('policy set-definition', 'definitions',
- help='JSON formatted string or a path to a file or uri with such content',
- type=file_type, completer=FilesCompleter())
- c.register_cli_argument('policy assignment create', 'policy_set_definition', options_list=('--policy-set-definition', '-d'),
- help='name or id of the policy set definition.')
- c.register_cli_argument('policy assignment create', 'sku', options_list=('--sku', '-s'),
- help='policy sku.', **enum_choice_list(['free', 'standard']))
- c.register_cli_argument('policy assignment create', 'notscopes', options_list=('--not-scopes'), nargs='+')
-
-register_cli_argument('policy assignment', 'scope', help='scope at which this policy assignment applies to, e.g., /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333, /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333/resourceGroups/myGroup, or /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333/resourceGroups/myGroup/providers/Microsoft.Compute/virtualMachines/myVM')
-register_cli_argument('policy assignment', 'disable_scope_strict_match', action='store_true', help='include assignment either inhertied from parent scope or at child scope')
-register_cli_argument('policy assignment', 'display_name', help='display name of the assignment')
-register_cli_argument('policy assignment', 'policy', help='name or id of the policy definition.', completer=get_policy_completion_list)
-
-register_cli_argument('group', 'tag', tag_type)
-register_cli_argument('group', 'tags', tags_type)
-register_cli_argument('group', 'resource_group_name', resource_group_name_type, options_list=['--name', '--resource-group', '-n', '-g'])
-
-register_cli_argument('group deployment', 'resource_group_name', arg_type=resource_group_name_type, completer=get_resource_group_completion_list)
-register_cli_argument('group deployment', 'deployment_name', options_list=('--name', '-n'), required=True, help='The deployment name.')
-register_cli_argument('group deployment', 'template_file', completer=FilesCompleter(), type=file_type, help="a template file path in the file system")
-register_cli_argument('group deployment', 'template_uri', help='a uri to a remote template file')
-register_cli_argument('group deployment', 'mode', help='Incremental (only add resources to resource group) or Complete (remove extra resources from resource group)', **enum_choice_list(DeploymentMode))
-
-register_cli_argument('group deployment create', 'deployment_name', options_list=('--name', '-n'), required=False,
- validator=process_deployment_create_namespace, help='The deployment name. Default to template file base name')
-register_cli_argument('group deployment', 'parameters', action='append', nargs='+', completer=FilesCompleter())
-
-register_cli_argument('group deployment operation show', 'operation_ids', nargs='+', help='A list of operation ids to show')
-
-register_cli_argument('group export', 'include_comments', action='store_true')
-register_cli_argument('group export', 'include_parameter_default_value', action='store_true')
-register_cli_argument('group create', 'rg_name', options_list=['--name', '--resource-group', '-n', '-g'], help='name of the new resource group', completer=None)
-
-register_cli_argument('tag', 'tag_name', options_list=('--name', '-n'))
-register_cli_argument('tag', 'tag_value', options_list=('--value',))
-
-register_cli_argument('managedapp', 'resource_group_name', arg_type=resource_group_name_type, help='the resource group of the managed application', id_part='resource_group')
-register_cli_argument('managedapp', 'application_name', options_list=('--name', '-n'), id_part='name')
-
-register_cli_argument('managedapp definition', 'resource_group_name', arg_type=resource_group_name_type, help='the resource group of the managed application definition', id_part='resource_group')
-register_cli_argument('managedapp definition', 'application_definition_name', options_list=('--name', '-n'), id_part='name')
-
-register_cli_argument('managedapp create', 'name', options_list=('--name', '-n'), help='name of the new managed application', completer=None)
-register_cli_argument('managedapp create', 'location', help='the managed application location')
-register_cli_argument('managedapp create', 'managedapp_definition_id', options_list=('--managedapp-definition-id', '-d'), help='the full qualified managed application definition id')
-register_cli_argument('managedapp create', 'managedby_resource_group_id', options_list=('--managed-rg-id', '-m'), help='the resource group managed by the managed application')
-register_cli_argument('managedapp create', 'parameters', help='JSON formatted string or a path to a file with such content', type=file_type, completer=FilesCompleter())
-
-register_cli_argument('managedapp definition create', 'lock_level', **enum_choice_list(ApplicationLockLevel))
-register_cli_argument('managedapp definition create', 'authorizations', options_list=('--authorizations', '-a'), nargs='+', help="space separated authorization pairs in a format of :")
-register_cli_argument('managedapp definition create', 'createUiDefinition', options_list=('--create-ui-definition', '-c'), help='JSON formatted string or a path to a file with such content', type=file_type, completer=FilesCompleter())
-register_cli_argument('managedapp definition create', 'mainTemplate', options_list=('--main-template', '-t'), help='JSON formatted string or a path to a file with such content', type=file_type, completer=FilesCompleter())
-
-register_cli_argument('lock', 'parent_resource_path', resource_parent_type)
-register_cli_argument('lock', 'resource_provider_namespace', resource_namespace_type)
-register_cli_argument('lock', 'resource_type', arg_type=resource_type_type, completer=get_resource_types_completion_list)
-register_cli_argument('lock', 'resource_name', options_list=('--resource', '--resource-name'), help='Name or ID of the resource being locked. If an ID is given, other resource arguments should not be given.')
-register_cli_argument('lock', 'resource_group', resource_group_name_type, validator=validate_lock_parameters)
-
-register_cli_argument('resource lock', 'resource_group', resource_group_name_type)
-register_cli_argument('resource lock', 'resource_name', options_list=('--resource', '--resource-name'), help='Name or ID of the resource being locked. If an ID is given, other resource arguments should not be given.', validator=validate_resource_lock)
-
-register_cli_argument('group lock', 'resource_group', resource_group_name_type, validator=validate_group_lock)
-
-register_cli_argument('account lock', 'resource_group', ignore_type, validator=validate_subscription_lock)
-
-for scope in ['account', 'group']:
- register_cli_argument('{} lock'.format(scope), 'resource_provider_namespace', ignore_type)
- register_cli_argument('{} lock'.format(scope), 'parent_resource_path', ignore_type)
- register_cli_argument('{} lock'.format(scope), 'resource_type', ignore_type)
- register_cli_argument('{} lock'.format(scope), 'resource_name', ignore_type)
-
-for command_name in ['lock', 'account lock', 'group lock', 'resource lock']:
- register_cli_argument(command_name, 'lock_name', options_list=('--name', '-n'), help='Name of the lock')
- register_cli_argument(command_name, 'level', options_list=('--lock-type', '-t'), **enum_choice_list([LockLevel.can_not_delete, LockLevel.read_only]))
- register_cli_argument(command_name, 'ids', nargs='+', options_list=('--ids'), help='One or more resource IDs (space delimited). If provided, no other "Resource Id" arguments should be specified.')
- register_cli_argument(command_name, 'notes', help='Notes about this lock.')
+
+# pylint: disable=too-many-locals, too-many-statements, line-too-long
+def load_arguments(self, _):
+ from argcomplete.completers import FilesCompleter
+
+ from azure.mgmt.resource.resources.models import DeploymentMode
+ from azure.mgmt.resource.locks.models import LockLevel
+ from azure.mgmt.resource.managedapplications.models import ApplicationLockLevel
+
+ from azure.cli.core.commands.parameters import (
+ resource_group_name_type, tag_type, tags_type, get_resource_group_completion_list, no_wait_type, file_type,
+ get_enum_type)
+ from azure.cli.core.profiles import ResourceType
+
+ from knack.arguments import ignore_type, CLIArgumentType
+
+ from azure.cli.command_modules.resource.custom import (
+ get_policy_completion_list, get_policy_set_completion_list, get_policy_assignment_completion_list,
+ get_resource_types_completion_list, get_providers_completion_list)
+ from azure.cli.command_modules.resource._validators import (
+ validate_lock_parameters, validate_resource_lock, validate_group_lock, validate_subscription_lock)
+
+ # BASIC PARAMETER CONFIGURATION
+
+ resource_name_type = CLIArgumentType(options_list=('--name', '-n'), help='The resource name. (Ex: myC)')
+ resource_type_type = CLIArgumentType(help="The resource type (Ex: 'resC'). Can also accept namespace/type format (Ex: 'Microsoft.Provider/resC')")
+ resource_namespace_type = CLIArgumentType(options_list=('--namespace',), completer=get_providers_completion_list, help="Provider namespace (Ex: 'Microsoft.Provider')")
+ resource_parent_type = CLIArgumentType(required=False, options_list=['--parent'], help="The parent path (Ex: 'resA/myA/resB/myB')")
+ existing_policy_definition_name_type = CLIArgumentType(options_list=('--name', '-n'), completer=get_policy_completion_list, help='The policy definition name')
+ existing_policy_set_definition_name_type = CLIArgumentType(options_list=('--name', '-n'), completer=get_policy_set_completion_list, help='The policy set definition name')
+ _PROVIDER_HELP_TEXT = 'the resource namespace, aka \'provider\''
+
+ with self.argument_context('resource') as c:
+ c.argument('no_wait', no_wait_type)
+ c.argument('resource_group_name', resource_group_name_type, arg_group='Resource Id')
+ c.ignore('resource_id')
+ c.argument('resource_name', resource_name_type, arg_group='Resource Id')
+ c.argument('api_version', help='The api version of the resource (omit for latest)', required=False, arg_group='Resource Id')
+ c.argument('resource_provider_namespace', resource_namespace_type, arg_group='Resource Id')
+ c.argument('resource_type', arg_type=resource_type_type, completer=get_resource_types_completion_list, arg_group='Resource Id')
+ c.argument('parent_resource_path', resource_parent_type, arg_group='Resource Id')
+ c.argument('tag', tag_type)
+ c.argument('tags', tags_type)
+ c.argument('resource_ids', nargs='+', options_list=['--ids'], help='One or more resource IDs (space delimited). If provided, no other "Resource Id" arguments should be specified.', arg_group='Resource Id')
+
+ with self.argument_context('resource list') as c:
+ c.argument('name', resource_name_type)
+
+ with self.argument_context('resource move') as c:
+ c.argument('ids', nargs='+')
+
+ with self.argument_context('resource invoke-action') as c:
+ c.argument('action', help='The action that will be invoked on the specified resource')
+ c.argument('request_body', help='JSON encoded parameter arguments for the action that will be passed along in the post request body. Use @{file} to load from a file.')
+
+ with self.argument_context('resource create') as c:
+ c.argument('resource_id', options_list=['--id'], help='Resource ID.', action=None)
+ c.argument('properties', options_list=('--properties', '-p'), help='a JSON-formatted string containing resource properties')
+ c.argument('is_full_object', action='store_true', help='Indicates that the properties object includes other options such as location, tags, sku, and/or plan.')
+
+ with self.argument_context('provider') as c:
+ c.ignore('top')
+ c.argument('resource_provider_namespace', options_list=('--namespace', '-n'), completer=get_providers_completion_list, help=_PROVIDER_HELP_TEXT)
+
+ with self.argument_context('provider register') as c:
+ c.argument('wait', action='store_true', help='wait for the registration to finish')
+
+ with self.argument_context('provider unregister') as c:
+ c.argument('wait', action='store_true', help='wait for unregistration to finish')
+
+ with self.argument_context('provider operation') as c:
+ c.argument('api_version', help="The api version of the 'Microsoft.Authorization/providerOperations' resource (omit for latest)")
+
+ with self.argument_context('feature') as c:
+ c.argument('resource_provider_namespace', options_list=('--namespace',), required=True, help=_PROVIDER_HELP_TEXT)
+ c.argument('feature_name', options_list=('--name', '-n'), help='the feature name')
+
+ with self.argument_context('feature list') as c:
+ c.argument('resource_provider_namespace', options_list=('--namespace',), required=False, help=_PROVIDER_HELP_TEXT)
+
+ with self.argument_context('policy') as c:
+ c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group where the policy will be applied')
+
+ with self.argument_context('policy definition', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c:
+ c.argument('policy_definition_name', arg_type=existing_policy_definition_name_type)
+ c.argument('rules', help='JSON formatted string or a path to a file with such content', type=file_type, completer=FilesCompleter())
+ c.argument('display_name', help='display name of policy definition')
+ c.argument('description', help='description of policy definition')
+ c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions', type=file_type, completer=FilesCompleter(), min_api='2016-12-01')
+
+ with self.argument_context('policy definition create', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c:
+ from azure.mgmt.resource.policy.models import PolicyMode
+ c.argument('name', options_list=('--name', '-n'), help='name of the new policy definition')
+ c.argument('mode', arg_type=get_enum_type(PolicyMode), options_list=('--mode', '-m'), help='mode of the new policy definition.', min_api='2016-12-01')
+
+ with self.argument_context('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c:
+ c.argument('name', options_list=('--name', '-n'), completer=get_policy_assignment_completion_list, help='name of the assignment')
+ c.argument('scope', help='scope at which this policy assignment applies to, e.g., /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333, /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333/resourceGroups/myGroup, or /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333/resourceGroups/myGroup/providers/Microsoft.Compute/virtualMachines/myVM')
+ c.argument('disable_scope_strict_match', action='store_true', help='include assignment either inherited from parent scope or at child scope')
+ c.argument('display_name', help='display name of the assignment')
+ c.argument('policy', help='name or id of the policy definition.', completer=get_policy_completion_list)
+
+ with self.argument_context('policy assignment create') as c:
+ c.argument('name', options_list=('--name', '-n'), help='name of the new assignment')
+ c.argument('params', options_list=('--params', '-p'), help='JSON formatted string or path to file with parameter values of policy rule', min_api='2016-12-01')
+
+ with self.argument_context('policy assignment create', resource_type=ResourceType.MGMT_RESOURCE_POLICY, min_api='2017-06-01-preview') as c:
+ c.argument('policy_set_definition', options_list=('--policy-set-definition', '-d'), help='name or id of the policy set definition.')
+ c.argument('sku', options_list=('--sku', '-s'), help='policy sku.', arg_type=get_enum_type(['free', 'standard']))
+ c.argument('notscopes', options_list=('--not-scopes'), nargs='+')
+
+ with self.argument_context('policy set-definition', min_api='2017-06-01-preview', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as c:
+ c.argument('policy_set_definition_name', arg_type=existing_policy_set_definition_name_type)
+ c.argument('name', options_list=('--name', '-n'), help='name of the new policy set definition')
+ c.argument('display_name', help='display name of policy set definition')
+ c.argument('description', help='description of policy set definition')
+ c.argument('params', help='JSON formatted string or a path to a file or uri with parameter definitions', type=file_type, completer=FilesCompleter())
+ c.argument('definitions', help='JSON formatted string or a path to a file or uri with such content', type=file_type, completer=FilesCompleter())
+
+ with self.argument_context('group') as c:
+ c.argument('tag', tag_type)
+ c.argument('tags', tags_type)
+ c.argument('resource_group_name', resource_group_name_type, options_list=['--name', '-n', '--resource-group', '-g'])
+
+ with self.argument_context('group deployment') as c:
+ c.argument('resource_group_name', arg_type=resource_group_name_type, completer=get_resource_group_completion_list)
+ c.argument('deployment_name', options_list=('--name', '-n'), required=True, help='The deployment name.')
+ c.argument('template_file', completer=FilesCompleter(), type=file_type, help="a template file path in the file system")
+ c.argument('template_uri', help='a uri to a remote template file')
+ c.argument('mode', arg_type=get_enum_type(DeploymentMode, default='incremental'), help='Incremental (only add resources to resource group) or Complete (remove extra resources from resource group)')
+ c.argument('parameters', action='append', nargs='+', completer=FilesCompleter())
+
+ with self.argument_context('group deployment create') as c:
+ c.argument('deployment_name', options_list=('--name', '-n'), required=False,
+ help='The deployment name. Default to template file base name')
+
+ with self.argument_context('group deployment operation show') as c:
+ c.argument('operation_ids', nargs='+', help='A list of operation ids to show')
+
+ with self.argument_context('group export') as c:
+ c.argument('include_comments', action='store_true')
+ c.argument('include_parameter_default_value', action='store_true')
+
+ with self.argument_context('group create') as c:
+ c.argument('rg_name', options_list=['--name', '--resource-group', '-n', '-g'], help='name of the new resource group', completer=None)
+
+ with self.argument_context('tag') as c:
+ c.argument('tag_name', options_list=('--name', '-n'))
+ c.argument('tag_value', options_list=('--value',))
+
+ with self.argument_context('lock') as c:
+ c.argument('lock_name', options_list=('--name', '-n'), validator=validate_lock_parameters)
+ c.argument('level', arg_type=get_enum_type(LockLevel), options_list=('--lock-type', '-t'))
+ c.argument('parent_resource_path', resource_parent_type)
+ c.argument('resource_provider_namespace', resource_namespace_type)
+ c.argument('resource_type', arg_type=resource_type_type, completer=get_resource_types_completion_list)
+ c.argument('resource_name', options_list=['--resource', '--resource-name'], help='Name or ID of the resource being locked. If an ID is given, other resource arguments should not be given.')
+ c.argument('ids', nargs='+', options_list=('--ids'), help='One or more resource IDs (space delimited). If provided, no other "Resource Id" arguments should be specified.')
+ c.argument('resource_group', resource_group_name_type, validator=validate_lock_parameters)
+
+ with self.argument_context('resource lock') as c:
+ c.argument('resource_group', resource_group_name_type)
+ c.argument('resource_name', options_list=['--resource', '--resource-name'], help='If an ID is given, other resource arguments should not be given.', validator=validate_resource_lock)
+
+ with self.argument_context('group lock') as c:
+ c.argument('resource_group', resource_group_name_type, validator=validate_group_lock, id_part=None)
+
+ with self.argument_context('group lock create') as c:
+ c.argument('resource_group', required=True)
+
+ with self.argument_context('account lock') as c:
+ c.argument('resource_group', ignore_type, validator=validate_subscription_lock)
+
+ for scope in ['account', 'group']:
+ with self.argument_context('{} lock'.format(scope)) as c:
+ c.ignore('resource_provider_namespace', 'parent_resource_path', 'resource_type', 'resource_name')
+
+ for scope in ['lock', 'account lock', 'group lock', 'resource lock']:
+ with self.argument_context(scope) as c:
+ c.argument('lock_name', options_list=('--name', '-n'), help='Name of the lock')
+ c.argument('level', options_list=('--lock-type', '-t'), arg_type=get_enum_type([LockLevel.can_not_delete, LockLevel.read_only]))
+ c.argument('ids', nargs='+', options_list=('--ids'), help='One or more resource IDs (space delimited). If provided, no other "Resource Id" arguments should be specified.')
+ c.argument('notes', help='Notes about this lock.')
+
+ with self.argument_context('managedapp') as c:
+ c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group of the managed application', id_part='resource_group')
+ c.argument('application_name', options_list=('--name', '-n'), id_part='name')
+
+ with self.argument_context('managedapp definition') as c:
+ c.argument('resource_group_name', arg_type=resource_group_name_type, help='the resource group of the managed application definition', id_part='resource_group')
+ c.argument('application_definition_name', options_list=('--name', '-n'), id_part='name')
+
+ with self.argument_context('managedapp create') as c:
+ c.argument('name', options_list=('--name', '-n'), help='name of the new managed application', completer=None)
+ c.argument('location', help='the managed application location')
+ c.argument('managedapp_definition_id', options_list=('--managedapp-definition-id', '-d'), help='the full qualified managed application definition id')
+ c.argument('managedby_resource_group_id', options_list=('--managed-rg-id', '-m'), help='the resource group managed by the managed application')
+ c.argument('parameters', help='JSON formatted string or a path to a file with such content', type=file_type)
+
+ with self.argument_context('managedapp definition create') as c:
+ c.argument('lock_level', arg_type=get_enum_type(ApplicationLockLevel))
+ c.argument('authorizations', options_list=('--authorizations', '-a'), nargs='+', help="space separated authorization pairs in a format of :")
+ c.argument('createUiDefinition', options_list=('--create-ui-definition', '-c'), help='JSON formatted string or a path to a file with such content', type=file_type)
+ c.argument('mainTemplate', options_list=('--main-template', '-t'), help='JSON formatted string or a path to a file with such content', type=file_type)
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_validators.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_validators.py
index b656f0d5338..bd910cc4592 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_validators.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/_validators.py
@@ -4,17 +4,15 @@
# --------------------------------------------------------------------------------------------
import os
+import re
+from knack.util import CLIError
try:
from urllib.parse import urlparse, urlsplit
except ImportError:
from urlparse import urlparse, urlsplit # pylint: disable=import-error
-from azure.cli.core.util import CLIError
-from .custom import _parse_lock_id
-
-
def _validate_deployment_name(namespace):
# If missing,try come out with a name associated with the template name
if namespace.deployment_name is None:
@@ -89,6 +87,26 @@ def validate_lock_parameters(namespace):
getattr(namespace, 'resource_name', None))
+def _parse_lock_id(id_arg):
+ """
+ Lock ids look very different from regular resource ids, this function uses a regular expression
+ that parses a lock's id and extracts the following parameters if available:
+ -lock_name: the lock's name; always present in a lock id
+ -resource_group: the name of the resource group; present in group/resource level locks
+ -resource_provider_namespace: the resource provider; present in resource level locks
+ -resource_type: the resource type; present in resource level locks
+ -resource_name: the resource name; present in resource level locks
+ -parent_resource_path: the resource's parent path; present in child resources such as subnets
+ """
+ regex = re.compile(
+ '/subscriptions/[^/]*(/resource[gG]roups/(?P[^/]*)'
+ '(/providers/(?P[^/]*)'
+ '(/(?P.*))?/(?P[^/]*)/(?P[^/]*))?)?'
+ '/providers/Microsoft.Authorization/locks/(?P[^/]*)')
+
+ return regex.match(id_arg).groupdict()
+
+
def validate_subscription_lock(namespace):
if getattr(namespace, 'ids', None):
for lock_id in getattr(namespace, 'ids'):
@@ -104,7 +122,7 @@ def validate_group_lock(namespace):
raise CLIError('{} is not a valid group-level lock id.'.format(lock_id))
else:
if not getattr(namespace, 'resource_group', None):
- raise CLIError('Missing required resource_group parameter.')
+ raise CLIError('Missing required --resource-group/-g parameter.')
def validate_resource_lock(namespace):
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py
index e05726217c2..b3e8a19b04c 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/commands.py
@@ -4,58 +4,26 @@
# --------------------------------------------------------------------------------------------
# pylint: disable=line-too-long
+
from collections import OrderedDict
-from azure.cli.core.profiles import ResourceType, supported_api_version
-from azure.cli.core.commands import cli_command
-from azure.cli.core.commands.arm import \
- (cli_generic_update_command, cli_generic_wait_command, deployment_validate_table_format)
from azure.cli.core.util import empty_on_404
+from azure.cli.core.profiles import ResourceType
+from azure.cli.core.sdk.util import CliCommandType
-from azure.cli.command_modules.resource._client_factory import (_resource_client_factory,
- cf_resource_groups,
- cf_providers,
- cf_features,
- cf_tags,
- cf_deployments,
- cf_deployment_operations,
- cf_policy_definitions,
- cf_policy_set_definitions,
- cf_resource_links,
- cf_resource_managedapplications,
- cf_resource_managedappdefinitions)
-
-
-# Subscription lock commands
-cli_command(__name__, 'account lock create', 'azure.cli.command_modules.resource.custom#create_lock')
-cli_command(__name__, 'account lock delete', 'azure.cli.command_modules.resource.custom#delete_lock')
-cli_command(__name__, 'account lock list', 'azure.cli.command_modules.resource.custom#list_locks')
-cli_command(__name__, 'account lock show', 'azure.cli.command_modules.resource.custom#get_lock',
- exception_handler=empty_on_404)
-cli_command(__name__, 'account lock update', 'azure.cli.command_modules.resource.custom#update_lock')
+from azure.cli.command_modules.resource._client_factory import (
+ cf_resource_groups, cf_providers, cf_features, cf_tags, cf_deployments,
+ cf_deployment_operations, cf_policy_definitions, cf_policy_set_definitions, cf_resource_links,
+ cf_resource_managedapplications, cf_resource_managedappdefinitions)
+from azure.cli.command_modules.resource._validators import process_deployment_create_namespace
# Resource group commands
def transform_resource_group_list(result):
- return [OrderedDict([('Name', r['name']), ('Location', r['location']), ('Status', r['properties']['provisioningState'])]) for r in result]
-
-
-cli_command(__name__, 'group delete', 'azure.mgmt.resource.resources.operations.resource_groups_operations#ResourceGroupsOperations.delete', cf_resource_groups, no_wait_param='raw', confirmation=True)
-cli_generic_wait_command(__name__, 'group wait', 'azure.mgmt.resource.resources.operations.resource_groups_operations#ResourceGroupsOperations.get', cf_resource_groups)
-cli_command(__name__, 'group show', 'azure.mgmt.resource.resources.operations.resource_groups_operations#ResourceGroupsOperations.get', cf_resource_groups, exception_handler=empty_on_404)
-cli_command(__name__, 'group exists', 'azure.mgmt.resource.resources.operations.resource_groups_operations#ResourceGroupsOperations.check_existence', cf_resource_groups)
-cli_command(__name__, 'group list', 'azure.cli.command_modules.resource.custom#list_resource_groups', table_transformer=transform_resource_group_list)
-cli_command(__name__, 'group create', 'azure.cli.command_modules.resource.custom#create_resource_group')
-cli_command(__name__, 'group export', 'azure.cli.command_modules.resource.custom#export_group_as_template')
-cli_command(__name__, 'group lock create', 'azure.cli.command_modules.resource.custom#create_lock')
-cli_command(__name__, 'group lock delete', 'azure.cli.command_modules.resource.custom#delete_lock')
-cli_command(__name__, 'group lock list', 'azure.cli.command_modules.resource.custom#list_locks')
-cli_command(__name__, 'group lock show', 'azure.cli.command_modules.resource.custom#get_lock',
- exception_handler=empty_on_404)
-cli_command(__name__, 'group lock update', 'azure.cli.command_modules.resource.custom#update_lock')
+ return [OrderedDict([
+ ('Name', r['name']), ('Location', r['location']), ('Status', r['properties']['provisioningState'])]) for r in result]
-# Resource commands
def transform_resource_list(result):
transformed = []
for r in result:
@@ -68,110 +36,204 @@ def transform_resource_list(result):
return transformed
-cli_command(__name__, 'resource create', 'azure.cli.command_modules.resource.custom#create_resource')
-cli_command(__name__, 'resource delete', 'azure.cli.command_modules.resource.custom#delete_resource')
-cli_command(__name__, 'resource show', 'azure.cli.command_modules.resource.custom#show_resource', exception_handler=empty_on_404)
-cli_command(__name__, 'resource list', 'azure.cli.command_modules.resource.custom#list_resources', table_transformer=transform_resource_list)
-cli_command(__name__, 'resource tag', 'azure.cli.command_modules.resource.custom#tag_resource')
-cli_command(__name__, 'resource move', 'azure.cli.command_modules.resource.custom#move_resource')
-cli_command(__name__, 'resource invoke-action', 'azure.cli.command_modules.resource.custom#invoke_resource_action')
-cli_command(__name__, 'resource lock create', 'azure.cli.command_modules.resource.custom#create_lock')
-cli_command(__name__, 'resource lock delete', 'azure.cli.command_modules.resource.custom#delete_lock')
-cli_command(__name__, 'resource lock list', 'azure.cli.command_modules.resource.custom#list_locks')
-cli_command(__name__, 'resource lock show', 'azure.cli.command_modules.resource.custom#get_lock',
- exception_handler=empty_on_404)
-cli_command(__name__, 'resource lock update', 'azure.cli.command_modules.resource.custom#update_lock')
-
-# Resource provider commands
-cli_command(__name__, 'provider list', 'azure.mgmt.resource.resources.operations.providers_operations#ProvidersOperations.list', cf_providers)
-cli_command(__name__, 'provider show', 'azure.mgmt.resource.resources.operations.providers_operations#ProvidersOperations.get', cf_providers, exception_handler=empty_on_404)
-cli_command(__name__, 'provider register', 'azure.cli.command_modules.resource.custom#register_provider')
-cli_command(__name__, 'provider unregister', 'azure.cli.command_modules.resource.custom#unregister_provider')
-cli_command(__name__, 'provider operation list', 'azure.cli.command_modules.resource.custom#list_provider_operations')
-cli_command(__name__, 'provider operation show', 'azure.cli.command_modules.resource.custom#show_provider_operations')
-
-if supported_api_version(ResourceType.MGMT_RESOURCE_RESOURCES, min_api='2017-05-10'):
- # Resource feature commands
- feature_table_transform = '{Name:name, RegistrationState:properties.state}'
- cli_command(__name__, 'feature list', 'azure.cli.command_modules.resource.custom#list_features', cf_features, table_transformer='[].' + feature_table_transform)
- cli_command(__name__, 'feature show', 'azure.mgmt.resource.features.operations.features_operations#FeaturesOperations.get', cf_features, exception_handler=empty_on_404, table_transformer=feature_table_transform)
- cli_command(__name__, 'feature register', 'azure.cli.command_modules.resource.custom#register_feature', cf_features)
-
-# Tag commands
-cli_command(__name__, 'tag list', 'azure.mgmt.resource.resources.operations.tags_operations#TagsOperations.list', cf_tags)
-cli_command(__name__, 'tag create', 'azure.mgmt.resource.resources.operations.tags_operations#TagsOperations.create_or_update', cf_tags)
-cli_command(__name__, 'tag delete', 'azure.mgmt.resource.resources.operations.tags_operations#TagsOperations.delete', cf_tags)
-cli_command(__name__, 'tag add-value', 'azure.mgmt.resource.resources.operations.tags_operations#TagsOperations.create_or_update_value', cf_tags)
-cli_command(__name__, 'tag remove-value', 'azure.mgmt.resource.resources.operations.tags_operations#TagsOperations.delete_value', cf_tags)
-
-
# Resource group deployment commands
def transform_deployments_list(result):
sort_list = sorted(result, key=lambda deployment: deployment['properties']['timestamp'])
return [OrderedDict([('Name', r['name']), ('Timestamp', r['properties']['timestamp']), ('State', r['properties']['provisioningState'])]) for r in sort_list]
-cli_command(__name__, 'group deployment create', 'azure.cli.command_modules.resource.custom#deploy_arm_template', no_wait_param='no_wait')
-cli_generic_wait_command(__name__, 'group deployment wait', 'azure.mgmt.resource.resources.operations.deployments_operations#DeploymentsOperations.get', cf_deployments)
-if supported_api_version(resource_type=ResourceType.MGMT_RESOURCE_RESOURCES, min_api='2017-05-10'):
- cli_command(__name__, 'group deployment list', 'azure.mgmt.resource.resources.operations.deployments_operations#DeploymentsOperations.list_by_resource_group', cf_deployments, table_transformer=transform_deployments_list)
-else:
- cli_command(__name__, 'group deployment list', 'azure.mgmt.resource.resources.operations.deployments_operations#DeploymentsOperations.list', cf_deployments, table_transformer=transform_deployments_list)
-cli_command(__name__, 'group deployment show', 'azure.mgmt.resource.resources.operations.deployments_operations#DeploymentsOperations.get', cf_deployments, exception_handler=empty_on_404)
-cli_command(__name__, 'group deployment delete', 'azure.mgmt.resource.resources.operations.deployments_operations#DeploymentsOperations.delete', cf_deployments)
-cli_command(__name__, 'group deployment validate', 'azure.cli.command_modules.resource.custom#validate_arm_template', table_transformer=deployment_validate_table_format)
-cli_command(__name__, 'group deployment export', 'azure.cli.command_modules.resource.custom#export_deployment_as_template')
-
-# Resource group deployment operations commands
-cli_command(__name__, 'group deployment operation list', 'azure.mgmt.resource.resources.operations.deployment_operations#DeploymentOperations.list', cf_deployment_operations)
-cli_command(__name__, 'group deployment operation show', 'azure.cli.command_modules.resource.custom#get_deployment_operations', cf_deployment_operations, exception_handler=empty_on_404)
-
-cli_generic_update_command(__name__, 'resource update',
- 'azure.cli.command_modules.resource.custom#show_resource',
- 'azure.cli.command_modules.resource.custom#update_resource')
-
-cli_generic_update_command(__name__, 'group update',
- 'azure.mgmt.resource.resources.operations.resource_groups_operations#ResourceGroupsOperations.get',
- 'azure.mgmt.resource.resources.operations.resource_groups_operations#ResourceGroupsOperations.create_or_update',
- lambda: _resource_client_factory().resource_groups)
-
-cli_command(__name__, 'policy assignment create', 'azure.cli.command_modules.resource.custom#create_policy_assignment')
-cli_command(__name__, 'policy assignment delete', 'azure.cli.command_modules.resource.custom#delete_policy_assignment')
-cli_command(__name__, 'policy assignment list', 'azure.cli.command_modules.resource.custom#list_policy_assignment')
-cli_command(__name__, 'policy assignment show', 'azure.cli.command_modules.resource.custom#show_policy_assignment', exception_handler=empty_on_404)
-
-cli_command(__name__, 'policy definition create', 'azure.cli.command_modules.resource.custom#create_policy_definition')
-cli_command(__name__, 'policy definition delete', 'azure.mgmt.resource.policy.operations#PolicyDefinitionsOperations.delete', cf_policy_definitions)
-cli_command(__name__, 'policy definition list', 'azure.mgmt.resource.policy.operations#PolicyDefinitionsOperations.list', cf_policy_definitions)
-cli_command(__name__, 'policy definition show', 'azure.cli.command_modules.resource.custom#get_policy_definition', exception_handler=empty_on_404)
-cli_command(__name__, 'policy definition update', 'azure.cli.command_modules.resource.custom#update_policy_definition')
-
-if supported_api_version(ResourceType.MGMT_RESOURCE_POLICY, min_api='2017-06-01-preview'):
- cli_command(__name__, 'policy set-definition create', 'azure.cli.command_modules.resource.custom#create_policy_setdefinition')
- cli_command(__name__, 'policy set-definition delete', 'azure.mgmt.resource.policy.operations#PolicySetDefinitionsOperations.delete', cf_policy_set_definitions)
- cli_command(__name__, 'policy set-definition list', 'azure.mgmt.resource.policy.operations#PolicySetDefinitionsOperations.list', cf_policy_set_definitions)
- cli_command(__name__, 'policy set-definition show', 'azure.cli.command_modules.resource.custom#get_policy_setdefinition', exception_handler=empty_on_404)
- cli_command(__name__, 'policy set-definition update', 'azure.cli.command_modules.resource.custom#update_policy_setdefinition')
-
-cli_command(__name__, 'lock create', 'azure.cli.command_modules.resource.custom#create_lock')
-cli_command(__name__, 'lock delete', 'azure.cli.command_modules.resource.custom#delete_lock')
-cli_command(__name__, 'lock list', 'azure.cli.command_modules.resource.custom#list_locks')
-cli_command(__name__, 'lock show', 'azure.cli.command_modules.resource.custom#get_lock', exception_handler=empty_on_404)
-cli_command(__name__, 'lock update', 'azure.cli.command_modules.resource.custom#update_lock')
-
-cli_command(__name__, 'resource link create', 'azure.cli.command_modules.resource.custom#create_resource_link')
-cli_command(__name__, 'resource link delete', 'azure.mgmt.resource.links.operations#ResourceLinksOperations.delete', cf_resource_links)
-cli_command(__name__, 'resource link show', 'azure.mgmt.resource.links.operations#ResourceLinksOperations.get', cf_resource_links, exception_handler=empty_on_404)
-cli_command(__name__, 'resource link list', 'azure.cli.command_modules.resource.custom#list_resource_links')
-cli_command(__name__, 'resource link update', 'azure.cli.command_modules.resource.custom#update_resource_link')
-
-if supported_api_version(ResourceType.MGMT_RESOURCE_RESOURCES, min_api='2017-05-10'):
- cli_command(__name__, 'managedapp create', 'azure.cli.command_modules.resource.custom#create_application')
- cli_command(__name__, 'managedapp delete', 'azure.mgmt.resource.managedapplications.operations#ApplicationsOperations.delete', cf_resource_managedapplications)
- cli_command(__name__, 'managedapp show', 'azure.cli.command_modules.resource.custom#show_application', exception_handler=empty_on_404)
- cli_command(__name__, 'managedapp list', 'azure.cli.command_modules.resource.custom#list_applications')
-
- cli_command(__name__, 'managedapp definition create', 'azure.cli.command_modules.resource.custom#create_applicationdefinition')
- cli_command(__name__, 'managedapp definition delete', 'azure.mgmt.resource.managedapplications.operations#ApplicationDefinitionsOperations.delete', cf_resource_managedappdefinitions)
- cli_command(__name__, 'managedapp definition show', 'azure.cli.command_modules.resource.custom#show_applicationdefinition')
- cli_command(__name__, 'managedapp definition list', 'azure.mgmt.resource.managedapplications.operations#ApplicationDefinitionsOperations.list_by_resource_group', cf_resource_managedappdefinitions, exception_handler=empty_on_404)
+# pylint: disable=too-many-statements
+def load_command_table(self, _):
+ from azure.cli.core.commands.arm import deployment_validate_table_format
+
+ resource_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.resource.custom#{}')
+
+ resource_group_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.resources.operations.resource_groups_operations#ResourceGroupsOperations.{}',
+ client_factory=cf_resource_groups
+ )
+
+ resource_provider_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.resources.operations.providers_operations#ProvidersOperations.{}',
+ client_factory=cf_providers
+ )
+
+ resource_feature_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.features.operations.features_operations#FeaturesOperations.{}',
+ client_factory=cf_features,
+ resource_type=ResourceType.MGMT_RESOURCE_FEATURES
+ )
+
+ resource_tag_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.resources.operations.tags_operations#TagsOperations.{}',
+ client_factory=cf_tags
+ )
+
+ resource_deployment_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.resources.operations.deployments_operations#DeploymentsOperations.{}',
+ client_factory=cf_deployments
+ )
+
+ resource_deployment_operation_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.resources.operations.deployment_operations#DeploymentOperations.{}',
+ client_factory=cf_deployment_operations
+ )
+
+ resource_policy_definitions_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.policy.operations#PolicyDefinitionsOperations.{}',
+ client_factory=cf_policy_definitions,
+ resource_type=ResourceType.MGMT_RESOURCE_POLICY
+ )
+
+ resource_policy_set_definitions_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.policy.operations#PolicySetDefinitionsOperations.{}',
+ client_factory=cf_policy_set_definitions,
+ resource_type=ResourceType.MGMT_RESOURCE_POLICY
+ )
+
+ resource_lock_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.locks.operations#ManagementLocksOperations.{}',
+ resource_type=ResourceType.MGMT_RESOURCE_LOCKS
+ )
+
+ resource_link_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.links.operations#ResourceLinksOperations.{}',
+ client_factory=cf_resource_links,
+ resource_type=ResourceType.MGMT_RESOURCE_LINKS
+ )
+ resource_managedapp_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.managedapplications.operations#ApplicationsOperations.{}',
+ client_factory=cf_resource_managedapplications
+ )
+
+ resource_managedapp_def_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.resource.managedapplications.operations#ApplicationDefinitionsOperations.{}',
+ client_factory=cf_resource_managedappdefinitions
+ )
+
+ with self.command_group('account lock', resource_lock_sdk) as g:
+ g.custom_command('create', 'create_lock')
+ g.custom_command('delete', 'delete_lock')
+ g.custom_command('list', 'list_locks')
+ g.custom_command('show', 'get_lock', exception_handler=empty_on_404)
+ g.custom_command('update', 'update_lock')
+
+ with self.command_group('group', resource_group_sdk) as g:
+ g.command('delete', 'delete', no_wait_param='raw', confirmation=True)
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('exists', 'check_existence')
+ g.custom_command('list', 'list_resource_groups', table_transformer=transform_resource_group_list)
+ g.custom_command('create', 'create_resource_group')
+ g.custom_command('export', 'export_group_as_template')
+ g.generic_update_command('update')
+ g.generic_wait_command('wait')
+
+ with self.command_group('group lock') as g:
+ g.custom_command('create', 'create_lock')
+ g.custom_command('delete', 'delete_lock')
+ g.custom_command('list', 'list_locks')
+ g.custom_command('show', 'get_lock', exception_handler=empty_on_404)
+ g.custom_command('update', 'update_lock')
+
+ with self.command_group('resource', resource_custom) as g:
+ g.custom_command('create', 'create_resource')
+ g.custom_command('delete', 'delete_resource')
+ g.custom_command('show', 'show_resource', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_resources', table_transformer=transform_resource_list)
+ g.custom_command('tag', 'tag_resource')
+ g.custom_command('move', 'move_resource')
+ g.custom_command('invoke-action', 'invoke_resource_action')
+ g.generic_update_command('update', getter_name='show_resource', setter_name='update_resource',
+ client_factory=None)
+
+ with self.command_group('resource lock') as g:
+ g.custom_command('create', 'create_lock')
+ g.custom_command('delete', 'delete_lock')
+ g.custom_command('list', 'list_locks')
+ g.custom_command('show', 'get_lock', exception_handler=empty_on_404)
+ g.custom_command('update', 'update_lock')
+
+ # Resource provider commands
+ with self.command_group('provider', resource_provider_sdk) as g:
+ g.command('list', 'list')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('register', 'register_provider')
+ g.custom_command('unregister', 'unregister_provider')
+ g.custom_command('operation list', 'list_provider_operations')
+ g.custom_command('operation show', 'show_provider_operations')
+
+ # Resource feature commands
+ if self.supported_api_version(min_api='2017-05-10'):
+ feature_table_transform = '{Name:name, RegistrationState:properties.state}'
+ with self.command_group('feature', resource_feature_sdk) as g:
+ g.custom_command('list', 'list_features', client_factory=cf_features, table_transformer='[].' + feature_table_transform)
+ g.command('show', 'get', exception_handler=empty_on_404, table_transformer=feature_table_transform)
+ g.custom_command('register', 'register_feature')
+
+ # Tag commands
+ with self.command_group('tag', resource_tag_sdk) as g:
+ g.command('list', 'list')
+ g.command('create', 'create_or_update')
+ g.command('delete', 'delete')
+ g.command('add-value', 'create_or_update_value')
+ g.command('remove-value', 'delete_value')
+
+ with self.command_group('group deployment', resource_deployment_sdk) as g:
+ g.custom_command('create', 'deploy_arm_template', no_wait_param='no_wait', validator=process_deployment_create_namespace)
+ g.command('list', 'list_by_resource_group', table_transformer=transform_deployments_list, min_api='2017-05-10')
+ g.command('list', 'list', table_transformer=transform_deployments_list, max_api='2016-09-01')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('delete', 'delete')
+ g.custom_command('validate', 'validate_arm_template', table_transformer=deployment_validate_table_format)
+ g.custom_command('export', 'export_deployment_as_template')
+ g.generic_wait_command('wait')
+
+ with self.command_group('group deployment operation', resource_deployment_operation_sdk) as g:
+ g.command('list', 'list')
+ g.custom_command('show', 'get_deployment_operations', client_factory=cf_deployment_operations, exception_handler=empty_on_404)
+
+ with self.command_group('policy assignment', resource_type=ResourceType.MGMT_RESOURCE_POLICY) as g:
+ g.custom_command('create', 'create_policy_assignment')
+ g.custom_command('delete', 'delete_policy_assignment')
+ g.custom_command('list', 'list_policy_assignment')
+ g.custom_command('show', 'show_policy_assignment', exception_handler=empty_on_404)
+
+ with self.command_group('policy definition', resource_policy_definitions_sdk) as g:
+ g.custom_command('create', 'create_policy_definition')
+ g.command('delete', 'delete')
+ g.command('list', 'list')
+ g.custom_command('show', 'get_policy_definition', exception_handler=empty_on_404)
+ g.custom_command('update', 'update_policy_definition')
+
+ with self.command_group('policy set-definition', resource_policy_set_definitions_sdk, min_api='2017-06-01-preview') as g:
+ g.custom_command('create', 'create_policy_setdefinition')
+ g.command('delete', 'delete')
+ g.command('list', 'list')
+ g.custom_command('show', 'get_policy_setdefinition', exception_handler=empty_on_404)
+ g.custom_command('update', 'update_policy_setdefinition')
+
+ with self.command_group('lock') as g:
+ g.custom_command('create', 'create_lock')
+ g.custom_command('delete', 'delete_lock')
+ g.custom_command('list', 'list_locks')
+ g.custom_command('show', 'get_lock', exception_handler=empty_on_404)
+ g.custom_command('update', 'update_lock')
+
+ with self.command_group('resource link', resource_link_sdk) as g:
+ g.custom_command('create', 'create_resource_link')
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_resource_links')
+ g.custom_command('update', 'update_resource_link')
+
+ with self.command_group('managedapp', resource_managedapp_sdk, min_api='2017-05-10') as g:
+ g.custom_command('create', 'create_application')
+ g.command('delete', 'delete')
+ g.custom_command('show', 'show_application', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_applications')
+
+ with self.command_group('managedapp definition', resource_managedapp_def_sdk, min_api='2017-05-10') as g:
+ g.custom_command('create', 'create_applicationdefinition')
+ g.command('delete', 'delete')
+ g.custom_command('show', 'show_applicationdefinition')
+ g.command('list', 'list_by_resource_group', exception_handler=empty_on_404)
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py
index fe89ccb6596..84ffee4d1d5 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/custom.py
@@ -23,240 +23,57 @@
from azure.mgmt.resource.locks.models import ManagementLockObject
from azure.mgmt.resource.links.models import ResourceLinkProperties
-from azure.mgmt.resource.managedapplications.models import Application
-from azure.mgmt.resource.managedapplications.models import Plan
-from azure.mgmt.resource.managedapplications.models import ApplicationDefinition
-from azure.mgmt.resource.managedapplications.models import ApplicationProviderAuthorization
-
from azure.cli.core.parser import IncorrectUsageError
-from azure.cli.core.prompting import prompt, prompt_pass, prompt_t_f, prompt_choice_list, prompt_int, NoTTYException
-from azure.cli.core.util import CLIError, get_file_json, shell_safe_json_parse
-import azure.cli.core.azlogging as azlogging
+from azure.cli.core.util import get_file_json, shell_safe_json_parse
from azure.cli.core.commands.client_factory import get_mgmt_service_client
-from azure.cli.core.profiles import get_sdk, supported_api_version, ResourceType
-
-from msrestazure.tools import is_valid_resource_id, parse_resource_id
-from msrestazure.tools import resource_id as resource_dict_to_id
-
-from ._client_factory import (_resource_client_factory,
- _resource_policy_client_factory,
- _resource_lock_client_factory,
- _resource_links_client_factory,
- _authorization_management_client,
- _resource_managedapps_client_factory)
-
-logger = azlogging.get_az_logger(__name__)
-
-
-def list_resource_groups(tag=None): # pylint: disable=no-self-use
- """ List resource groups, optionally filtered by a tag.
- :param str tag:tag to filter by in 'key[=value]' format
- """
- rcf = _resource_client_factory()
-
- filters = []
- if tag:
- key = list(tag.keys())[0]
- filters.append("tagname eq '{}'".format(key))
- filters.append("tagvalue eq '{}'".format(tag[key]))
-
- filter_text = ' and '.join(filters) if filters else None
-
- groups = rcf.resource_groups.list(filter=filter_text)
- return list(groups)
-
-
-def create_resource_group(rg_name, location, tags=None):
- """ Create a new resource group.
- :param str resource_group_name:the desired resource group name
- :param str location:the resource group location
- :param str tags:tags in 'a=b c' format
- """
- rcf = _resource_client_factory()
-
- ResourceGroup = get_sdk(ResourceType.MGMT_RESOURCE_RESOURCES, 'ResourceGroup', mod='models')
- parameters = ResourceGroup(
- location=location,
- tags=tags
- )
- return rcf.resource_groups.create_or_update(rg_name, parameters)
-
-
-def create_application(resource_group_name,
- application_name, managedby_resource_group_id,
- kind, managedapp_definition_id=None, location=None,
- plan_name=None, plan_publisher=None, plan_product=None,
- plan_version=None, tags=None, parameters=None):
- """ Create a new managed application.
- :param str resource_group_name:the desired resource group name
- :param str application_name:the managed application name
- :param str kind:the managed application kind. can be marketplace or servicecatalog
- :param str plan_name:the managed application package plan name
- :param str plan_publisher:the managed application package plan publisher
- :param str plan_product:the managed application package plan product
- :param str plan_version:the managed application package plan version
- :param str tags:tags in 'a=b c' format
- """
- racf = _resource_managedapps_client_factory()
- rcf = _resource_client_factory()
- if not location:
- location = rcf.resource_groups.get(resource_group_name).location
- application = Application(
- location=location,
- managed_resource_group_id=managedby_resource_group_id,
- kind=kind,
- tags=tags
- )
-
- if kind.lower() == 'servicecatalog':
- if managedapp_definition_id:
- application.application_definition_id = managedapp_definition_id
- else:
- raise CLIError('--managedapp-definition-id is required if kind is ServiceCatalog')
- elif kind.lower() == 'marketplace':
- if (plan_name is None and plan_product is None and
- plan_publisher is None and plan_version is None):
- raise CLIError('--plan-name, --plan-product, --plan-publisher and '
- '--plan-version are all required if kind is MarketPlace')
- else:
- application.plan = Plan(plan_name, plan_publisher, plan_product, plan_version)
-
- applicationParameters = None
-
- if parameters:
- if os.path.exists(parameters):
- applicationParameters = get_file_json(parameters)
- else:
- applicationParameters = shell_safe_json_parse(parameters)
-
- application.parameters = applicationParameters
-
- return racf.applications.create_or_update(resource_group_name, application_name, application)
-
-
-def show_application(resource_group_name=None, application_name=None):
- """ Gets a managed application.
- :param str resource_group_name:the resource group name
- :param str application_name:the managed application name
- """
- racf = _resource_managedapps_client_factory()
- return racf.applications.get(resource_group_name, application_name)
-
-
-def show_applicationdefinition(resource_group_name=None, application_definition_name=None):
- """ Gets a managed application definition.
- :param str resource_group_name:the resource group name
- :param str application_definition_name:the managed application definition name
- """
- racf = _resource_managedapps_client_factory()
- return racf.application_definitions.get(resource_group_name, application_definition_name)
-
-
-def create_applicationdefinition(resource_group_name,
- application_definition_name,
- lock_level, authorizations,
- description, display_name,
- package_file_uri=None, create_ui_definition=None,
- main_template=None, location=None, tags=None):
- """ Create a new managed application definition.
- :param str resource_group_name:the desired resource group name
- :param str application_definition_name:the managed application definition name
- :param str description:the managed application definition description
- :param str display_name:the managed application definition display name
- :param str package_file_uri:the managed application definition package file uri
- :param str create_ui_definition:the managed application definition create ui definition
- :param str main_template:the managed application definition main template
- :param str tags:tags in 'a=b c' format
- """
- if(not package_file_uri and not create_ui_definition and
- not main_template):
- raise CLIError('usage error: --package-file-uri | '
- '--create-ui-definition --main-template')
- elif package_file_uri:
- if create_ui_definition or main_template:
- raise CLIError('usage error: must not specify '
- '--create-ui-definition --main-template')
- elif not package_file_uri:
- if not create_ui_definition or not main_template:
- raise CLIError('usage error: must specify '
- '--create-ui-definition --main-template')
- racf = _resource_managedapps_client_factory()
- rcf = _resource_client_factory()
- if not location:
- location = rcf.resource_groups.get(resource_group_name).location
- authorizations = authorizations or []
- applicationAuthList = []
-
- for name_value in authorizations:
- # split at the first ':', neither principalId nor roldeDefinitionId should have a ':'
- principalId, roleDefinitionId = name_value.split(':', 1)
- applicationAuth = ApplicationProviderAuthorization(principalId, roleDefinitionId)
- applicationAuthList.append(applicationAuth)
-
- applicationDef = ApplicationDefinition(lock_level, applicationAuthList, package_file_uri)
- applicationDef.display_name = display_name
- applicationDef.description = description
- applicationDef.location = location
- applicationDef.package_file_uri = package_file_uri
- applicationDef.create_ui_definition = create_ui_definition
- applicationDef.main_template = main_template
- applicationDef.tags = tags
+from azure.cli.core.profiles import ResourceType, get_sdk
- return racf.application_definitions.create_or_update(resource_group_name,
- application_definition_name, applicationDef)
+from azure.cli.command_modules.resource._client_factory import (
+ _resource_client_factory, _resource_policy_client_factory, _resource_lock_client_factory,
+ _resource_links_client_factory, _authorization_management_client, _resource_managedapps_client_factory)
+from azure.cli.command_modules.resource._validators import _parse_lock_id
+from knack.log import get_logger
+from knack.prompting import prompt, prompt_pass, prompt_t_f, prompt_choice_list, prompt_int, NoTTYException
+from knack.util import CLIError
-def list_applications(resource_group_name=None):
- racf = _resource_managedapps_client_factory()
+from msrestazure.tools import is_valid_resource_id, parse_resource_id, resource_id as resource_dict_to_id
- if resource_group_name:
- applications = racf.applications.list_by_resource_group(resource_group_name)
- else:
- applications = racf.applications.list_by_subscription()
- return list(applications)
+logger = get_logger(__name__)
-def export_group_as_template(
- resource_group_name, include_comments=False, include_parameter_default_value=False):
- """Captures a resource group as a template.
- :param str resource_group_name:the name of the resoruce group.
- :param bool include_comments:export template with comments.
- :param bool include_parameter_default_value: export template parameter with default value.
- """
- rcf = _resource_client_factory()
+def get_policy_completion_list(cli_ctx, prefix, **kwargs): # pylint: disable=unused-argument
+ policy_client = _resource_policy_client_factory(cli_ctx)
+ result = policy_client.policy_definitions.list()
+ return [i.name for i in result]
- export_options = []
- if include_comments:
- export_options.append('IncludeComments')
- if include_parameter_default_value:
- export_options.append('IncludeParameterDefaultValue')
- options = ','.join(export_options) if export_options else None
+def get_policy_set_completion_list(cli_ctx, prefix, **kwargs): # pylint: disable=unused-argument
+ policy_client = _resource_policy_client_factory(cli_ctx)
+ result = policy_client.policy_set_definitions.list()
+ return [i.name for i in result]
- result = rcf.resource_groups.export_template(resource_group_name, ['*'], options=options)
- # pylint: disable=no-member
- # On error, server still returns 200, with details in the error attribute
- if result.error:
- error = result.error
- if (hasattr(error, 'details') and error.details and
- hasattr(error.details[0], 'message')):
- error = error.details[0].message
- raise CLIError(error)
- print(json.dumps(result.template, indent=2))
+def get_policy_assignment_completion_list(cli_ctx, prefix, **kwargs): # pylint: disable=unused-argument
+ policy_client = _resource_policy_client_factory(cli_ctx)
+ result = policy_client.policy_assignments.list()
+ return [i.name for i in result]
-def deploy_arm_template(resource_group_name,
- template_file=None, template_uri=None, deployment_name=None,
- parameters=None, mode='incremental', no_wait=False):
- return _deploy_arm_template_core(resource_group_name, template_file, template_uri,
- deployment_name, parameters, mode, no_wait=no_wait)
+def get_providers_completion_list(cli_ctx, prefix, **kwargs): # pylint: disable=unused-argument
+ rcf = _resource_client_factory(cli_ctx)
+ result = rcf.providers.list()
+ return [r.namespace for r in result]
-def validate_arm_template(resource_group_name, template_file=None, template_uri=None,
- parameters=None, mode='incremental'):
- return _deploy_arm_template_core(resource_group_name, template_file, template_uri,
- 'deployment_dry_run', parameters, mode, validate_only=True)
+def get_resource_types_completion_list(cli_ctx, prefix, **kwargs): # pylint: disable=unused-argument
+ rcf = _resource_client_factory(cli_ctx)
+ result = rcf.providers.list()
+ types = []
+ for p in list(result):
+ for r in p.resource_types:
+ types.append(p.namespace + '/' + r.resource_type)
+ return types
def _process_parameters(template_param_defs, parameter_lists):
@@ -431,14 +248,12 @@ def _urlretrieve(url):
return req.read()
-def _deploy_arm_template_core(resource_group_name, # pylint: disable=too-many-arguments
+def _deploy_arm_template_core(cli_ctx, resource_group_name, # pylint: disable=too-many-arguments
template_file=None, template_uri=None, deployment_name=None,
- parameters=None, mode='incremental', validate_only=False,
+ parameters=None, mode=None, validate_only=False,
no_wait=False):
- DeploymentProperties, TemplateLink = get_sdk(ResourceType.MGMT_RESOURCE_RESOURCES,
- 'DeploymentProperties',
- 'TemplateLink',
- mod='models')
+ DeploymentProperties, TemplateLink = get_sdk(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES,
+ 'DeploymentProperties', 'TemplateLink', mod='models')
template = None
template_link = None
template_obj = None
@@ -446,37 +261,417 @@ def _deploy_arm_template_core(resource_group_name, # pylint: disable=too-many-a
template_link = TemplateLink(uri=template_uri)
template_obj = shell_safe_json_parse(_urlretrieve(template_uri).decode('utf-8'), preserve_order=True)
else:
- template = get_file_json(template_file, preserve_order=True)
- template_obj = template
+ template = get_file_json(template_file, preserve_order=True)
+ template_obj = template
+
+ template_param_defs = template_obj.get('parameters', {})
+ template_obj['resources'] = template_obj.get('resources', [])
+ parameters = _process_parameters(template_param_defs, parameters) or {}
+ parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters)
+
+ template = json.loads(json.dumps(template))
+ parameters = json.loads(json.dumps(parameters))
+
+ properties = DeploymentProperties(template=template, template_link=template_link,
+ parameters=parameters, mode=mode)
+
+ smc = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
+ if validate_only:
+ return smc.deployments.validate(resource_group_name, deployment_name, properties, raw=no_wait)
+ return smc.deployments.create_or_update(resource_group_name, deployment_name, properties, raw=no_wait)
+
+
+def _list_resources_odata_filter_builder(resource_group_name=None, resource_provider_namespace=None,
+ resource_type=None, name=None, tag=None, location=None):
+ """Build up OData filter string from parameters """
+ filters = []
+
+ if resource_group_name:
+ filters.append("resourceGroup eq '{}'".format(resource_group_name))
+
+ if name:
+ filters.append("name eq '{}'".format(name))
+
+ if location:
+ filters.append("location eq '{}'".format(location))
+
+ if resource_type:
+ if resource_provider_namespace:
+ f = "'{}/{}'".format(resource_provider_namespace, resource_type)
+ else:
+ if not re.match('[^/]+/[^/]+', resource_type):
+ raise CLIError(
+ 'Malformed resource-type: '
+ '--resource-type=/ expected.')
+ # assume resource_type is /. The worst is to get a server error
+ f = "'{}'".format(resource_type)
+ filters.append("resourceType eq " + f)
+ else:
+ if resource_provider_namespace:
+ raise CLIError('--namespace also requires --resource-type')
+
+ if tag:
+ if name or location:
+ raise IncorrectUsageError('you cannot use the tag filter with other filters')
+
+ tag_name = list(tag.keys())[0] if isinstance(tag, dict) else tag
+ tag_value = tag[tag_name] if isinstance(tag, dict) else ''
+ if tag_name:
+ if tag_name[-1] == '*':
+ filters.append("startswith(tagname, '%s')" % tag_name[0:-1])
+ else:
+ filters.append("tagname eq '%s'" % tag_name)
+ if tag_value != '':
+ filters.append("tagvalue eq '%s'" % tag_value)
+ return ' and '.join(filters)
+
+
+def _get_auth_provider_latest_api_version(cli_ctx):
+ rcf = _resource_client_factory(cli_ctx)
+ api_version = _ResourceUtils.resolve_api_version(rcf, 'Microsoft.Authorization', None, 'providerOperations')
+ return api_version
+
+
+def _update_provider(cli_ctx, namespace, registering, wait):
+ import time
+ rcf = _resource_client_factory(cli_ctx)
+ if registering:
+ rcf.providers.register(namespace)
+ else:
+ rcf.providers.unregister(namespace)
+
+ if wait:
+ while True:
+ time.sleep(10)
+ rp_info = rcf.providers.get(namespace)
+ if rp_info.registration_state == ('Registered' if registering else 'Unregistered'):
+ break
+ else:
+ action = 'Registering' if registering else 'Unregistering'
+ msg_template = '%s is still on-going. You can monitor using \'az provider show -n %s\''
+ logger.warning(msg_template, action, namespace)
+
+
+def _build_policy_scope(subscription_id, resource_group_name, scope):
+ subscription_scope = '/subscriptions/' + subscription_id
+ if scope:
+ if resource_group_name:
+ err = "Resource group '{}' is redundant because 'scope' is supplied"
+ raise CLIError(err.format(resource_group_name))
+ elif resource_group_name:
+ scope = subscription_scope + '/resourceGroups/' + resource_group_name
+ else:
+ scope = subscription_scope
+ return scope
+
+
+def _resolve_policy_id(cmd, policy, policy_set_definition, client):
+ policy_id = policy or policy_set_definition
+ if not is_valid_resource_id(policy_id):
+ if policy:
+ policy_def = _get_custom_or_builtin_policy(cmd, client, policy)
+ policy_id = policy_def.id
+ else:
+ policy_set_def = _get_custom_or_builtin_policy(cmd, client, policy_set_definition, True)
+ policy_id = policy_set_def.id
+ return policy_id
+
+
+def _get_custom_or_builtin_policy(cmd, client, name, for_policy_set=False):
+ from msrest.exceptions import HttpOperationError
+ from msrestazure.azure_exceptions import CloudError
+ ErrorResponseException = cmd.get_models('ErrorResponseException')
+ policy_operations = client.policy_set_definitions if for_policy_set else client.policy_definitions
+ try:
+ return policy_operations.get(name)
+ except (CloudError, HttpOperationError, ErrorResponseException) as ex:
+ status_code = ex.status_code if isinstance(ex, CloudError) else ex.response.status_code
+ if status_code == 404:
+ return policy_operations.get_built_in(name)
+ raise
+
+
+def _load_file_string_or_uri(file_or_string_or_uri, name, required=True):
+ if file_or_string_or_uri is None:
+ if required:
+ raise CLIError('One of --{} or --{}-uri is required'.format(name, name))
+ return None
+ url = urlparse(file_or_string_or_uri)
+ if url.scheme == 'http' or url.scheme == 'https' or url.scheme == 'file':
+ response = urlopen(file_or_string_or_uri)
+ reader = codecs.getreader('utf-8')
+ result = json.load(reader(response))
+ response.close()
+ return result
+ if os.path.exists(file_or_string_or_uri):
+ return get_file_json(file_or_string_or_uri)
+ return shell_safe_json_parse(file_or_string_or_uri)
+
+
+def _call_subscription_get(cmd, lock_client, *args):
+ if cmd.supported_api_version(max_api='2015-01-01'):
+ return lock_client.management_locks.get(*args)
+ return lock_client.management_locks.get_at_subscription_level(*args)
+
+
+def _extract_lock_params(resource_group_name, resource_provider_namespace,
+ resource_type, resource_name):
+ if resource_group_name is None:
+ return (None, None, None, None)
+
+ if resource_name is None:
+ return (resource_group_name, None, None, None)
+
+ parts = resource_type.split('/', 2)
+ if resource_provider_namespace is None and len(parts) == 2:
+ resource_provider_namespace = parts[0]
+ resource_type = parts[1]
+ return (resource_group_name, resource_name, resource_provider_namespace, resource_type)
+
+
+def _update_lock_parameters(parameters, level, notes):
+ if level is not None:
+ parameters.level = level
+ if notes is not None:
+ parameters.notes = notes
+
+
+def _validate_resource_inputs(resource_group_name, resource_provider_namespace,
+ resource_type, resource_name):
+ if resource_group_name is None:
+ raise CLIError('--resource-group/-g is required.')
+ if resource_type is None:
+ raise CLIError('--resource-type is required')
+ if resource_name is None:
+ raise CLIError('--name/-n is required')
+ if resource_provider_namespace is None:
+ raise CLIError('--namespace is required')
+
+
+# region Custom Commands
+
+def list_resource_groups(cmd, tag=None): # pylint: disable=no-self-use
+ """ List resource groups, optionally filtered by a tag.
+ :param str tag:tag to filter by in 'key[=value]' format
+ """
+ rcf = _resource_client_factory(cmd.cli_ctx)
+
+ filters = []
+ if tag:
+ key = list(tag.keys())[0]
+ filters.append("tagname eq '{}'".format(key))
+ filters.append("tagvalue eq '{}'".format(tag[key]))
+
+ filter_text = ' and '.join(filters) if filters else None
+
+ groups = rcf.resource_groups.list(filter=filter_text)
+ return list(groups)
+
+
+def create_resource_group(cmd, rg_name, location, tags=None):
+ """ Create a new resource group.
+ :param str resource_group_name:the desired resource group name
+ :param str location:the resource group location
+ :param str tags:tags in 'a=b c' format
+ """
+ rcf = _resource_client_factory(cmd.cli_ctx)
+
+ ResourceGroup = cmd.get_models('ResourceGroup')
+ parameters = ResourceGroup(
+ location=location,
+ tags=tags
+ )
+ return rcf.resource_groups.create_or_update(rg_name, parameters)
+
+
+def export_group_as_template(
+ cmd, resource_group_name, include_comments=False, include_parameter_default_value=False):
+ """Captures a resource group as a template.
+ :param str resource_group_name:the name of the resoruce group.
+ :param bool include_comments:export template with comments.
+ :param bool include_parameter_default_value: export template parameter with default value.
+ """
+ rcf = _resource_client_factory(cmd.cli_ctx)
+
+ export_options = []
+ if include_comments:
+ export_options.append('IncludeComments')
+ if include_parameter_default_value:
+ export_options.append('IncludeParameterDefaultValue')
+
+ options = ','.join(export_options) if export_options else None
+
+ result = rcf.resource_groups.export_template(resource_group_name, ['*'], options=options)
+ # pylint: disable=no-member
+ # On error, server still returns 200, with details in the error attribute
+ if result.error:
+ error = result.error
+ if (hasattr(error, 'details') and error.details and
+ hasattr(error.details[0], 'message')):
+ error = error.details[0].message
+ raise CLIError(error)
+
+ print(json.dumps(result.template, indent=2))
+
+
+def create_application(cmd, resource_group_name,
+ application_name, managedby_resource_group_id,
+ kind, managedapp_definition_id=None, location=None,
+ plan_name=None, plan_publisher=None, plan_product=None,
+ plan_version=None, tags=None, parameters=None):
+ """ Create a new managed application.
+ :param str resource_group_name:the desired resource group name
+ :param str application_name:the managed application name
+ :param str kind:the managed application kind. can be marketplace or servicecatalog
+ :param str plan_name:the managed application package plan name
+ :param str plan_publisher:the managed application package plan publisher
+ :param str plan_product:the managed application package plan product
+ :param str plan_version:the managed application package plan version
+ :param str tags:tags in 'a=b c' format
+ """
+ from azure.mgmt.resource.managedapplications.models import Application, Plan
+ racf = _resource_managedapps_client_factory(cmd.cli_ctx)
+ rcf = _resource_client_factory(cmd.cli_ctx)
+ if not location:
+ location = rcf.resource_groups.get(resource_group_name).location
+ application = Application(
+ location=location,
+ managed_resource_group_id=managedby_resource_group_id,
+ kind=kind,
+ tags=tags
+ )
+
+ if kind.lower() == 'servicecatalog':
+ if managedapp_definition_id:
+ application.application_definition_id = managedapp_definition_id
+ else:
+ raise CLIError('--managedapp-definition-id is required if kind is ServiceCatalog')
+ elif kind.lower() == 'marketplace':
+ if (plan_name is None and plan_product is None and
+ plan_publisher is None and plan_version is None):
+ raise CLIError('--plan-name, --plan-product, --plan-publisher and \
+ --plan-version are all required if kind is MarketPlace')
+ else:
+ application.plan = Plan(plan_name, plan_publisher, plan_product, plan_version)
+
+ applicationParameters = None
+
+ if parameters:
+ if os.path.exists(parameters):
+ applicationParameters = get_file_json(parameters)
+ else:
+ applicationParameters = shell_safe_json_parse(parameters)
+
+ application.parameters = applicationParameters
+
+ return racf.applications.create_or_update(resource_group_name, application_name, application)
+
+
+def show_application(cmd, resource_group_name=None, application_name=None):
+ """ Gets a managed application.
+ :param str resource_group_name:the resource group name
+ :param str application_name:the managed application name
+ """
+ racf = _resource_managedapps_client_factory(cmd.cli_ctx)
+ return racf.applications.get(resource_group_name, application_name)
+
+
+def show_applicationdefinition(cmd, resource_group_name=None, application_definition_name=None):
+ """ Gets a managed application definition.
+ :param str resource_group_name:the resource group name
+ :param str application_definition_name:the managed application definition name
+ """
+ racf = _resource_managedapps_client_factory(cmd.cli_ctx)
+ return racf.application_definitions.get(resource_group_name, application_definition_name)
+
+
+def create_applicationdefinition(cmd, resource_group_name,
+ application_definition_name,
+ lock_level, authorizations,
+ description, display_name,
+ package_file_uri=None, create_ui_definition=None,
+ main_template=None, location=None, tags=None):
+ """ Create a new managed application definition.
+ :param str resource_group_name:the desired resource group name
+ :param str application_definition_name:the managed application definition name
+ :param str description:the managed application definition description
+ :param str display_name:the managed application definition display name
+ :param str package_file_uri:the managed application definition package file uri
+ :param str create_ui_definition:the managed application definition create ui definition
+ :param str main_template:the managed application definition main template
+ :param str tags:tags in 'a=b c' format
+ """
+ from azure.mgmt.resource.managedapplications.models import ApplicationDefinition, ApplicationProviderAuthorization
+ if not package_file_uri and not create_ui_definition and not main_template:
+ raise CLIError('usage error: --package-file-uri | --create-ui-definition --main-template')
+ elif package_file_uri:
+ if create_ui_definition or main_template:
+ raise CLIError('usage error: must not specify \
+ --create-ui-definition --main-template')
+ elif not package_file_uri:
+ if not create_ui_definition or not main_template:
+ raise CLIError('usage error: must specify \
+ --create-ui-definition --main-template')
+ racf = _resource_managedapps_client_factory(cmd.cli_ctx)
+ rcf = _resource_client_factory(cmd.cli_ctx)
+ if not location:
+ location = rcf.resource_groups.get(resource_group_name).location
+ authorizations = authorizations or []
+ applicationAuthList = []
+
+ for name_value in authorizations:
+ # split at the first ':', neither principalId nor roldeDefinitionId should have a ':'
+ principalId, roleDefinitionId = name_value.split(':', 1)
+ applicationAuth = ApplicationProviderAuthorization(principalId, roleDefinitionId)
+ applicationAuthList.append(applicationAuth)
+
+ applicationDef = ApplicationDefinition(lock_level, applicationAuthList, package_file_uri)
+ applicationDef.display_name = display_name
+ applicationDef.description = description
+ applicationDef.location = location
+ applicationDef.package_file_uri = package_file_uri
+ applicationDef.create_ui_definition = create_ui_definition
+ applicationDef.main_template = main_template
+ applicationDef.tags = tags
+
+ return racf.application_definitions.create_or_update(resource_group_name,
+ application_definition_name, applicationDef)
+
+
+def list_applications(cmd, resource_group_name=None):
+ racf = _resource_managedapps_client_factory(cmd.cli_ctx)
+
+ if resource_group_name:
+ applications = racf.applications.list_by_resource_group(resource_group_name)
+ else:
+ applications = racf.applications.list_by_subscription()
+ return list(applications)
- template_param_defs = template_obj.get('parameters', {})
- template_obj['resources'] = template_obj.get('resources', [])
- parameters = _process_parameters(template_param_defs, parameters) or {}
- parameters = _get_missing_parameters(parameters, template_obj, _prompt_for_parameters)
- template = json.loads(json.dumps(template))
- parameters = json.loads(json.dumps(parameters))
+def deploy_arm_template(cmd, resource_group_name,
+ template_file=None, template_uri=None, deployment_name=None,
+ parameters=None, mode=None, no_wait=False):
+ return _deploy_arm_template_core(cmd.cli_ctx, resource_group_name, template_file, template_uri,
+ deployment_name, parameters, mode, no_wait=no_wait)
- properties = DeploymentProperties(template=template, template_link=template_link,
- parameters=parameters, mode=mode)
- smc = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
- if validate_only:
- return smc.deployments.validate(resource_group_name, deployment_name, properties, raw=no_wait)
- return smc.deployments.create_or_update(resource_group_name, deployment_name, properties, raw=no_wait)
+def validate_arm_template(cmd, resource_group_name, template_file=None, template_uri=None,
+ parameters=None, mode=None):
+ return _deploy_arm_template_core(cmd.cli_ctx, resource_group_name, template_file, template_uri,
+ 'deployment_dry_run', parameters, mode, validate_only=True)
-def export_deployment_as_template(resource_group_name, deployment_name):
- smc = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
+def export_deployment_as_template(cmd, resource_group_name, deployment_name):
+ smc = _resource_client_factory(cmd.cli_ctx)
result = smc.deployments.export_template(resource_group_name, deployment_name)
print(json.dumps(result.template, indent=2)) # pylint: disable=no-member
-def create_resource(properties,
+def create_resource(cmd, properties,
resource_group_name=None, resource_provider_namespace=None,
parent_resource_path=None, resource_type=None, resource_name=None,
resource_id=None, api_version=None, location=None, is_full_object=False):
- res = _ResourceUtils(resource_group_name, resource_provider_namespace,
+ res = _ResourceUtils(cmd.cli_ctx, resource_group_name, resource_provider_namespace,
parent_resource_path, resource_type, resource_name,
resource_id, api_version)
return res.create_resource(properties, location, is_full_object)
@@ -496,8 +691,9 @@ def _get_parsed_resource_ids(resource_ids):
return (parse_resource_id(rid) for rid in resource_ids)
-def _get_rsrc_util_from_parsed_id(parsed_id, api_version):
- return _ResourceUtils(parsed_id['resource_group'],
+def _get_rsrc_util_from_parsed_id(cli_ctx, parsed_id, api_version):
+ return _ResourceUtils(cli_ctx,
+ parsed_id['resource_group'],
parsed_id['resource_namespace'],
parsed_id['resource_parent'],
parsed_id['resource_type'],
@@ -527,7 +723,8 @@ def _single_or_collection(obj, default=None):
return obj
-def show_resource(resource_ids=None, resource_group_name=None,
+# pylint: unused-argument
+def show_resource(cmd, resource_ids=None, resource_group_name=None,
resource_provider_namespace=None, parent_resource_path=None, resource_type=None,
resource_name=None, api_version=None):
parsed_ids = _get_parsed_resource_ids(resource_ids) or [_create_parsed_id(resource_group_name,
@@ -537,10 +734,11 @@ def show_resource(resource_ids=None, resource_group_name=None,
resource_name)]
return _single_or_collection(
- [_get_rsrc_util_from_parsed_id(id_dict, api_version).get_resource() for id_dict in parsed_ids])
+ [_get_rsrc_util_from_parsed_id(cmd.cli_ctx, id_dict, api_version).get_resource() for id_dict in parsed_ids])
-def delete_resource(resource_ids=None, resource_group_name=None,
+# pylint: disable=unused-argument
+def delete_resource(cmd, resource_ids=None, resource_group_name=None,
resource_provider_namespace=None, parent_resource_path=None, resource_type=None,
resource_name=None, api_version=None):
"""
@@ -553,7 +751,8 @@ def delete_resource(resource_ids=None, resource_group_name=None,
parent_resource_path,
resource_type,
resource_name)]
- to_be_deleted = [(_get_rsrc_util_from_parsed_id(id_dict, api_version), id_dict) for id_dict in parsed_ids]
+ to_be_deleted = [(_get_rsrc_util_from_parsed_id(cmd.cli_ctx, id_dict, api_version), id_dict)
+ for id_dict in parsed_ids]
results = []
from msrestazure.azure_exceptions import CloudError
@@ -565,7 +764,7 @@ def delete_resource(resource_ids=None, resource_group_name=None,
try:
operations.append(rsrc_utils.delete())
resource = resource_dict_to_id(**id_dict) if id_dict.get("subscription") else resource_name
- logger.debug("deleting", resource)
+ logger.debug("deleting %s", resource)
except CloudError as e:
# request to delete failed, add parsed id dict back to queue
id_dict['exception'] = str(e)
@@ -590,7 +789,8 @@ def delete_resource(resource_ids=None, resource_group_name=None,
return _single_or_collection(results)
-def update_resource(parameters, resource_ids=None,
+# pylint: unused-argument
+def update_resource(cmd, parameters, resource_ids=None,
resource_group_name=None, resource_provider_namespace=None,
parent_resource_path=None, resource_type=None, resource_name=None, api_version=None):
parsed_ids = _get_parsed_resource_ids(resource_ids) or [_create_parsed_id(resource_group_name,
@@ -600,10 +800,11 @@ def update_resource(parameters, resource_ids=None,
resource_name)]
return _single_or_collection(
- [_get_rsrc_util_from_parsed_id(id_dict, api_version).update(parameters) for id_dict in parsed_ids])
+ [_get_rsrc_util_from_parsed_id(cmd.cli_ctx, id_dict, api_version).update(parameters) for id_dict in parsed_ids])
-def tag_resource(tags, resource_ids=None,
+# pylint: unused-argument
+def tag_resource(cmd, tags, resource_ids=None,
resource_group_name=None, resource_provider_namespace=None,
parent_resource_path=None, resource_type=None, resource_name=None, api_version=None):
""" Updates the tags on an existing resource. To clear tags, specify the --tag option
@@ -615,10 +816,11 @@ def tag_resource(tags, resource_ids=None,
resource_name)]
return _single_or_collection(
- [_get_rsrc_util_from_parsed_id(id_dict, api_version).tag(tags) for id_dict in parsed_ids])
+ [_get_rsrc_util_from_parsed_id(cmd.cli_ctx, id_dict, api_version).tag(tags) for id_dict in parsed_ids])
-def invoke_resource_action(action, request_body=None, resource_ids=None,
+# pylint: unused-argument
+def invoke_resource_action(cmd, action, request_body=None, resource_ids=None,
resource_group_name=None, resource_provider_namespace=None,
parent_resource_path=None, resource_type=None, resource_name=None,
api_version=None):
@@ -629,13 +831,12 @@ def invoke_resource_action(action, request_body=None, resource_ids=None,
resource_type,
resource_name)]
- return _single_or_collection([_get_rsrc_util_from_parsed_id(id_dict, api_version)
+ return _single_or_collection([_get_rsrc_util_from_parsed_id(cmd.cli_ctx, id_dict, api_version)
.invoke_action(action, request_body) for id_dict in parsed_ids])
def get_deployment_operations(client, resource_group_name, deployment_name, operation_ids):
- """get a deployment's operation.
- """
+ """get a deployment's operation."""
result = []
for op_id in operation_ids:
dep = client.get(resource_group_name, deployment_name, op_id)
@@ -643,10 +844,10 @@ def get_deployment_operations(client, resource_group_name, deployment_name, oper
return result
-def list_resources(resource_group_name=None,
+def list_resources(cmd, resource_group_name=None,
resource_provider_namespace=None, resource_type=None, name=None, tag=None,
location=None):
- rcf = _resource_client_factory()
+ rcf = _resource_client_factory(cmd.cli_ctx)
if resource_group_name is not None:
rcf.resource_groups.get(resource_group_name)
@@ -658,117 +859,28 @@ def list_resources(resource_group_name=None,
return list(resources)
-def _list_resources_odata_filter_builder(resource_group_name=None,
- resource_provider_namespace=None,
- resource_type=None, name=None, tag=None, location=None):
- """Build up OData filter string from parameters
- """
- filters = []
-
- if resource_group_name:
- filters.append("resourceGroup eq '{}'".format(resource_group_name))
-
- if name:
- filters.append("name eq '{}'".format(name))
-
- if location:
- filters.append("location eq '{}'".format(location))
-
- if resource_type:
- if resource_provider_namespace:
- f = "'{}/{}'".format(resource_provider_namespace, resource_type)
- else:
- if not re.match('[^/]+/[^/]+', resource_type):
- raise CLIError(
- 'Malformed resource-type: '
- '--resource-type=/ expected.')
- # assume resource_type is /. The worst is to get a server error
- f = "'{}'".format(resource_type)
- filters.append("resourceType eq " + f)
- else:
- if resource_provider_namespace:
- raise CLIError('--namespace also requires --resource-type')
-
- if tag:
- if name or location:
- raise IncorrectUsageError('you cannot use the tag filter with other filters')
-
- tag_name = list(tag.keys())[0] if isinstance(tag, dict) else tag
- tag_value = tag[tag_name] if isinstance(tag, dict) else ''
- if tag_name:
- if tag_name[-1] == '*':
- filters.append("startswith(tagname, '%s')" % tag_name[0:-1])
- else:
- filters.append("tagname eq '%s'" % tag_name)
- if tag_value != '':
- filters.append("tagvalue eq '%s'" % tag_value)
- return ' and '.join(filters)
-
-
-def get_providers_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- rcf = _resource_client_factory()
- result = rcf.providers.list()
- return [r.namespace for r in result]
-
-
-def get_resource_types_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- rcf = _resource_client_factory()
- result = rcf.providers.list()
- types = []
- for p in list(result):
- for r in p.resource_types:
- types.append(p.namespace + '/' + r.resource_type)
- return types
-
-
-def register_provider(resource_provider_namespace, wait=False):
- _update_provider(resource_provider_namespace, registering=True, wait=wait)
+def register_provider(cmd, resource_provider_namespace, wait=False):
+ _update_provider(cmd.cli_ctx, resource_provider_namespace, registering=True, wait=wait)
-def unregister_provider(resource_provider_namespace, wait=False):
- _update_provider(resource_provider_namespace, registering=False, wait=wait)
-
-
-def _update_provider(namespace, registering, wait):
- import time
- rcf = _resource_client_factory()
- if registering:
- rcf.providers.register(namespace)
- else:
- rcf.providers.unregister(namespace)
-
- if wait:
- while True:
- time.sleep(10)
- rp_info = rcf.providers.get(namespace)
- if rp_info.registration_state == ('Registered' if registering else 'Unregistered'):
- break
- else:
- action = 'Registering' if registering else 'Unregistering'
- msg_template = '%s is still on-going. You can monitor using \'az provider show -n %s\''
- logger.warning(msg_template, action, namespace)
+def unregister_provider(cmd, resource_provider_namespace, wait=False):
+ _update_provider(cmd.cli_ctx, resource_provider_namespace, registering=False, wait=wait)
-def list_provider_operations(api_version=None):
- api_version = api_version or _get_auth_provider_latest_api_version()
- auth_client = _authorization_management_client()
+def list_provider_operations(cmd, api_version=None):
+ api_version = api_version or _get_auth_provider_latest_api_version(cmd.cli_ctx)
+ auth_client = _authorization_management_client(cmd.cli_ctx)
return auth_client.provider_operations_metadata.list(api_version)
-def show_provider_operations(resource_provider_namespace, api_version=None):
- api_version = api_version or _get_auth_provider_latest_api_version()
- auth_client = _authorization_management_client()
- return auth_client.provider_operations_metadata.get(resource_provider_namespace, api_version)
-
+def show_provider_operations(cmd, resource_provider_namespace, api_version=None):
+ api_version = api_version or _get_auth_provider_latest_api_version(cmd.cli_ctx)
-def _get_auth_provider_latest_api_version():
- rcf = _resource_client_factory()
- api_version = _ResourceUtils.resolve_api_version(rcf, 'Microsoft.Authorization',
- None, 'providerOperations')
- return api_version
+ auth_client = _authorization_management_client(cmd.cli_ctx)
+ return auth_client.provider_operations_metadata.get(resource_provider_namespace, api_version)
-def move_resource(ids, destination_group, destination_subscription_id=None):
+def move_resource(cmd, ids, destination_group, destination_subscription_id=None):
"""Moves resources from one resource group to another(can be under different subscription)
:param ids: the space separated resource ids to be moved
@@ -788,7 +900,7 @@ def move_resource(ids, destination_group, destination_subscription_id=None):
if len(set([r['resource_group'] for r in resources])) > 1:
raise CLIError('All resources should be under the same group')
- rcf = _resource_client_factory()
+ rcf = _resource_client_factory(cmd.cli_ctx)
target = resource_dict_to_id(subscription=(destination_subscription_id or rcf.config.subscription_id),
resource_group=destination_group)
@@ -802,12 +914,12 @@ def list_features(client, resource_provider_namespace=None):
def register_feature(client, resource_provider_namespace, feature_name):
- logger.warning("Once the feature '{}' is registered, invoking 'az provider register -n {}' is required "
- "to get the change propagated".format(feature_name, resource_provider_namespace))
+ logger.warning("Once the feature '%s' is registered, invoking 'az provider register -n %s' is required "
+ "to get the change propagated", feature_name, resource_provider_namespace)
return client.register(resource_provider_namespace, feature_name)
-def create_policy_assignment(policy=None, policy_set_definition=None,
+def create_policy_assignment(cmd, policy=None, policy_set_definition=None,
name=None, display_name=None, params=None,
resource_group_name=None, scope=None, sku=None,
not_scopes=None):
@@ -817,10 +929,10 @@ def create_policy_assignment(policy=None, policy_set_definition=None,
if bool(policy) == bool(policy_set_definition):
raise CLIError('usage error: --policy NAME_OR_ID | '
'--policy-set-definition NAME_OR_ID')
- policy_client = _resource_policy_client_factory()
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
scope = _build_policy_scope(policy_client.config.subscription_id,
resource_group_name, scope)
- policy_id = _resolve_policy_id(policy, policy_set_definition, policy_client)
+ policy_id = _resolve_policy_id(cmd, policy, policy_set_definition, policy_client)
if params:
if os.path.exists(params):
@@ -828,11 +940,11 @@ def create_policy_assignment(policy=None, policy_set_definition=None,
else:
params = shell_safe_json_parse(params)
- PolicyAssignment = get_sdk(ResourceType.MGMT_RESOURCE_POLICY, 'PolicyAssignment', mod='models')
+ PolicyAssignment = cmd.get_models('PolicyAssignment')
assignment = PolicyAssignment(display_name, policy_id, scope)
assignment.parameters = params if params else None
- if supported_api_version(ResourceType.MGMT_RESOURCE_POLICY, min_api='2017-06-01-preview'):
+ if cmd.supported_api_version(min_api='2017-06-01-preview'):
if not_scopes:
kwargs_list = []
for id_arg in not_scopes.split(' '):
@@ -840,10 +952,10 @@ def create_policy_assignment(policy=None, policy_set_definition=None,
kwargs_list.append(id_arg)
else:
logger.error('az policy assignment create error: argument --not-scopes: \
- invalid notscopes value: \'%s\'' % id_arg)
+ invalid notscopes value: \'%s\'', id_arg)
return
assignment.not_scopes = kwargs_list
- PolicySku = get_sdk(ResourceType.MGMT_RESOURCE_POLICY, 'PolicySku', mod='models')
+ PolicySku = cmd.get_models('PolicySku')
policySku = PolicySku('A0', 'Free')
if sku:
policySku = policySku if sku.lower() == 'free' else PolicySku('A1', 'Standard')
@@ -854,22 +966,22 @@ def create_policy_assignment(policy=None, policy_set_definition=None,
assignment)
-def delete_policy_assignment(name, resource_group_name=None, scope=None):
- policy_client = _resource_policy_client_factory()
+def delete_policy_assignment(cmd, name, resource_group_name=None, scope=None):
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
scope = _build_policy_scope(policy_client.config.subscription_id,
resource_group_name, scope)
policy_client.policy_assignments.delete(scope, name)
-def show_policy_assignment(name, resource_group_name=None, scope=None):
- policy_client = _resource_policy_client_factory()
+def show_policy_assignment(cmd, name, resource_group_name=None, scope=None):
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
scope = _build_policy_scope(policy_client.config.subscription_id,
resource_group_name, scope)
return policy_client.policy_assignments.get(scope, name)
-def list_policy_assignment(disable_scope_strict_match=None, resource_group_name=None, scope=None):
- policy_client = _resource_policy_client_factory()
+def list_policy_assignment(cmd, disable_scope_strict_match=None, resource_group_name=None, scope=None):
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
if scope and not is_valid_resource_id(scope):
parts = scope.strip('/').split('/')
if len(parts) == 4:
@@ -905,96 +1017,41 @@ def list_policy_assignment(disable_scope_strict_match=None, resource_group_name=
return result
-def _build_policy_scope(subscription_id, resource_group_name, scope):
- subscription_scope = '/subscriptions/' + subscription_id
- if scope:
- if resource_group_name:
- err = "Resource group '{}' is redundant because 'scope' is supplied"
- raise CLIError(err.format(resource_group_name))
- elif resource_group_name:
- scope = subscription_scope + '/resourceGroups/' + resource_group_name
- else:
- scope = subscription_scope
- return scope
-
-
-def _resolve_policy_id(policy, policy_set_definition, client):
- policy_id = policy or policy_set_definition
- if not is_valid_resource_id(policy_id):
- if policy:
- policy_def = _get_custom_or_builtin_policy(client, policy)
- policy_id = policy_def.id
- else:
- policy_set_def = _get_custom_or_builtin_policy(client, policy_set_definition, True)
- policy_id = policy_set_def.id
- return policy_id
-
-
-def _get_custom_or_builtin_policy(client, name, for_policy_set=False):
- from msrest.exceptions import HttpOperationError
- from msrestazure.azure_exceptions import CloudError
- policy_operations = client.policy_set_definitions if for_policy_set else client.policy_definitions
- try:
- return policy_operations.get(name)
- except (CloudError, HttpOperationError) as ex:
- status_code = ex.status_code if isinstance(ex, CloudError) else ex.response.status_code
- if status_code == 404:
- return policy_operations.get_built_in(name)
- raise
-
-
-def _load_file_string_or_uri(file_or_string_or_uri, name, required=True):
- if file_or_string_or_uri is None:
- if required:
- raise CLIError('One of --{} or --{}-uri is required'.format(name, name))
- return None
- url = urlparse(file_or_string_or_uri)
- if url.scheme == 'http' or url.scheme == 'https' or url.scheme == 'file':
- response = urlopen(file_or_string_or_uri)
- reader = codecs.getreader('utf-8')
- result = json.load(reader(response))
- response.close()
- return result
- if os.path.exists(file_or_string_or_uri):
- return get_file_json(file_or_string_or_uri)
- return shell_safe_json_parse(file_or_string_or_uri)
-
-
-def create_policy_definition(name, rules=None, params=None, display_name=None, description=None, mode=None):
+def create_policy_definition(cmd, name, rules=None, params=None, display_name=None, description=None, mode=None):
rules = _load_file_string_or_uri(rules, 'rules')
params = _load_file_string_or_uri(params, 'params', False)
- policy_client = _resource_policy_client_factory()
- PolicyDefinition = get_sdk(ResourceType.MGMT_RESOURCE_POLICY, 'PolicyDefinition', mod='models')
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
+ PolicyDefinition = cmd.get_models('PolicyDefinition')
parameters = PolicyDefinition(policy_rule=rules, parameters=params, description=description,
display_name=display_name)
- if supported_api_version(ResourceType.MGMT_RESOURCE_POLICY, min_api='2016-12-01'):
+ if cmd.supported_api_version(min_api='2016-12-01'):
parameters.mode = mode
return policy_client.policy_definitions.create_or_update(name, parameters)
-def create_policy_setdefinition(name, definitions, params=None, display_name=None, description=None):
+def create_policy_setdefinition(cmd, name, definitions, params=None, display_name=None, description=None):
definitions = _load_file_string_or_uri(definitions, 'definitions')
params = _load_file_string_or_uri(params, 'params', False)
- policy_client = _resource_policy_client_factory()
- PolicySetDefinition = get_sdk(ResourceType.MGMT_RESOURCE_POLICY, 'PolicySetDefinition', mod='models')
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
+ PolicySetDefinition = cmd.get_models('PolicySetDefinition')
parameters = PolicySetDefinition(policy_definitions=definitions, parameters=params, description=description,
display_name=display_name)
return policy_client.policy_set_definitions.create_or_update(name, parameters)
-def get_policy_definition(policy_definition_name):
- policy_client = _resource_policy_client_factory()
- return _get_custom_or_builtin_policy(policy_client, policy_definition_name)
+def get_policy_definition(cmd, policy_definition_name):
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
+ return _get_custom_or_builtin_policy(cmd, policy_client, policy_definition_name)
-def get_policy_setdefinition(policy_set_definition_name):
- policy_client = _resource_policy_client_factory()
- return _get_custom_or_builtin_policy(policy_client, policy_set_definition_name, True)
+def get_policy_setdefinition(cmd, policy_set_definition_name):
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
+ return _get_custom_or_builtin_policy(cmd, policy_client, policy_set_definition_name, True)
-def update_policy_definition(policy_definition_name, rules=None, params=None,
+def update_policy_definition(cmd, policy_definition_name, rules=None, params=None,
display_name=None, description=None):
if rules:
if os.path.exists(rules):
@@ -1008,10 +1065,10 @@ def update_policy_definition(policy_definition_name, rules=None, params=None,
else:
params = shell_safe_json_parse(params)
- policy_client = _resource_policy_client_factory()
- definition = _get_custom_or_builtin_policy(policy_client, policy_definition_name)
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
+ definition = _get_custom_or_builtin_policy(cmd, policy_client, policy_definition_name)
# pylint: disable=line-too-long,no-member
- PolicyDefinition = get_sdk(ResourceType.MGMT_RESOURCE_POLICY, 'PolicyDefinition', mod='models')
+ PolicyDefinition = cmd.get_models('PolicyDefinition')
parameters = PolicyDefinition(
policy_rule=rules if rules is not None else definition.policy_rule,
description=description if description is not None else definition.description,
@@ -1020,7 +1077,7 @@ def update_policy_definition(policy_definition_name, rules=None, params=None,
return policy_client.policy_definitions.create_or_update(policy_definition_name, parameters)
-def update_policy_setdefinition(policy_set_definition_name, definitions=None, params=None,
+def update_policy_setdefinition(cmd, policy_set_definition_name, definitions=None, params=None,
display_name=None, description=None):
if definitions:
if os.path.exists(definitions):
@@ -1034,10 +1091,10 @@ def update_policy_setdefinition(policy_set_definition_name, definitions=None, pa
else:
params = shell_safe_json_parse(params)
- policy_client = _resource_policy_client_factory()
- definition = _get_custom_or_builtin_policy(policy_client, policy_set_definition_name, True)
+ policy_client = _resource_policy_client_factory(cmd.cli_ctx)
+ definition = _get_custom_or_builtin_policy(cmd, policy_client, policy_set_definition_name, True)
# pylint: disable=line-too-long,no-member
- PolicySetDefinition = get_sdk(ResourceType.MGMT_RESOURCE_POLICY, 'PolicySetDefinition', mod='models')
+ PolicySetDefinition = cmd.get_models('PolicySetDefinition')
parameters = PolicySetDefinition(
policy_definitions=definitions if definitions is not None else definition.policy_definitions,
description=description if description is not None else definition.description,
@@ -1046,59 +1103,10 @@ def update_policy_setdefinition(policy_set_definition_name, definitions=None, pa
return policy_client.policy_set_definitions.create_or_update(policy_set_definition_name, parameters)
-def get_policy_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- policy_client = _resource_policy_client_factory()
- result = policy_client.policy_definitions.list()
- return [i.name for i in result]
-
-
-def get_policy_set_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- policy_client = _resource_policy_client_factory()
- result = policy_client.policy_set_definitions.list()
- return [i.name for i in result]
-
-
-def get_policy_assignment_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- policy_client = _resource_policy_client_factory()
- result = policy_client.policy_assignments.list()
- return [i.name for i in result]
-
-
-def list_locks(resource_group=None,
- resource_provider_namespace=None, parent_resource_path=None, resource_type=None,
- resource_name=None, filter_string=None):
- """
- :param resource_provider_namespace: Name of a resource provider.
- :type resource_provider_namespace: str
- :param parent_resource_path: Path to a parent resource
- :type parent_resource_path: str
- :param resource_type: The type for the resource with the lock.
- :type resource_type: str
- :param resource_name: Name of a resource that has a lock.
- :type resource_name: str
- :param filter_string: A query filter to use to restrict the results.
- :type filter_string: str
- """
- lock_client = _resource_lock_client_factory()
- lock_resource = _extract_lock_params(resource_group, resource_provider_namespace,
- resource_type, resource_name)
- resource_group_name = lock_resource[0]
- resource_name = lock_resource[1]
- resource_provider_namespace = lock_resource[2]
- resource_type = lock_resource[3]
-
- if resource_group_name is None:
- return lock_client.management_locks.list_at_subscription_level(filter=filter_string)
- if resource_name is None:
- return lock_client.management_locks.list_at_resource_group_level(
- resource_group_name, filter=filter_string)
- return lock_client.management_locks.list_at_resource_level(
- resource_group_name, resource_provider_namespace, parent_resource_path or '', resource_type,
- resource_name, filter=filter_string)
-
+# region Locks
def _validate_lock_params_match_lock(
- lock_client, name, resource_group_name, resource_provider_namespace, parent_resource_path,
+ lock_client, name, resource_group, resource_provider_namespace, parent_resource_path,
resource_type, resource_name):
"""
Locks are scoped to subscription, resource group or resource.
@@ -1126,7 +1134,7 @@ def _validate_lock_params_match_lock(
_resource_namespace = resource.get('namespace', None)
if _resource_group is None:
return
- if resource_group_name != _resource_group:
+ if resource_group != _resource_group:
raise CLIError(
'Unexpected --resource-group for lock {}, expected {}'.format(
name, _resource_group))
@@ -1154,33 +1162,40 @@ def _validate_lock_params_match_lock(
name, _resource_name))
-def _parse_lock_id(id_arg):
+def list_locks(cmd, resource_group=None,
+ resource_provider_namespace=None, parent_resource_path=None, resource_type=None,
+ resource_name=None, filter_string=None):
"""
- Lock ids look very different from regular resource ids, this function uses a regular expression
- that parses a lock's id and extracts the following parameters if available:
- -lock_name: the lock's name; always present in a lock id
- -resource_group: the name of the resource group; present in group/resource level locks
- -resource_provider_namespace: the resource provider; present in resource level locks
- -resource_type: the resource type; present in resource level locks
- -resource_name: the resource name; present in resource level locks
- -parent_resource_path: the resource's parent path; present in child resources such as subnets
+ :param resource_provider_namespace: Name of a resource provider.
+ :type resource_provider_namespace: str
+ :param parent_resource_path: Path to a parent resource
+ :type parent_resource_path: str
+ :param resource_type: The type for the resource with the lock.
+ :type resource_type: str
+ :param resource_name: Name of a resource that has a lock.
+ :type resource_name: str
+ :param filter_string: A query filter to use to restrict the results.
+ :type filter_string: str
"""
- regex = re.compile(
- '/subscriptions/[^/]*(/resource[gG]roups/(?P[^/]*)'
- '(/providers/(?P[^/]*)'
- '(/(?P.*))?/(?P[^/]*)/(?P[^/]*))?)?'
- '/providers/Microsoft.Authorization/locks/(?P[^/]*)')
-
- return regex.match(id_arg).groupdict()
-
+ lock_client = _resource_lock_client_factory(cmd.cli_ctx)
+ lock_resource = _extract_lock_params(resource_group, resource_provider_namespace,
+ resource_type, resource_name)
+ resource_group = lock_resource[0]
+ resource_name = lock_resource[1]
+ resource_provider_namespace = lock_resource[2]
+ resource_type = lock_resource[3]
-def _call_subscription_get(lock_client, *args):
- if supported_api_version(ResourceType.MGMT_RESOURCE_LOCKS, max_api='2015-01-01'):
- return lock_client.management_locks.get(*args)
- return lock_client.management_locks.get_at_subscription_level(*args)
+ if resource_group is None:
+ return lock_client.management_locks.list_at_subscription_level(filter=filter_string)
+ if resource_name is None:
+ return lock_client.management_locks.list_at_resource_group_level(
+ resource_group, filter=filter_string)
+ return lock_client.management_locks.list_at_resource_level(
+ resource_group, resource_provider_namespace, parent_resource_path or '', resource_type,
+ resource_name, filter=filter_string)
-def get_lock(lock_name=None, resource_group=None, resource_provider_namespace=None,
+def get_lock(cmd, lock_name=None, resource_group=None, resource_provider_namespace=None,
parent_resource_path=None, resource_type=None, resource_name=None, ids=None):
"""
:param name: The name of the lock.
@@ -1192,39 +1207,39 @@ def get_lock(lock_name=None, resource_group=None, resource_provider_namespace=No
try:
kwargs_list.append(_parse_lock_id(id_arg))
except AttributeError:
- logger.error('az lock show: error: argument --ids: invalid ResourceId value: \'%s\'' % id_arg)
+ logger.error('az lock show: error: argument --ids: invalid ResourceId value: \'%s\'', id_arg)
return
- results = [get_lock(**kwargs) for kwargs in kwargs_list]
+ results = [get_lock(cmd, **kwargs) for kwargs in kwargs_list]
return results[0] if len(results) == 1 else results
- lock_client = _resource_lock_client_factory()
+ lock_client = _resource_lock_client_factory(cmd.cli_ctx)
lock_resource = _extract_lock_params(resource_group, resource_provider_namespace,
resource_type, resource_name)
- resource_group_name = lock_resource[0]
+ resource_group = lock_resource[0]
resource_name = lock_resource[1]
resource_provider_namespace = lock_resource[2]
resource_type = lock_resource[3]
- _validate_lock_params_match_lock(lock_client, lock_name, resource_group_name,
+ _validate_lock_params_match_lock(lock_client, lock_name, resource_group,
resource_provider_namespace, parent_resource_path,
resource_type, resource_name)
- if resource_group_name is None:
- return _call_subscription_get(lock_client, lock_name)
+ if resource_group is None:
+ return _call_subscription_get(cmd, lock_client, lock_name)
if resource_name is None:
- return lock_client.management_locks.get_at_resource_group_level(resource_group_name, lock_name)
- if supported_api_version(ResourceType.MGMT_RESOURCE_LOCKS, max_api='2015-01-01'):
- lock_list = list_locks(resource_group_name, resource_provider_namespace, parent_resource_path,
+ return lock_client.management_locks.get_at_resource_group_level(resource_group, lock_name)
+ if cmd.supported_api_version(max_api='2015-01-01'):
+ lock_list = list_locks(resource_group, resource_provider_namespace, parent_resource_path,
resource_type, resource_name)
return next((lock for lock in lock_list if lock.name == lock_name), None)
return lock_client.management_locks.get_at_resource_level(
- resource_group_name, resource_provider_namespace,
+ resource_group, resource_provider_namespace,
parent_resource_path or '', resource_type, resource_name, lock_name)
-def delete_lock(lock_name=None, resource_group=None, resource_provider_namespace=None,
+def delete_lock(cmd, lock_name=None, resource_group=None, resource_provider_namespace=None,
parent_resource_path=None, resource_type=None, resource_name=None, ids=None):
"""
:param name: The name of the lock.
@@ -1244,49 +1259,34 @@ def delete_lock(lock_name=None, resource_group=None, resource_provider_namespace
try:
kwargs_list.append(_parse_lock_id(id_arg))
except AttributeError:
- logger.error('az lock delete: error: argument --ids: invalid ResourceId value: \'%s\'' % id_arg)
+ logger.error('az lock delete: error: argument --ids: invalid ResourceId value: \'%s\'', id_arg)
return
- results = [delete_lock(**kwargs) for kwargs in kwargs_list]
+ results = [delete_lock(cmd, **kwargs) for kwargs in kwargs_list]
return results[0] if len(results) == 1 else results
- lock_client = _resource_lock_client_factory()
+ lock_client = _resource_lock_client_factory(cmd.cli_ctx)
lock_resource = _extract_lock_params(resource_group, resource_provider_namespace,
resource_type, resource_name)
- resource_group_name = lock_resource[0]
+ resource_group = lock_resource[0]
resource_name = lock_resource[1]
resource_provider_namespace = lock_resource[2]
resource_type = lock_resource[3]
- _validate_lock_params_match_lock(lock_client, lock_name, resource_group_name,
+ _validate_lock_params_match_lock(lock_client, lock_name, resource_group,
resource_provider_namespace, parent_resource_path,
resource_type, resource_name)
- if resource_group_name is None:
+ if resource_group is None:
return lock_client.management_locks.delete_at_subscription_level(lock_name)
if resource_name is None:
return lock_client.management_locks.delete_at_resource_group_level(
- resource_group_name, lock_name)
+ resource_group, lock_name)
return lock_client.management_locks.delete_at_resource_level(
- resource_group_name, resource_provider_namespace, parent_resource_path or '', resource_type,
+ resource_group, resource_provider_namespace, parent_resource_path or '', resource_type,
resource_name, lock_name)
-def _extract_lock_params(resource_group_name, resource_provider_namespace,
- resource_type, resource_name):
- if resource_group_name is None:
- return (None, None, None, None)
-
- if resource_name is None:
- return (resource_group_name, None, None, None)
-
- parts = resource_type.split('/', 2)
- if resource_provider_namespace is None and len(parts) == 2:
- resource_provider_namespace = parts[0]
- resource_type = parts[1]
- return (resource_group_name, resource_name, resource_provider_namespace, resource_type)
-
-
-def create_lock(lock_name, level,
+def create_lock(cmd, lock_name, level,
resource_group=None, resource_provider_namespace=None, notes=None,
parent_resource_path=None, resource_type=None, resource_name=None):
"""
@@ -1305,34 +1305,27 @@ def create_lock(lock_name, level,
"""
parameters = ManagementLockObject(level=level, notes=notes, name=lock_name)
- lock_client = _resource_lock_client_factory()
+ lock_client = _resource_lock_client_factory(cmd.cli_ctx)
lock_resource = _extract_lock_params(resource_group, resource_provider_namespace,
resource_type, resource_name)
- resource_group_name = lock_resource[0]
+ resource_group = lock_resource[0]
resource_name = lock_resource[1]
resource_provider_namespace = lock_resource[2]
resource_type = lock_resource[3]
- if resource_group_name is None:
+ if resource_group is None:
return lock_client.management_locks.create_or_update_at_subscription_level(lock_name, parameters)
if resource_name is None:
return lock_client.management_locks.create_or_update_at_resource_group_level(
- resource_group_name, lock_name, parameters)
+ resource_group, lock_name, parameters)
return lock_client.management_locks.create_or_update_at_resource_level(
- resource_group_name, resource_provider_namespace, parent_resource_path or '', resource_type,
+ resource_group, resource_provider_namespace, parent_resource_path or '', resource_type,
resource_name, lock_name, parameters)
-def _update_lock_parameters(parameters, level, notes):
- if level is not None:
- parameters.level = level
- if notes is not None:
- parameters.notes = notes
-
-
-def update_lock(lock_name=None, resource_group=None, resource_provider_namespace=None, notes=None,
+def update_lock(cmd, lock_name=None, resource_group=None, resource_provider_namespace=None, notes=None,
parent_resource_path=None, resource_type=None, resource_name=None, level=None, ids=None):
"""
Allows updates to the lock-type(level) and the notes of the lock
@@ -1343,67 +1336,71 @@ def update_lock(lock_name=None, resource_group=None, resource_provider_namespace
try:
kwargs_list.append(_parse_lock_id(id_arg))
except AttributeError:
- logger.error('az lock update: error: argument --ids: invalid ResourceId value: \'%s\'' % id_arg)
+ logger.error('az lock update: error: argument --ids: invalid ResourceId value: \'%s\'', id_arg)
return
- results = [update_lock(level=level, notes=notes, **kwargs) for kwargs in kwargs_list]
+ results = [update_lock(cmd, level=level, notes=notes, **kwargs) for kwargs in kwargs_list]
return results[0] if len(results) == 1 else results
- lock_client = _resource_lock_client_factory()
+ lock_client = _resource_lock_client_factory(cmd.cli_ctx)
lock_resource = _extract_lock_params(resource_group, resource_provider_namespace,
resource_type, resource_name)
- resource_group_name = lock_resource[0]
+ resource_group = lock_resource[0]
resource_name = lock_resource[1]
resource_provider_namespace = lock_resource[2]
resource_type = lock_resource[3]
- _validate_lock_params_match_lock(lock_client, lock_name, resource_group_name, resource_provider_namespace,
+ _validate_lock_params_match_lock(lock_client, lock_name, resource_group, resource_provider_namespace,
parent_resource_path, resource_type, resource_name)
- if resource_group_name is None:
- params = _call_subscription_get(lock_client, lock_name)
+ if resource_group is None:
+ params = _call_subscription_get(cmd, lock_client, lock_name)
_update_lock_parameters(params, level, notes)
return lock_client.management_locks.create_or_update_at_subscription_level(lock_name, params)
if resource_name is None:
- params = lock_client.management_locks.get_at_resource_group_level(resource_group_name, lock_name)
+ params = lock_client.management_locks.get_at_resource_group_level(resource_group, lock_name)
_update_lock_parameters(params, level, notes)
return lock_client.management_locks.create_or_update_at_resource_group_level(
- resource_group_name, lock_name, params)
- if supported_api_version(ResourceType.MGMT_RESOURCE_LOCKS, max_api='2015-01-01'):
- lock_list = list_locks(resource_group_name, resource_provider_namespace, parent_resource_path,
+ resource_group, lock_name, params)
+ if cmd.supported_api_version(max_api='2015-01-01'):
+ lock_list = list_locks(resource_group, resource_provider_namespace, parent_resource_path,
resource_type, resource_name)
return next((lock for lock in lock_list if lock.name == lock_name), None)
else:
params = lock_client.management_locks.get_at_resource_level(
- resource_group_name, resource_provider_namespace, parent_resource_path or '', resource_type,
+ resource_group, resource_provider_namespace, parent_resource_path or '', resource_type,
resource_name, lock_name)
_update_lock_parameters(params, level, notes)
return lock_client.management_locks.create_or_update_at_resource_level(
- resource_group_name, resource_provider_namespace, parent_resource_path or '', resource_type,
+ resource_group, resource_provider_namespace, parent_resource_path or '', resource_type,
resource_name, lock_name, params)
+# endregion
+
+# region ResourceLinks
-def create_resource_link(link_id, target_id, notes=None):
+
+def create_resource_link(cmd, link_id, target_id, notes=None):
"""
:param target_id: The id of the resource link target.
:type target_id: str
:param notes: Notes for this link.
:type notes: str
"""
- links_client = _resource_links_client_factory().resource_links
+ links_client = _resource_links_client_factory(cmd.cli_ctx).resource_links
properties = ResourceLinkProperties(target_id, notes)
links_client.create_or_update(link_id, properties)
-def update_resource_link(link_id, target_id=None, notes=None):
+def update_resource_link(cmd, link_id, target_id=None, notes=None):
"""
:param target_id: The id of the resource link target.
:type target_id: str
:param notes: Notes for this link.
:type notes: str
"""
- links_client = _resource_links_client_factory().resource_links
+ links_client = _resource_links_client_factory(cmd.cli_ctx).resource_links
params = links_client.get(link_id)
properties = ResourceLinkProperties(
target_id if target_id is not None else params.properties.target_id,
@@ -1412,33 +1409,23 @@ def update_resource_link(link_id, target_id=None, notes=None):
links_client.create_or_update(link_id, properties)
-def list_resource_links(scope=None, filter_string=None):
+def list_resource_links(cmd, scope=None, filter_string=None):
"""
:param scope: The scope for the links
:type scope: str
:param filter_string: A filter for restricting the results
:type filter_string: str
"""
- links_client = _resource_links_client_factory().resource_links
+ links_client = _resource_links_client_factory(cmd.cli_ctx).resource_links
if scope is not None:
return links_client.list_at_source_scope(scope, filter=filter_string)
return links_client.list_at_subscription(filter=filter_string)
-
-def _validate_resource_inputs(resource_group_name, resource_provider_namespace,
- resource_type, resource_name):
- if resource_group_name is None:
- raise CLIError('--resource-group/-g is required.')
- if resource_type is None:
- raise CLIError('--resource-type is required')
- if resource_name is None:
- raise CLIError('--name/-n is required')
- if resource_provider_namespace is None:
- raise CLIError('--namespace is required')
+# endregion
class _ResourceUtils(object): # pylint: disable=too-many-instance-attributes
- def __init__(self,
+ def __init__(self, cli_ctx,
resource_group_name=None, resource_provider_namespace=None,
parent_resource_path=None, resource_type=None, resource_name=None,
resource_id=None, api_version=None, rcf=None):
@@ -1450,7 +1437,7 @@ def __init__(self,
resource_provider_namespace = parts[0]
resource_type = parts[1]
- self.rcf = rcf or _resource_client_factory()
+ self.rcf = rcf or _resource_client_factory(cli_ctx)
if api_version is None:
if resource_id:
api_version = _ResourceUtils._resolve_api_version_by_id(self.rcf, resource_id)
@@ -1624,14 +1611,12 @@ def resolve_api_version(rcf, resource_provider_namespace, parent_resource_path,
provider = rcf.providers.get(resource_provider_namespace)
# If available, we will use parent resource's api-version
- resource_type_str = (parent_resource_path.split('/')[0]
- if parent_resource_path else resource_type)
+ resource_type_str = (parent_resource_path.split('/')[0] if parent_resource_path else resource_type)
rt = [t for t in provider.resource_types
if t.resource_type.lower() == resource_type_str.lower()]
if not rt:
- raise IncorrectUsageError('Resource type {} not found.'
- .format(resource_type_str))
+ raise IncorrectUsageError('Resource type {} not found.'.format(resource_type_str))
if len(rt) == 1 and rt[0].api_versions:
npv = [v for v in rt[0].api_versions if 'preview' not in v.lower()]
return npv[0] if npv else rt[0].api_versions[0]
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_generic_subscription_locks.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_generic_subscription_locks.yaml
new file mode 100644
index 00000000000..29b69f21b12
--- /dev/null
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_generic_subscription_locks.yaml
@@ -0,0 +1,908 @@
+interactions:
+- request:
+ body: 'b''{"name": "cli-test-lock000001", "properties": {"level": "ReadOnly"}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['97']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['280']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:48 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1090']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3603']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:48 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3603']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:49 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['280']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3603']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['280']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3603']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['280']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:50 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''b\''{"name": "cli-test-lock000001", "properties": {"notes": "notes000002",
+ "level": "CanNotDelete"}}\'''''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['134']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"CanNotDelete","notes":"notes000002"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['315']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ x-ms-ratelimit-remaining-subscription-writes: ['1086']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3603']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:51 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"CanNotDelete","notes":"notes000002"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['315']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''b\''{"name": "cli-test-lock000001", "properties": {"notes": "notes000002",
+ "level": "ReadOnly"}}\'''''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['130']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"ReadOnly","notes":"notes000002"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['311']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ x-ms-ratelimit-remaining-subscription-writes: ['1071']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"ReadOnly","notes":"notes000002"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3634']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 18 Oct 2017 20:38:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1110']
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''{"name": "cli-test-lock000003", "properties": {"level": "CanNotDelete"}}'''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['101']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['284']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:53 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1088']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3607']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"CanNotDelete","notes":"notes000002"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001","type":"Microsoft.Authorization/locks","name":"cli-test-lock000001"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3638']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['284']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:53 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3607']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['284']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3607']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['284']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''b\''{"name": "cli-test-lock000003", "properties": {"notes": "notes000004",
+ "level": "ReadOnly"}}\'''''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['130']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"ReadOnly","notes":"notes000004"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['311']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ x-ms-ratelimit-remaining-subscription-writes: ['1115']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"ReadOnly","notes":"notes000004"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3634']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"ReadOnly","notes":"notes000004"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['311']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:55 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: 'b''b\''{"name": "cli-test-lock000003", "properties": {"notes": "notes000004",
+ "level": "CanNotDelete"}}\'''''
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['134']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003?api-version=2016-09-01
+ response:
+ body: {string: '{"properties":{"level":"CanNotDelete","notes":"notes000004"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['315']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:54 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
+ response:
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu","type":"Microsoft.Authorization/locks","name":"cli-test-lock3lu2poolgpntdccotvgkcuycthfw7of6glu"},{"properties":{"level":"ReadOnly","notes":"notes000004"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003","type":"Microsoft.Authorization/locks","name":"cli-test-lock000003"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete","notes":"please
+ keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['3634']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 20:38:55 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000003?api-version=2016-09-01
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Wed, 18 Oct 2017 20:38:56 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1070']
+ status: {code: 200, message: OK}
+version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_group_deployment.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_group_deployment.yaml
index fe3306f76a5..d323eacc733 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_group_deployment.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_group_deployment.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:21 GMT']
+ date: ['Wed, 18 Oct 2017 19:21:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1194']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001?api-version=2017-05-10
@@ -46,77 +46,77 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:20 GMT']
+ date: ['Wed, 18 Oct 2017 19:21:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]},
- "subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"}, "name": "subnet1"}],
+ body: '{"tags": {}, "properties": {"subnets": [{"properties": {"addressPrefix":
+ "10.0.0.0/24"}, "name": "subnet1"}], "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]},
"dhcpOptions": {}}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['205']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"64cda42f-dca9-42fb-a120-d09dcba0f5b6\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"1e59c015-b194-40b8-9bdb-ca6a973fe6ca\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"41bd1df1-677d-47b4-903b-71333b064d70\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"cce25c07-4405-4d7a-97d4-85045d8d7d1c\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"64cda42f-dca9-42fb-a120-d09dcba0f5b6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"1e59c015-b194-40b8-9bdb-ca6a973fe6ca\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b918c4b6-afcf-4c79-b073-e910a99eb108?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/30648e76-1cbf-4fdf-9791-b2d0cf564918?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1230']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:21 GMT']
+ date: ['Wed, 18 Oct 2017 19:21:27 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1189']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b918c4b6-afcf-4c79-b073-e910a99eb108?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/30648e76-1cbf-4fdf-9791-b2d0cf564918?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:25 GMT']
+ date: ['Wed, 18 Oct 2017 19:21:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -129,26 +129,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"4b9e6ce5-7e02-4c7d-a79b-932c48505ccf\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e091e4ad-b3a6-4666-b9e1-eea64b007fbf\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"41bd1df1-677d-47b4-903b-71333b064d70\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"cce25c07-4405-4d7a-97d4-85045d8d7d1c\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"4b9e6ce5-7e02-4c7d-a79b-932c48505ccf\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e091e4ad-b3a6-4666-b9e1-eea64b007fbf\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -157,8 +157,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1232']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:24 GMT']
- etag: [W/"4b9e6ce5-7e02-4c7d-a79b-932c48505ccf"]
+ date: ['Wed, 18 Oct 2017 19:21:32 GMT']
+ etag: [W/"e091e4ad-b3a6-4666-b9e1-eea64b007fbf"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -167,109 +167,109 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"mode": "Incremental", "template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "resources": [{"properties": {"backendAddressPools": "[parameters(\''backendAddressPools\'')]",
- "frontendIPConfigurations": [{"properties": {"subnet": {"id": "[parameters(\''subnetId\'')]"},
- "privateIPAllocationMethod": "[parameters(\''privateIPAllocationMethod\'')]"},
- "name": "LoadBalancerFrontEnd"}]}, "name": "[parameters(\''name\'')]", "type":
- "Microsoft.Network/loadBalancers", "dependsOn": [], "tags": "[parameters(\''tags\'')]",
- "location": "[parameters(\''location\'')]", "apiVersion": "2016-03-30"}], "contentVersion":
- "1.0.0.0", "parameters": {"subnetId": {"type": "string"}, "name": {"type": "string"},
- "backendAddressPools": {"type": "array"}, "privateIPAllocationMethod": {"type":
- "string"}, "location": {"type": "string"}, "tags": {"type": "object"}}}, "parameters":
- {"tags": {"value": {"key": "super=value"}}, "name": {"value": "test-lb"}, "backendAddressPools":
- {"value": [{"name": "bepool1"}, {"name": "bepool2"}]}, "subnetId": {"value":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "location": {"value": "westus"}, "privateIPAllocationMethod": {"value": "Dynamic"}}}}'''
+ body: 'b''{"properties": {"mode": "Incremental", "parameters": {"backendAddressPools":
+ {"value": [{"name": "bepool1"}, {"name": "bepool2"}]}, "privateIPAllocationMethod":
+ {"value": "Dynamic"}, "name": {"value": "test-lb"}, "location": {"value": "westus"},
+ "subnetId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "tags": {"value": {"key": "super=value"}}}, "template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {"subnetId": {"type": "string"},
+ "privateIPAllocationMethod": {"type": "string"}, "name": {"type": "string"},
+ "location": {"type": "string"}, "backendAddressPools": {"type": "array"}, "tags":
+ {"type": "object"}}, "resources": [{"properties": {"backendAddressPools": "[parameters(\''backendAddressPools\'')]",
+ "frontendIPConfigurations": [{"properties": {"privateIPAllocationMethod": "[parameters(\''privateIPAllocationMethod\'')]",
+ "subnet": {"id": "[parameters(\''subnetId\'')]"}}, "name": "LoadBalancerFrontEnd"}]},
+ "name": "[parameters(\''name\'')]", "location": "[parameters(\''location\'')]",
+ "apiVersion": "2016-03-30", "tags": "[parameters(\''tags\'')]", "dependsOn":
+ [], "type": "Microsoft.Network/loadBalancers"}]}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group deployment validate]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['1375']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/deployment_dry_run","name":"deployment_dry_run","properties":{"templateHash":"11008216777840368577","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"name":{"type":"String","value":"test-lb"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"location":{"type":"String","value":"westus"},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T18:43:26.7115291Z","duration":"PT0S","correlationId":"cd63368b-4695-4428-8765-068c474c4d71","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"apiVersion":"2016-03-30","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb","name":"test-lb","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{"key":"super=value"},"properties":{"backendAddressPools":[{"name":"bepool1"},{"name":"bepool2"}],"frontendIPConfigurations":[{"properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAllocationMethod":"Dynamic"},"name":"LoadBalancerFrontEnd"}]}}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/deployment_dry_run","name":"deployment_dry_run","properties":{"templateHash":"1006290863382826055","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"name":{"type":"String","value":"test-lb"},"location":{"type":"String","value":"westus"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-18T19:21:33.6875632Z","duration":"PT0S","correlationId":"12fbaa0f-b0e2-4059-b853-dccf26576f33","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"apiVersion":"2016-03-30","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb","name":"test-lb","type":"Microsoft.Network/loadBalancers","location":"westus","tags":{"key":"super=value"},"properties":{"backendAddressPools":[{"name":"bepool1"},{"name":"bepool2"}],"frontendIPConfigurations":[{"properties":{"privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}},"name":"LoadBalancerFrontEnd"}]}}]}}'}
headers:
cache-control: [no-cache]
- content-length: ['1936']
+ content-length: ['1935']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:26 GMT']
+ date: ['Wed, 18 Oct 2017 19:21:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: [Accept-Encoding]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1194']
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"mode": "Incremental", "template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "resources": [{"properties": {"backendAddressPools": "[parameters(\''backendAddressPools\'')]",
- "frontendIPConfigurations": [{"properties": {"subnet": {"id": "[parameters(\''subnetId\'')]"},
- "privateIPAllocationMethod": "[parameters(\''privateIPAllocationMethod\'')]"},
- "name": "LoadBalancerFrontEnd"}]}, "name": "[parameters(\''name\'')]", "type":
- "Microsoft.Network/loadBalancers", "dependsOn": [], "tags": "[parameters(\''tags\'')]",
- "location": "[parameters(\''location\'')]", "apiVersion": "2016-03-30"}], "contentVersion":
- "1.0.0.0", "parameters": {"subnetId": {"type": "string"}, "name": {"type": "string"},
- "backendAddressPools": {"type": "array"}, "privateIPAllocationMethod": {"type":
- "string"}, "location": {"type": "string"}, "tags": {"type": "object"}}}, "parameters":
- {"tags": {"value": {"key": "super=value"}}, "name": {"value": "test-lb"}, "backendAddressPools":
- {"value": [{"name": "bepool1"}, {"name": "bepool2"}]}, "subnetId": {"value":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "location": {"value": "westus"}, "privateIPAllocationMethod": {"value": "Dynamic"}}}}'''
+ body: 'b''{"properties": {"mode": "Incremental", "parameters": {"backendAddressPools":
+ {"value": [{"name": "bepool1"}, {"name": "bepool2"}]}, "privateIPAllocationMethod":
+ {"value": "Dynamic"}, "name": {"value": "test-lb"}, "location": {"value": "westus"},
+ "subnetId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "tags": {"value": {"key": "super=value"}}}, "template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {"subnetId": {"type": "string"},
+ "privateIPAllocationMethod": {"type": "string"}, "name": {"type": "string"},
+ "location": {"type": "string"}, "backendAddressPools": {"type": "array"}, "tags":
+ {"type": "object"}}, "resources": [{"properties": {"backendAddressPools": "[parameters(\''backendAddressPools\'')]",
+ "frontendIPConfigurations": [{"properties": {"privateIPAllocationMethod": "[parameters(\''privateIPAllocationMethod\'')]",
+ "subnet": {"id": "[parameters(\''subnetId\'')]"}}, "name": "LoadBalancerFrontEnd"}]},
+ "name": "[parameters(\''name\'')]", "location": "[parameters(\''location\'')]",
+ "apiVersion": "2016-03-30", "tags": "[parameters(\''tags\'')]", "dependsOn":
+ [], "type": "Microsoft.Network/loadBalancers"}]}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group deployment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['1375']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"11008216777840368577","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"name":{"type":"String","value":"test-lb"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"location":{"type":"String","value":"westus"},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T18:43:27.9516743Z","duration":"PT0.1702975S","correlationId":"bbcdf706-c4be-4450-9c67-be82361c38e8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"1006290863382826055","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"name":{"type":"String","value":"test-lb"},"location":{"type":"String","value":"westus"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-10-18T19:21:35.4955604Z","duration":"PT0.6897506S","correlationId":"c2e68ef3-9021-4663-bdec-37a028361112","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[]}}'}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment/operationStatuses/08586957602776962415?api-version=2017-05-10']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment/operationStatuses/08586932523906718083?api-version=2017-05-10']
cache-control: [no-cache]
- content-length: ['1171']
+ content-length: ['1170']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:27 GMT']
+ date: ['Wed, 18 Oct 2017 19:21:35 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group deployment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586957602776962415?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586932523906718083?api-version=2017-05-10
response:
body: {string: '{"status":"Succeeded"}'}
headers:
cache-control: [no-cache]
content-length: ['22']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:57 GMT']
+ date: ['Wed, 18 Oct 2017 19:22:05 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -280,22 +280,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group deployment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"11008216777840368577","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"name":{"type":"String","value":"test-lb"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"location":{"type":"String","value":"westus"},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T18:43:29.4930452Z","duration":"PT1.7116684S","correlationId":"bbcdf706-c4be-4450-9c67-be82361c38e8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"1006290863382826055","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"name":{"type":"String","value":"test-lb"},"location":{"type":"String","value":"westus"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-18T19:21:37.4997879Z","duration":"PT2.6939781S","correlationId":"c2e68ef3-9021-4663-bdec-37a028361112","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb"}]}}'}
headers:
cache-control: [no-cache]
- content-length: ['1394']
+ content-length: ['1393']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:58 GMT']
+ date: ['Wed, 18 Oct 2017 19:22:06 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -306,35 +306,35 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network lb show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"test-lb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb\"\
- ,\r\n \"etag\": \"W/\\\"fa1222bd-69f9-4717-8722-7311782603da\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"aff32ef5-07db-427a-9fdb-3cffa33a4797\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {\r\n \"key\": \"super=value\"\r\n },\r\n \"properties\"\
: {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"a051c3da-a952-444e-9733-d59fd743aadd\",\r\n \"frontendIPConfigurations\"\
+ \ \"2e732ab1-a560-465f-9b88-a9c1a46bce29\",\r\n \"frontendIPConfigurations\"\
: [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb/frontendIPConfigurations/LoadBalancerFrontEnd\"\
- ,\r\n \"etag\": \"W/\\\"fa1222bd-69f9-4717-8722-7311782603da\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"aff32ef5-07db-427a-9fdb-3cffa33a4797\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
: \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\
: [\r\n {\r\n \"name\": \"bepool1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb/backendAddressPools/bepool1\"\
- ,\r\n \"etag\": \"W/\\\"fa1222bd-69f9-4717-8722-7311782603da\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"aff32ef5-07db-427a-9fdb-3cffa33a4797\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n },\r\n {\r\n \"name\": \"bepool2\",\r\n\
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb/backendAddressPools/bepool2\"\
- ,\r\n \"etag\": \"W/\\\"fa1222bd-69f9-4717-8722-7311782603da\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"aff32ef5-07db-427a-9fdb-3cffa33a4797\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [],\r\n\
\ \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\"\
@@ -344,8 +344,8 @@ interactions:
cache-control: [no-cache]
content-length: ['2459']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:59 GMT']
- etag: [W/"fa1222bd-69f9-4717-8722-7311782603da"]
+ date: ['Wed, 18 Oct 2017 19:22:07 GMT']
+ etag: [W/"aff32ef5-07db-427a-9fdb-3cffa33a4797"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -358,22 +358,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group deployment list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/?api-version=2017-05-10
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"11008216777840368577","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"name":{"type":"String","value":"test-lb"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"location":{"type":"String","value":"westus"},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T18:43:29.4930452Z","duration":"PT1.7116684S","correlationId":"bbcdf706-c4be-4450-9c67-be82361c38e8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb"}]}}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"1006290863382826055","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"name":{"type":"String","value":"test-lb"},"location":{"type":"String","value":"westus"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-18T19:21:37.4997879Z","duration":"PT2.6939781S","correlationId":"c2e68ef3-9021-4663-bdec-37a028361112","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb"}]}}]}'}
headers:
cache-control: [no-cache]
- content-length: ['1406']
+ content-length: ['1405']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:59 GMT']
+ date: ['Wed, 18 Oct 2017 19:22:07 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -384,22 +384,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group deployment show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"11008216777840368577","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"name":{"type":"String","value":"test-lb"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"location":{"type":"String","value":"westus"},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T18:43:29.4930452Z","duration":"PT1.7116684S","correlationId":"bbcdf706-c4be-4450-9c67-be82361c38e8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"1006290863382826055","parameters":{"subnetId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"},"name":{"type":"String","value":"test-lb"},"location":{"type":"String","value":"westus"},"backendAddressPools":{"type":"Array","value":[{"name":"bepool1"},{"name":"bepool2"}]},"tags":{"type":"Object","value":{"key":"super=value"}}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-10-18T19:21:37.4997879Z","duration":"PT2.6939781S","correlationId":"c2e68ef3-9021-4663-bdec-37a028361112","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb"}]}}'}
headers:
cache-control: [no-cache]
- content-length: ['1394']
+ content-length: ['1393']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:59 GMT']
+ date: ['Wed, 18 Oct 2017 19:22:07 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -410,22 +410,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group deployment operation list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001/deployments/mock-deployment/operations?api-version=2017-05-10
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment/operations/A91A57BAFF7A9BDD","operationId":"A91A57BAFF7A9BDD","properties":{"provisioningOperation":"Create","provisioningState":"Succeeded","timestamp":"2017-09-19T18:43:29.2667366Z","duration":"PT0.6214615S","trackingId":"d8f97cc4-7ba8-4fa4-91ab-d65976929f38","serviceRequestId":"dc095eef-2b3d-4a30-80b7-1314d2e3d946","statusCode":"Created","targetResource":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"test-lb"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment/operations/08586957602776962415","operationId":"08586957602776962415","properties":{"provisioningOperation":"EvaluateDeploymentOutput","provisioningState":"Succeeded","timestamp":"2017-09-19T18:43:29.4631848Z","duration":"PT0.1285249S","trackingId":"e222b36e-bc01-4cd4-b7f5-56f8e9093e34","statusCode":"OK","statusMessage":null}}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment/operations/3323DCC16B81F6F8","operationId":"3323DCC16B81F6F8","properties":{"provisioningOperation":"Create","provisioningState":"Succeeded","timestamp":"2017-10-18T19:21:37.2853529Z","duration":"PT1.1933231S","trackingId":"f8d65b03-c37e-4164-968d-2d76fd4aa376","serviceRequestId":"12f44356-c0eb-447f-a25c-0abf5a7e75cb","statusCode":"Created","targetResource":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Network/loadBalancers/test-lb","resourceType":"Microsoft.Network/loadBalancers","resourceName":"test-lb"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_deployment000001/providers/Microsoft.Resources/deployments/azure-cli-deployment/operations/08586932523906718083","operationId":"08586932523906718083","properties":{"provisioningOperation":"EvaluateDeploymentOutput","provisioningState":"Succeeded","timestamp":"2017-10-18T19:21:37.4628671Z","duration":"PT0.1309473S","trackingId":"189d0fc0-3250-4c78-8c97-5febd188ab9b","statusCode":"OK","statusMessage":null}}]}'}
headers:
cache-control: [no-cache]
content-length: ['1404']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:43:59 GMT']
+ date: ['Wed, 18 Oct 2017 19:22:07 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -436,13 +436,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_deployment000001?api-version=2017-05-10
@@ -451,11 +451,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:44:00 GMT']
+ date: ['Wed, 18 Oct 2017 19:22:09 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGREVQTE9ZTUVOVDVPUkpTNzdBV1M0NDVZNlcySzNINUtETnxDNzdCRTNBMEZFMjYyRUJDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGREVQTE9ZTUVOVFRXUlNNR1lFNUFUM1U2WVZTVkJLR0lXTHxGQTBFNjU4RTAyODQwNTJELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1177']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_group_deployment_no_wait.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_group_deployment_no_wait.yaml
index 7fb1086217c..8ca65b34378 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_group_deployment_no_wait.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_group_deployment_no_wait.yaml
@@ -1,131 +1,183 @@
interactions:
- request:
- body: '{"properties": {"mode": "Incremental", "template": {"contentVersion": "1.0.0.0",
- "outputs": {"NewNSG": {"type": "object", "value": "[reference(parameters(''name''))]"}},
- "resources": [{"name": "[parameters(''name'')]", "location": "[parameters(''location'')]",
- "type": "Microsoft.Network/networkSecurityGroups", "dependsOn": [], "properties":
- {"securityRules": []}, "apiVersion": "2015-06-15"}], "parameters": {"name":
- {"type": "string", "metadata": {"description": "Name of the network security
- group."}}, "location": {"type": "string", "metadata": {"description": "Location
- for the network security group."}, "defaultValue": "[resourceGroup().location]"}},
- "variables": {}, "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"},
- "parameters": {"name": {"value": "azure-cli-deploy-test-nsg1"}, "location":
- {"value": "westus"}}}}'
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['863']
+ Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [712eee3a-9d6a-11e7-839a-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_group_deployment_no_wait000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"13259351277528814692","parameters":{"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-09-19T18:43:36.0668581Z","duration":"PT0.4883786S","correlationId":"9ab9c601-dbaf-4426-929d-6e5049c3aee6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001","name":"cli_test_group_deployment_no_wait000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 24 Jul 2017 17:47:01 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
+- request:
+ body: '{"properties": {"mode": "Incremental", "template": {"parameters": {"location":
+ {"metadata": {"description": "Location for the network security group."}, "type":
+ "string", "defaultValue": "[resourceGroup().location]"}, "name": {"metadata":
+ {"description": "Name of the network security group."}, "type": "string"}},
+ "resources": [{"location": "[parameters(''location'')]", "dependsOn": [], "apiVersion":
+ "2015-06-15", "name": "[parameters(''name'')]", "properties": {"securityRules":
+ []}, "type": "Microsoft.Network/networkSecurityGroups"}], "outputs": {"NewNSG":
+ {"type": "object", "value": "[reference(parameters(''name''))]"}}, "variables":
+ {}, "contentVersion": "1.0.0.0", "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"},
+ "parameters": {"location": {"value": "westus"}, "name": {"value": "azure-cli-deploy-test-nsg1"}}}}'
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/azure-cli-deployment/operationStatuses/08586957602698991339?api-version=2017-05-10']
- Cache-Control: [no-cache]
- Content-Length: ['700']
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['863']
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:43:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1182']
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"3550658671258663593","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2017-07-24T17:47:07.4253548Z","duration":"PT0.3445485S","correlationId":"8482a9dd-bbcb-4e93-813c-c0f8acdf9b72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}'}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/azure-cli-deployment/operationStatuses/08587006884583968101?api-version=2017-05-10']
+ cache-control: [no-cache]
+ content-length: ['743']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 24 Jul 2017 17:47:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [7222af26-9d6a-11e7-9519-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"13259351277528814692","parameters":{"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Running","timestamp":"2017-09-19T18:43:36.6272477Z","duration":"PT1.0487682S","correlationId":"9ab9c601-dbaf-4426-929d-6e5049c3aee6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"3550658671258663593","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Running","timestamp":"2017-07-24T17:47:07.7850765Z","duration":"PT0.7042702S","correlationId":"8482a9dd-bbcb-4e93-813c-c0f8acdf9b72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[]}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:43:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['5']
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['699']
+ cache-control: [no-cache]
+ content-length: ['742']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 24 Jul 2017 17:47:07 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [843ae0f0-9d6a-11e7-8758-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"13259351277528814692","parameters":{"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T18:43:52.9267889Z","duration":"PT17.3483094S","correlationId":"9ab9c601-dbaf-4426-929d-6e5049c3aee6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"3ee12fc3-e89a-4d76-9607-bfd467453c8a","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound"}}]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"3550658671258663593","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-07-24T17:47:24.5446299Z","duration":"PT17.4638236S","correlationId":"8482a9dd-bbcb-4e93-813c-c0f8acdf9b72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"3236a185-7b74-4348-bcfa-45038a3ee84d","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound"}}]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:44:06 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['4684']
+ cache-control: [no-cache]
+ content-length: ['5035']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 24 Jul 2017 17:47:38 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [8477a67e-9d6a-11e7-b95c-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-deployment-test/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"13259351277528814692","parameters":{"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"},"location":{"type":"String","value":"westus"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-09-19T18:43:52.9267889Z","duration":"PT17.3483094S","correlationId":"9ab9c601-dbaf-4426-929d-6e5049c3aee6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"3ee12fc3-e89a-4d76-9607-bfd467453c8a","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","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/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"c4f8f704-8fdc-430a-b594-aff57e03129d\"","properties":{"provisioningState":"Succeeded","description":"Deny
- all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound"}}]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-deployment-test/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Resources/deployments/azure-cli-deployment","name":"azure-cli-deployment","properties":{"templateHash":"3550658671258663593","parameters":{"location":{"type":"String","value":"westus"},"name":{"type":"String","value":"azure-cli-deploy-test-nsg1"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2017-07-24T17:47:24.5446299Z","duration":"PT17.4638236S","correlationId":"8482a9dd-bbcb-4e93-813c-c0f8acdf9b72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]}]}],"dependencies":[],"outputs":{"newNSG":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"3236a185-7b74-4348-bcfa-45038a3ee84d","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","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_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"6c012790-d337-4e7c-9780-3b396469d8a7\"","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound"}}]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_group_deployment_no_wait000001/providers/Microsoft.Network/networkSecurityGroups/azure-cli-deploy-test-nsg1"}]}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:44:06 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['4684']
+ cache-control: [no-cache]
+ content-length: ['5035']
+ content-type: [application/json; charset=utf-8]
+ date: ['Mon, 24 Jul 2017 17:47:38 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_group_deployment_no_wait000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Mon, 24 Jul 2017 17:47:39 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGR1JPVVA6NUZERVBMT1lNRU5UOjVGTk86NUZXQUlUSzZKR3wyMzYzRTVEODlFQzM3MDAwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_lock_commands_with_ids.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_lock_commands_with_ids.yaml
index d3aa29bc46f..9887678461c 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_lock_commands_with_ids.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_lock_commands_with_ids.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001?api-version=2017-05-10
@@ -20,23 +20,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:47:59 GMT']
+ date: ['Wed, 18 Oct 2017 20:44:47 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1092']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001?api-version=2017-05-10
@@ -46,72 +46,72 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:47:59 GMT']
+ date: ['Wed, 18 Oct 2017 20:44:48 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}, "dhcpOptions": {}}, "tags": {}}'
+ body: '{"tags": {}, "location": "westus", "properties": {"addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}, "dhcpOptions": {}}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['123']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-lock-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"36d23362-e4ea-49e7-9ef5-4ec9d274b5c4\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"c57fd4d4-b0a0-4f6d-83fa-8aa473b7d1bd\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"d6e77b3b-2975-4948-9d2a-3dcb6ed30377\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"756674c5-4930-4d8a-9666-ea552dec9d0c\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\
\ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\
: false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8818f5d3-3ccc-45f4-9a13-006bf12ac573?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/14e3266e-eefe-4d6f-a10b-5a01c70208c4?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['816']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:00 GMT']
+ date: ['Wed, 18 Oct 2017 20:44:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8818f5d3-3ccc-45f4-9a13-006bf12ac573?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/14e3266e-eefe-4d6f-a10b-5a01c70208c4?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:03 GMT']
+ date: ['Wed, 18 Oct 2017 20:44:51 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -124,21 +124,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-lock-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"6bdb71eb-a66e-4e0a-9565-189420efae4c\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f74bdc29-ac78-42c6-847e-b8558ade43d2\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"d6e77b3b-2975-4948-9d2a-3dcb6ed30377\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"756674c5-4930-4d8a-9666-ea552dec9d0c\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\
@@ -148,8 +148,8 @@ interactions:
cache-control: [no-cache]
content-length: ['817']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:03 GMT']
- etag: [W/"6bdb71eb-a66e-4e0a-9565-189420efae4c"]
+ date: ['Wed, 18 Oct 2017 20:44:52 GMT']
+ etag: [W/"f74bdc29-ac78-42c6-847e-b8558ade43d2"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -158,31 +158,31 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"addressPrefix": "10.0.0.0/16"}, "name": "cli-lock-subnet000003"}'''
+ body: 'b''{"name": "cli-lock-subnet000003", "properties": {"addressPrefix": "10.0.0.0/16"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['90']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-lock-subnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"bec1c613-f2bc-47de-8174-a8fa7bb8cc4c\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"8a9b18c0-399a-413c-9e16-54399b79415e\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7bda5350-bb4e-4f7c-8383-bf6f2ced938e?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1325e17d-5a90-47e9-a4a3-1d117f3249b2?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['473']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:04 GMT']
+ date: ['Wed, 18 Oct 2017 20:44:53 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -194,22 +194,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7bda5350-bb4e-4f7c-8383-bf6f2ced938e?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1325e17d-5a90-47e9-a4a3-1d117f3249b2?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:07 GMT']
+ date: ['Wed, 18 Oct 2017 20:44:56 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -222,26 +222,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet subnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli-lock-subnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"1f30d188-2bee-4172-979a-1601df233aac\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f213dd6e-716d-4da8-b7a1-6a0d0ac8088e\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['474']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:08 GMT']
- etag: [W/"1f30d188-2bee-4172-979a-1601df233aac"]
+ date: ['Wed, 18 Oct 2017 20:44:56 GMT']
+ etag: [W/"f213dd6e-716d-4da8-b7a1-6a0d0ac8088e"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -250,16 +250,16 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"level": "CanNotDelete"}, "name": "cli-test-lock000004"}'''
+ body: 'b''{"name": "cli-test-lock000004", "properties": {"level": "CanNotDelete"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['103']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004?api-version=2016-09-01
@@ -269,23 +269,23 @@ interactions:
cache-control: [no-cache]
content-length: ['379']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:08 GMT']
+ date: ['Wed, 18 Oct 2017 20:44:59 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
- body: 'b''{"properties": {"level": "CanNotDelete"}, "name": "cli-test-lock000005"}'''
+ body: 'b''{"name": "cli-test-lock000005", "properties": {"level": "CanNotDelete"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['103']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005?api-version=2016-09-01
@@ -295,23 +295,23 @@ interactions:
cache-control: [no-cache]
content-length: ['454']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:09 GMT']
+ date: ['Wed, 18 Oct 2017 20:44:59 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 201, message: Created}
- request:
- body: 'b''{"properties": {"level": "CanNotDelete"}, "name": "cli-test-lock000006"}'''
+ body: 'b''{"name": "cli-test-lock000006", "properties": {"level": "CanNotDelete"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['73']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006?api-version=2016-09-01
@@ -321,27 +321,27 @@ interactions:
cache-control: [no-cache]
content-length: ['433']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:09 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:00 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -349,19 +349,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['7627']
+ content-length: ['4306']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:09 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:00 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -373,11 +372,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004?api-version=2016-09-01
@@ -387,7 +386,7 @@ interactions:
cache-control: [no-cache]
content-length: ['379']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:09 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:00 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -399,16 +398,16 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -416,19 +415,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['7627']
+ content-length: ['4306']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:09 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:01 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -440,11 +438,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005?api-version=2016-09-01
@@ -454,7 +452,7 @@ interactions:
cache-control: [no-cache]
content-length: ['454']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:09 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:01 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -466,16 +464,16 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -483,19 +481,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['7627']
+ content-length: ['4306']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:10 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -507,11 +504,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006?api-version=2016-09-01
@@ -521,7 +518,7 @@ interactions:
cache-control: [no-cache]
content-length: ['433']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:11 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -533,16 +530,16 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -550,19 +547,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['7627']
+ content-length: ['4306']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:10 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -574,11 +570,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004?api-version=2016-09-01
@@ -588,7 +584,7 @@ interactions:
cache-control: [no-cache]
content-length: ['379']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:11 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -596,17 +592,17 @@ interactions:
vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"level": "ReadOnly", "notes": "somenotes"}, "name":
- "cli-test-lock000004"}'''
+ body: 'b''{"name": "cli-test-lock000004", "properties": {"level": "ReadOnly",
+ "notes": "somenotes"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['121']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004?api-version=2016-09-01
@@ -616,29 +612,29 @@ interactions:
cache-control: [no-cache]
content-length: ['395']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:11 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:03 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: ['Accept-Encoding,Accept-Encoding']
- x-ms-ratelimit-remaining-subscription-writes: ['935']
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -646,19 +642,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['7643']
+ content-length: ['4322']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:11 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:03 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -670,11 +665,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005?api-version=2016-09-01
@@ -684,7 +679,7 @@ interactions:
cache-control: [no-cache]
content-length: ['454']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:11 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:03 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -692,17 +687,17 @@ interactions:
vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"level": "ReadOnly", "notes": "somenotes"}, "name":
- "cli-test-lock000005"}'''
+ body: 'b''{"name": "cli-test-lock000005", "properties": {"level": "ReadOnly",
+ "notes": "somenotes"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['121']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005?api-version=2016-09-01
@@ -712,29 +707,29 @@ interactions:
cache-control: [no-cache]
content-length: ['470']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:12 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:04 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: ['Accept-Encoding,Accept-Encoding']
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1194']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -742,19 +737,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['7643']
+ content-length: ['4338']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:11 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:04 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -766,11 +760,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006?api-version=2016-09-01
@@ -780,7 +774,7 @@ interactions:
cache-control: [no-cache]
content-length: ['433']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:12 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:05 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -788,17 +782,17 @@ interactions:
vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''{"properties": {"level": "ReadOnly", "notes": "somenotes"}, "name":
- "cli-test-lock000006"}'''
+ body: 'b''{"name": "cli-test-lock000006", "properties": {"level": "ReadOnly",
+ "notes": "somenotes"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['91']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006?api-version=2016-09-01
@@ -808,29 +802,29 @@ interactions:
cache-control: [no-cache]
content-length: ['449']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:13 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:06 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: ['Accept-Encoding,Accept-Encoding']
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -838,19 +832,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004","type":"Microsoft.Authorization/locks","name":"cli-test-lock000004"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['7675']
+ content-length: ['4354']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:14 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:06 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -862,12 +855,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks/cli-test-lock000004?api-version=2016-09-01
@@ -876,27 +869,27 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:48:14 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:07 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1195']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -904,19 +897,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['7279']
+ content-length: ['3958']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:14 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:07 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -928,12 +920,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005?api-version=2016-09-01
@@ -942,27 +934,27 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:48:14 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:08 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1191']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
response:
- body: {string: '{"value":[{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_readonly_resource_group_lockyg55mqk35gnyugailubkgryitidvrczwp5xsvj/providers/Microsoft.Authorization/locks/cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp","type":"Microsoft.Authorization/locks","name":"cli-test-lockmirbpraflhwmjkhcbmpimd2vlzjrcvkrnkp"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cannotdelete_resource_group_lockshyn6vu4ouyymz7cn6eqcj3hngarh6ahhn/providers/Microsoft.Authorization/locks/cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl","type":"Microsoft.Authorization/locks","name":"cli-test-lockxljkeaunujkjx3ymbsgexg36nnd3cabthkl"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"},{"properties":{"level":"ReadOnly"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_readonly_resource_lockgtrguxbytxj6d2mvdjo6pca5scgafx55no2tafhh77tg/providers/Microsoft.Network/virtualNetworks/cli.lock.rsrchjnwouiiaquvdi7js/providers/Microsoft.Authorization/locks/cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2","type":"Microsoft.Authorization/locks","name":"cli-test-lockrx3wngzw6jdsnnyk4iyzpeyvqwc6ndwnl4thd7un75prfeznqaqazwdjnnbh2"},{"properties":{"level":"CanNotDelete","notes":"please
+ body: {string: '{"value":[{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Authorization/locks/mylock","type":"Microsoft.Authorization/locks","name":"mylock"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/providers/Microsoft.Authorization/locks/cli-test-lock000005","type":"Microsoft.Authorization/locks","name":"cli-test-lock000005"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":"please
keep"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Authorization/locks/sdk-test-lock","type":"Microsoft.Authorization/locks","name":"sdk-test-lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
@@ -970,19 +962,18 @@ interactions:
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Pending
- support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Authorization/locks/cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan","type":"Microsoft.Authorization/locks","name":"cli-test-locklsvjitahs5t7vtj7imsjhelzhofmwlit3xlan"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/providers/Microsoft.Authorization/locks/cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l","type":"Microsoft.Authorization/locks","name":"cli-test-lockyo4iyq5xl26e4u75fpt65srzhpieydriqkl7l"},{"properties":{"level":"CanNotDelete"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids4d6txrywdfjatmqhkralj2yadvydlrfz3shyafymhpbg/providers/Microsoft.Network/virtualNetworks/cli-lock-vneth52byta2c2bjk7wo6/subnets/cli-lock-subnetmhdfpf233zerobt/providers/Microsoft.Authorization/locks/cli-test-lockzf5vqre","type":"Microsoft.Authorization/locks","name":"cli-test-lockzf5vqre"},{"properties":{"level":"CanNotDelete","notes":"Reserved
+ support ticket: REG:117080316140410"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2del/providers/Microsoft.Authorization/locks/nottodelete","type":"Microsoft.Authorization/locks","name":"nottodelete"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"ReadOnly","notes":"somenotes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006","type":"Microsoft.Authorization/locks","name":"cli-test-lock000006"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":"Until
- work is done, keep this around!"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1/providers/Microsoft.Authorization/locks/lock1","type":"Microsoft.Authorization/locks","name":"lock1"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['6808']
+ content-length: ['3958']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:14 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:08 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -994,12 +985,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Network/virtualNetworks/cli-lock-vnet000002/subnets/cli-lock-subnet000003/providers/Microsoft.Authorization/locks/cli-test-lock000006?api-version=2016-09-01
@@ -1008,22 +999,22 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:48:15 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:09 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [lock list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids000001/providers/Microsoft.Authorization/locks?api-version=2016-09-01
@@ -1033,7 +1024,7 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:48:15 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:10 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1045,13 +1036,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_lock_commands_with_ids000001?api-version=2017-05-10
@@ -1060,9 +1051,9 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:48:15 GMT']
+ date: ['Wed, 18 Oct 2017 20:45:12 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTE9DSzo1RkNPTU1BTkRTOjVGV0lUSDo1RklEU0Q1WTNUQnwzNTczNkM2QUE0MDFGQTgxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTE9DSzo1RkNPTU1BTkRTOjVGV0lUSDo1RklEUzNJNzVBSHxDMTQxRUU5RjI4RENCNDNBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1198']
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_create.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_create.yaml
index 4c53eae64ba..0e4abe67e92 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_create.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_create.yaml
@@ -1,16 +1,43 @@
interactions:
+- request:
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create000001","name":"cli_test_resource_create000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:53:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [43f4199e-9d6a-11e7-aef8-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.web?api-version=2017-05-10
response:
@@ -21,167 +48,147 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","West US 2","MSFT West US","MSFT East US","MSFT East
Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central
- US (Stage)","North Central US (Stage)","East US 2 EUAP","Central US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South
+ US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossSubscriptionResourceMove"},{"resourceType":"serverFarms","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"None"},{"resourceType":"serverFarms","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"serverFarms/workers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -189,16 +196,14 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"sites/slots","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -206,8 +211,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":["East
Asia (Stage)"],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":["East
Asia (Stage)"],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":["East
@@ -221,8 +225,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"hostingEnvironments","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -261,8 +264,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
@@ -303,80 +305,63 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South
- Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
- South","West US","East US","Japan West","Japan East","East Asia","East US
- 2","North Central US","Central US","Brazil South","Australia East","Australia
- Southeast","West India","Central India","South India","Canada Central","Canada
- East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
- East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South
- Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
- South","West US","East US","Japan West","Japan East","East Asia","East US
- 2","North Central US","Central US","Brazil South","Australia East","Australia
- Southeast","West India","Central India","South India","Canada Central","Canada
- East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
- East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"}'}
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:18 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['32942']
+ cache-control: [no-cache]
+ content-length: ['30376']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:53:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "sku": {"name": "B1", "tier": "BASIC"}}'
+ body: '{"sku": {"tier": "BASIC", "name": "B1"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['62']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [442a1026-9d6a-11e7-aaee-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create/providers/Microsoft.web/serverFarms/cli_res_create_plan?api-version=2016-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create000001/providers/Microsoft.web/serverFarms/cli_res_create_plan?api-version=2016-09-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create/providers/Microsoft.Web/serverfarms/cli_res_create_plan","name":"cli_res_create_plan","type":"Microsoft.Web/serverfarms","kind":"app","location":"West
- US","properties":{"serverFarmId":0,"name":"cli_res_create_plan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_resource_create-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_resource_create","reserved":false,"mdmId":"waws-prod-bay-075_10854","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create000001/providers/Microsoft.Web/serverfarms/cli_res_create_plan","name":"cli_res_create_plan","type":"Microsoft.Web/serverfarms","kind":"app","location":"West
+ US","properties":{"serverFarmId":0,"name":"cli_res_create_plan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_resource_create000001-WestUSwebspace","subscription":"6b085460-5f21-477e-ba44-1035046e9101","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"numberOfSites":0,"hostingEnvironmentId":null,"tags":null,"kind":"app","resourceGroup":"cli_test_resource_create000001","reserved":false,"mdmId":"waws-prod-bay-075_9278","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json]
- Date: ['Tue, 19 Sep 2017 18:42:26 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Powered-By: [ASP.NET]
- content-length: ['1229']
- x-ms-ratelimit-remaining-subscription-writes: ['1171']
+ cache-control: [no-cache]
+ content-length: ['1322']
+ content-type: [application/json]
+ date: ['Thu, 20 Jul 2017 23:53:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [490b38b8-9d6a-11e7-a3a5-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.web?api-version=2017-05-10
response:
@@ -387,167 +372,147 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","West US 2","MSFT West US","MSFT East US","MSFT East
Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central
- US (Stage)","North Central US (Stage)","East US 2 EUAP","Central US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South
+ US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossSubscriptionResourceMove"},{"resourceType":"serverFarms","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"None"},{"resourceType":"serverFarms","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"serverFarms/workers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -555,16 +520,14 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"sites/slots","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -572,8 +535,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":["East
Asia (Stage)"],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":["East
Asia (Stage)"],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":["East
@@ -587,8 +549,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"hostingEnvironments","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -627,8 +588,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
@@ -669,105 +629,88 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South
- Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
- South","West US","East US","Japan West","Japan East","East Asia","East US
- 2","North Central US","Central US","Brazil South","Australia East","Australia
- Southeast","West India","Central India","South India","Canada Central","Canada
- East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
- East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South
- Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
- South","West US","East US","Japan West","Japan East","East Asia","East US
- 2","North Central US","Central US","Brazil South","Australia East","Australia
- Southeast","West India","Central India","South India","Canada Central","Canada
- East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
- East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"}'}
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:26 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['32942']
+ cache-control: [no-cache]
+ content-length: ['30376']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:53:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [494a1226-9d6a-11e7-a4af-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create","name":"cli_test_resource_create","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create000001","name":"cli_test_resource_create000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:27 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['238']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:53:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"serverFarmId": "cli_res_create_plan"}}'
+ body: '{"properties": {"serverFarmId": "cli_res_create_plan"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['77']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [49592ff8-9d6a-11e7-b2eb-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create/providers/Microsoft.web/sites/clirescreateweb?api-version=2016-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create000001/providers/Microsoft.web/sites/clirescreateweb?api-version=2016-08-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create/providers/Microsoft.Web/sites/clirescreateweb","name":"clirescreateweb","type":"Microsoft.Web/sites","kind":"app","location":"westus","properties":{"name":"clirescreateweb","state":"Running","hostNames":["clirescreateweb.azurewebsites.net"],"webSpace":"cli_test_resource_create-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_resource_create-WestUSwebspace/sites/clirescreateweb","repositorySiteName":"clirescreateweb","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["clirescreateweb.azurewebsites.net","clirescreateweb.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"clirescreateweb.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clirescreateweb.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create/providers/Microsoft.Web/serverfarms/cli_res_create_plan","reserved":false,"lastModifiedTimeUtc":"2017-09-19T18:42:30.1933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"clirescreateweb","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"snapshotInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_resource_create","defaultHostName":"clirescreateweb.azurewebsites.net","slotSwapStatus":null}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create000001/providers/Microsoft.Web/sites/clirescreateweb","name":"clirescreateweb","type":"Microsoft.Web/sites","kind":"app","location":"westus","properties":{"name":"clirescreateweb","state":"Running","hostNames":["clirescreateweb.azurewebsites.net"],"webSpace":"cli_test_resource_create000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_resource_create000001-WestUSwebspace/sites/clirescreateweb","repositorySiteName":"clirescreateweb","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["clirescreateweb.azurewebsites.net","clirescreateweb.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"clirescreateweb.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clirescreateweb.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create000001/providers/Microsoft.Web/serverfarms/cli_res_create_plan","reserved":false,"lastModifiedTimeUtc":"2017-07-20T23:53:25.28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"clirescreateweb","trafficManagerHostNames":null,"sku":"Basic","premiumAppDeployed":null,"scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":null,"containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_resource_create000001","defaultHostName":"clirescreateweb.azurewebsites.net","slotSwapStatus":null}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json]
- Date: ['Tue, 19 Sep 2017 18:42:32 GMT']
- ETag: ['"1D331770C67ACEB"']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Powered-By: [ASP.NET]
- content-length: ['2742']
- x-ms-ratelimit-remaining-subscription-writes: ['1182']
+ cache-control: [no-cache]
+ content-length: ['2905']
+ content-type: [application/json]
+ date: ['Thu, 20 Jul 2017 23:53:26 GMT']
+ etag: ['"1D301B360813FD5"']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4c138b30-9d6a-11e7-b4a4-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web?api-version=2017-05-10
response:
@@ -778,167 +721,147 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","West US 2","MSFT West US","MSFT East US","MSFT East
Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central
- US (Stage)","North Central US (Stage)","East US 2 EUAP","Central US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South
+ US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossSubscriptionResourceMove"},{"resourceType":"serverFarms","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"None"},{"resourceType":"serverFarms","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"serverFarms/workers","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -946,16 +869,14 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"sites/slots","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -963,8 +884,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":["East
Asia (Stage)"],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":["East
Asia (Stage)"],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":["East
@@ -978,8 +898,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"capabilities":"CrossResourceGroupResourceMove,
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"hostingEnvironments","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
@@ -1018,8 +937,7 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South
Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
South","West US","East US","Japan West","Japan East","East Asia","East US
2","North Central US","Central US","Brazil South","Australia East","Australia
@@ -1060,92 +978,102 @@ interactions:
Southeast","West India","Central India","South India","Canada Central","Canada
East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South
- Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
- South","West US","East US","Japan West","Japan East","East Asia","East US
- 2","North Central US","Central US","Brazil South","Australia East","Australia
- Southeast","West India","Central India","South India","Canada Central","Canada
- East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
- East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South
- Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea
- South","West US","East US","Japan West","Japan East","East Asia","East US
- 2","North Central US","Central US","Brazil South","Australia East","Australia
- Southeast","West India","Central India","South India","Canada Central","Canada
- East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT
- East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia
- (Stage)","Central US (Stage)","North Central US (Stage)","East US 2 EUAP","Central
- US EUAP"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"}'}
+ (Stage)","Central US (Stage)","North Central US (Stage)"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['32942']
+ cache-control: [no-cache]
+ content-length: ['30376']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:53:26 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4c5358fe-9d6a-11e7-b853-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create","name":"cli_test_resource_create","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create000001","name":"cli_test_resource_create000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['238']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:53:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"location": "westus", "properties": {"key2": "value12"}}'
+ body: '{"properties": {"key2": "value12"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['57']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4c6e1f88-9d6a-11e7-8913-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create/providers/Microsoft.Web/sites/clirescreateweb/config/appsettings?api-version=2016-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create000001/providers/Microsoft.Web/sites/clirescreateweb/config/appsettings?api-version=2016-08-01
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create/providers/Microsoft.Web/sites/clirescreateweb/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_create000001/providers/Microsoft.Web/sites/clirescreateweb/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
US","properties":{"key2":"value12"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json]
- Date: ['Tue, 19 Sep 2017 18:42:34 GMT']
- ETag: ['"1D331770F02FE40"']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- X-AspNet-Version: [4.0.30319]
- X-Powered-By: [ASP.NET]
- content-length: ['281']
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ cache-control: [no-cache]
+ content-length: ['326']
+ content-type: [application/json]
+ date: ['Thu, 20 Jul 2017 23:53:29 GMT']
+ etag: ['"1D301B362B3CA40"']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-IIS/8.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
+ x-aspnet-version: [4.0.30319]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-powered-by: [ASP.NET]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_create000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 20 Jul 2017 23:53:30 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkVTT1VSQ0U6NUZDUkVBVEVHVEhXUEZCTkdFUlhXNENUSnwxMkZCRTJGQ0U2REY4NDNDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_group.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_group.yaml
index 37f17ebb76b..04ba4fff915 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_group.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_group.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2017-05-10
@@ -20,24 +20,24 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:40:07 GMT']
+ date: ['Thu, 20 Jul 2017 23:03:09 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ 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]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2017-05-10
@@ -46,9 +46,9 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:40:07 GMT']
+ date: ['Thu, 20 Jul 2017 23:03:09 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0dRVE9JSExTTDZMSFZYQVdONERBNnw3OEZDNUE2MzM3NDc2MjVCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0NVV1I2SlRRS1o3NUtZWkZUTERXRXwzNjI3OUJENjdEODgxNkM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1199']
@@ -58,23 +58,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0dRVE9JSExTTDZMSFZYQVdONERBNnw3OEZDNUE2MzM3NDc2MjVCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0NVV1I2SlRRS1o3NUtZWkZUTERXRXwzNjI3OUJENjdEODgxNkM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:40:22 GMT']
+ date: ['Thu, 20 Jul 2017 23:03:25 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0dRVE9JSExTTDZMSFZYQVdONERBNnw3OEZDNUE2MzM3NDc2MjVCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0NVV1I2SlRRS1o3NUtZWkZUTERXRXwzNjI3OUJENjdEODgxNkM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -83,23 +83,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0dRVE9JSExTTDZMSFZYQVdONERBNnw3OEZDNUE2MzM3NDc2MjVCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0NVV1I2SlRRS1o3NUtZWkZUTERXRXwzNjI3OUJENjdEODgxNkM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:40:38 GMT']
+ date: ['Thu, 20 Jul 2017 23:03:41 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0dRVE9JSExTTDZMSFZYQVdONERBNnw3OEZDNUE2MzM3NDc2MjVCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0NVV1I2SlRRS1o3NUtZWkZUTERXRXwzNjI3OUJENjdEODgxNkM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -108,21 +108,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0dRVE9JSExTTDZMSFZYQVdONERBNnw3OEZDNUE2MzM3NDc2MjVCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0NVV1I2SlRRS1o3NUtZWkZUTERXRXwzNjI3OUJENjdEODgxNkM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:40:53 GMT']
+ date: ['Thu, 20 Jul 2017 23:03:57 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -132,12 +132,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group exists]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: HEAD
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2017-05-10
@@ -147,24 +147,24 @@ interactions:
cache-control: [no-cache]
content-length: ['167']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:40:54 GMT']
+ date: ['Thu, 20 Jul 2017 23:03:59 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-failure-cause: [gateway]
status: {code: 404, message: Not Found}
- request:
- body: '{"location": "westus", "tags": {"a": "b", "c": ""}}'
+ body: '{"tags": {"a": "b", "c": ""}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['51']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2017-05-10
@@ -174,7 +174,7 @@ interactions:
cache-control: [no-cache]
content-length: ['327']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:40:55 GMT']
+ date: ['Thu, 20 Jul 2017 23:04:00 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -185,12 +185,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group exists]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: HEAD
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2017-05-10
@@ -199,7 +199,7 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:40:56 GMT']
+ date: ['Thu, 20 Jul 2017 23:04:01 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -209,12 +209,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2017-05-10
@@ -224,7 +224,7 @@ interactions:
cache-control: [no-cache]
content-length: ['327']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:40:56 GMT']
+ date: ['Thu, 20 Jul 2017 23:04:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -235,22 +235,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2017-05-10&$filter=tagname%20eq%20%27a%27%20and%20tagvalue%20eq%20%27b%27
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?$filter=tagname%20eq%20%27a%27%20and%20tagvalue%20eq%20%27b%27&api-version=2017-05-10
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rg_scenario000001","name":"cli_test_rg_scenario000001","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-test2","name":"tjp-test2","location":"westus","tags":{"a":"b","c":""},"properties":{"provisioningState":"Succeeded"}}]}'}
headers:
cache-control: [no-cache]
- content-length: ['339']
+ content-length: ['535']
content-type: [application/json; charset=utf-8]
- date: ['Tue, 19 Sep 2017 18:40:57 GMT']
+ date: ['Thu, 20 Jul 2017 23:04:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -261,13 +261,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rg_scenario000001?api-version=2017-05-10
@@ -276,11 +276,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Tue, 19 Sep 2017 18:40:56 GMT']
+ date: ['Thu, 20 Jul 2017 23:04:03 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0dRVE9JSExTTDZMSFZYQVdONERBNnw3OEZDNUE2MzM3NDc2MjVCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkc6NUZTQ0VOQVJJT0NVV1I2SlRRS1o3NUtZWkZUTERXRXwzNjI3OUJENjdEODgxNkM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_group_no_wait.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_group_no_wait.yaml
index 974fa7a381e..8788d30e1e7 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_group_no_wait.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_group_no_wait.yaml
@@ -1,212 +1,265 @@
interactions:
- request:
- body: '{"location": "westus"}'
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['22']
+ Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [2109df98-9d6a-11e7-bcdd-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test","name":"cli_rg_nowait_test","location":"westus","properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test000001","name":"cli_rg_nowait_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['189']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:41:21 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1168']
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:39:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [21b9a83e-9d6a-11e7-aa44-a0b3ccf7272a]
- method: HEAD
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test?api-version=2017-05-10
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
response:
body: {string: ''}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 18:41:21 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- status: {code: 204, message: No Content}
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 20 Jul 2017 23:39:21 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRzo1Rk5PV0FJVDo1RlRFU1RVMlMyQ1hUU0lMNDNFT0VPVlhZNDVKRHw2MjI0MThDQzY4RUNBQjhELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [2215abcc-9d6a-11e7-8025-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test","name":"cli_rg_nowait_test","location":"westus","properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test000001","name":"cli_rg_nowait_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Deleting"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:41:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['189']
+ cache-control: [no-cache]
+ content-length: ['327']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:39:22 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [2235b166-9d6a-11e7-b480-a0b3ccf7272a]
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test?api-version=2017-05-10
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
response:
- body: {string: ''}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test000001","name":"cli_rg_nowait_test000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Deleting"}}'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 18:41:22 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRzo1Rk5PV0FJVDo1RlRFU1QtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10']
- Pragma: [no-cache]
- Retry-After: ['15']
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1177']
- status: {code: 202, message: Accepted}
+ cache-control: [no-cache]
+ content-length: ['327']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:39:52 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [22b0fa38-9d6a-11e7-8a1e-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test","name":"cli_rg_nowait_test","location":"westus","properties":{"provisioningState":"Deleting"}}'}
+ body: {string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group
+ ''cli_rg_nowait_test000001'' could not be found."}}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:41:22 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['188']
- status: {code: 200, message: OK}
+ cache-control: [no-cache]
+ content-length: ['167']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:40:23 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-failure-cause: [gateway]
+ status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [34a9e53a-9d6a-11e7-a4b6-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test?api-version=2017-05-10
+ method: HEAD
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test","name":"cli_rg_nowait_test","location":"westus","properties":{"provisioningState":"Deleting"}}'}
+ body: {string: ''}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['167']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:40:23 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-failure-cause: [gateway]
+ status: {code: 404, message: Not Found}
+- request:
+ body: '{"location": "westus"}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:41:52 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['188']
- status: {code: 200, message: OK}
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test000001","name":"cli_rg_nowait_test000001","location":"westus","properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['303']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:40:24 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [46a2e83a-9d6a-11e7-a163-a0b3ccf7272a]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test?api-version=2017-05-10
+ method: HEAD
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
response:
- body: {string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group
- ''cli_rg_nowait_test'' could not be found."}}'}
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 20 Jul 2017 23:40:25 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 204, message: No Content}
+- request:
+ body: null
headers:
- Cache-Control: [no-cache]
- Content-Length: ['110']
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:23 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_rg_nowait_test000001","name":"cli_rg_nowait_test000001","location":"westus","properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['303']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:40:25 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
+ Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [46ccba02-9d6a-11e7-8209-a0b3ccf7272a]
- method: HEAD
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test?api-version=2017-05-10
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_rg_nowait_test000001?api-version=2017-05-10
response:
body: {string: ''}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['110']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:23 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-failure-cause: [gateway]
- status: {code: 404, message: Not Found}
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 20 Jul 2017 23:40:26 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRzo1Rk5PV0FJVDo1RlRFU1RVMlMyQ1hUU0lMNDNFT0VPVlhZNDVKRHw2MjI0MThDQzY4RUNBQjhELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_id_scenario.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_id_scenario.yaml
index 64293ab6fc8..b6cdc6a189f 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_id_scenario.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_id_scenario.yaml
@@ -1,20 +1,186 @@
interactions:
+- request:
+ body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['50']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001","name":"cli_test_resource_id000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:58:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001?api-version=2017-05-10
+ response:
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001","name":"cli_test_resource_id000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['328']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:58:21 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}, "subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"},
+ "name": "cli_test_resource_id_subnet"}], "dhcpOptions": {}}}'
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['225']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"cli_test_resource_id_vnet\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
+ ,\r\n \"etag\": \"W/\\\"9e9e21ca-215c-41a2-b32f-00b7607f8251\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Updating\",\r\n \"resourceGuid\": \"1191df6e-afa3-48f4-ad59-8d95139afcc3\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
+ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli_test_resource_id_subnet\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"9e9e21ca-215c-41a2-b32f-00b7607f8251\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
+ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
+ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b0f323e9-230f-4dda-92e2-695d921d1ac6?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1330']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:58:23 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 201, message: Created}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b0f323e9-230f-4dda-92e2-695d921d1ac6?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:58: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]
+ status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
+ response:
+ body: {string: "{\r\n \"name\": \"cli_test_resource_id_vnet\",\r\n \"id\": \"\
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
+ ,\r\n \"etag\": \"W/\\\"b731460b-017a-4e96-af84-4628df2495b0\\\"\",\r\n \
+ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
+ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"1191df6e-afa3-48f4-ad59-8d95139afcc3\"\
+ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
+ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
+ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli_test_resource_id_subnet\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"b731460b-017a-4e96-af84-4628df2495b0\\\"\"\
+ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
+ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
+ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
+ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['1332']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:58:32 GMT']
+ etag: [W/"b731460b-017a-4e96-af84-4628df2495b0"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [37d8d478-9d6a-11e7-a642-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -52,6 +218,8 @@ interactions:
India","West India","Canada Central","Canada East","West Central US","West
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"applicationSecurityGroups","locations":["West
+ Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-09-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -94,12 +262,15 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"applicationGateways","locations":["West
- US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
- Central US","South Central US","Central US","East US 2","Japan East","Japan
- West","Brazil South","Australia East","Australia Southeast","Central India","South
- India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ US","East US","East Asia","Southeast Asia","North Central US","South Central
+ US","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central
+ India","South India","West India","Canada Central","Canada East","West Central
+ US","West US 2","UK West","UK South","Korea Central","Korea South","North
+ Europe","West Europe","Central US","East US 2","Central US EUAP","East US
+ 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"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"]}],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -119,7 +290,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
+ CrossSubscriptionResourceMove"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -133,198 +304,190 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:41:58 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['18154']
+ cache-control: [no-cache]
+ content-length: ['18722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:58:34 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [37ffe5d2-9d6a-11e7-8324-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli_test_resource_id_vnet\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
- ,\r\n \"etag\": \"W/\\\"472de879-17b7-4186-a401-440d74a1e295\\\"\",\r\n \
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
+ ,\r\n \"etag\": \"W/\\\"b731460b-017a-4e96-af84-4628df2495b0\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"ec4fbb64-4169-4605-8bcb-f68c252e26d6\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"1191df6e-afa3-48f4-ad59-8d95139afcc3\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli_test_resource_id_subnet\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
- ,\r\n \"etag\": \"W/\\\"472de879-17b7-4186-a401-440d74a1e295\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"b731460b-017a-4e96-af84-4628df2495b0\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:41:58 GMT']
- ETag: [W/"472de879-17b7-4186-a401-440d74a1e295"]
- 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]
- content-length: ['1234']
+ cache-control: [no-cache]
+ content-length: ['1332']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:58:35 GMT']
+ etag: [W/"b731460b-017a-4e96-af84-4628df2495b0"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"dhcpOptions": {"dnsServers": []}, "provisioningState":
- "Succeeded", "enableVmProtection": false, "addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}, "enableDdosProtection": false, "resourceGuid": "ec4fbb64-4169-4605-8bcb-f68c252e26d6",
- "subnets": [{"id": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet",
- "etag": "W/\"472de879-17b7-4186-a401-440d74a1e295\"", "properties": {"provisioningState":
- "Succeeded", "addressPrefix": "10.0.0.0/24"}, "name": "cli_test_resource_id_subnet"}],
- "virtualNetworkPeerings": []}, "location": "westus", "tags": {"tag-vnet": ""}}'
+ body: 'b''{"location": "westus", "tags": {"tag-vnet": ""}, "properties": {"addressSpace":
+ {"addressPrefixes": ["10.0.0.0/16"]}, "resourceGuid": "1191df6e-afa3-48f4-ad59-8d95139afcc3",
+ "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet",
+ "etag": "W/\\"b731460b-017a-4e96-af84-4628df2495b0\\"", "properties": {"addressPrefix":
+ "10.0.0.0/24", "provisioningState": "Succeeded"}, "name": "cli_test_resource_id_subnet"}],
+ "provisioningState": "Succeeded", "enableVmProtection": false, "enableDdosProtection":
+ false, "dhcpOptions": {"dnsServers": []}, "virtualNetworkPeerings": []}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['732']
+ Content-Length: ['781']
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [38293dae-9d6a-11e7-b98b-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli_test_resource_id_vnet\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
- ,\r\n \"etag\": \"W/\\\"853f956d-c7c1-4f33-a636-49baf2c1eaa7\\\"\",\r\n \
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
+ ,\r\n \"etag\": \"W/\\\"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {\r\n \"tag-vnet\": \"\"\r\n },\r\n \"properties\":\
\ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"ec4fbb64-4169-4605-8bcb-f68c252e26d6\",\r\n \"addressSpace\": {\r\n\
+ \ \"1191df6e-afa3-48f4-ad59-8d95139afcc3\",\r\n \"addressSpace\": {\r\n\
\ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n\
\ \"subnets\": [\r\n {\r\n \"name\": \"cli_test_resource_id_subnet\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
- ,\r\n \"etag\": \"W/\\\"853f956d-c7c1-4f33-a636-49baf2c1eaa7\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3f82c6ab-6076-4d12-a7bc-f703f2d2a84c?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:41:59 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]
- content-length: ['1258']
- x-ms-ratelimit-remaining-subscription-writes: ['1180']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f665747d-0580-44c9-b092-44332800f7c0?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['1356']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:58:36 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [38293dae-9d6a-11e7-b98b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3f82c6ab-6076-4d12-a7bc-f703f2d2a84c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f665747d-0580-44c9-b092-44332800f7c0?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:06 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [38293dae-9d6a-11e7-b98b-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli_test_resource_id_vnet\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
- ,\r\n \"etag\": \"W/\\\"853f956d-c7c1-4f33-a636-49baf2c1eaa7\\\"\",\r\n \
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
+ ,\r\n \"etag\": \"W/\\\"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {\r\n \"tag-vnet\": \"\"\r\n },\r\n \"properties\":\
\ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"ec4fbb64-4169-4605-8bcb-f68c252e26d6\",\r\n \"addressSpace\": {\r\n\
+ \ \"1191df6e-afa3-48f4-ad59-8d95139afcc3\",\r\n \"addressSpace\": {\r\n\
\ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n\
\ \"subnets\": [\r\n {\r\n \"name\": \"cli_test_resource_id_subnet\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
- ,\r\n \"etag\": \"W/\\\"853f956d-c7c1-4f33-a636-49baf2c1eaa7\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:30 GMT']
- ETag: [W/"853f956d-c7c1-4f33-a636-49baf2c1eaa7"]
- 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]
- content-length: ['1258']
+ cache-control: [no-cache]
+ content-length: ['1356']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:06 GMT']
+ etag: [W/"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4b5e099c-9d6a-11e7-9236-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -362,6 +525,8 @@ interactions:
India","West India","Canada Central","Canada East","West Central US","West
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"applicationSecurityGroups","locations":["West
+ Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-09-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -404,12 +569,15 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"applicationGateways","locations":["West
- US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
- Central US","South Central US","Central US","East US 2","Japan East","Japan
- West","Brazil South","Australia East","Australia Southeast","Central India","South
- India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ US","East US","East Asia","Southeast Asia","North Central US","South Central
+ US","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central
+ India","South India","West India","Canada Central","Canada East","West Central
+ US","West US 2","UK West","UK South","Korea Central","Korea South","North
+ Europe","West Europe","Central US","East US 2","Central US EUAP","East US
+ 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"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"]}],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -429,7 +597,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
+ CrossSubscriptionResourceMove"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -443,75 +611,72 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:31 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['18154']
+ cache-control: [no-cache]
+ content-length: ['18722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:08 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4b88a526-9d6a-11e7-b50d-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli_test_resource_id_vnet\",\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
- ,\r\n \"etag\": \"W/\\\"853f956d-c7c1-4f33-a636-49baf2c1eaa7\\\"\",\r\n \
+ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet\"\
+ ,\r\n \"etag\": \"W/\\\"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {\r\n \"tag-vnet\": \"\"\r\n },\r\n \"properties\":\
\ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"ec4fbb64-4169-4605-8bcb-f68c252e26d6\",\r\n \"addressSpace\": {\r\n\
+ \ \"1191df6e-afa3-48f4-ad59-8d95139afcc3\",\r\n \"addressSpace\": {\r\n\
\ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n\
\ \"subnets\": [\r\n {\r\n \"name\": \"cli_test_resource_id_subnet\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
- ,\r\n \"etag\": \"W/\\\"853f956d-c7c1-4f33-a636-49baf2c1eaa7\\\"\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:31 GMT']
- ETag: [W/"853f956d-c7c1-4f33-a636-49baf2c1eaa7"]
- 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]
- content-length: ['1258']
+ cache-control: [no-cache]
+ content-length: ['1356']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:08 GMT']
+ etag: [W/"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4bcace5a-9d6a-11e7-9aad-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -549,6 +714,8 @@ interactions:
India","West India","Canada Central","Canada East","West Central US","West
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"applicationSecurityGroups","locations":["West
+ Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-09-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -591,12 +758,15 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"applicationGateways","locations":["West
- US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
- Central US","South Central US","Central US","East US 2","Japan East","Japan
- West","Brazil South","Australia East","Australia Southeast","Central India","South
- India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ US","East US","East Asia","Southeast Asia","North Central US","South Central
+ US","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central
+ India","South India","West India","Canada Central","Canada East","West Central
+ US","West US 2","UK West","UK South","Korea Central","Korea South","North
+ Europe","West Europe","Central US","East US 2","Central US EUAP","East US
+ 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"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"]}],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -616,7 +786,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
+ CrossSubscriptionResourceMove"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -630,64 +800,63 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['18154']
+ cache-control: [no-cache]
+ content-length: ['18722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:09 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4c0ecf86-9d6a-11e7-aceb-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli_test_resource_id_subnet\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
- ,\r\n \"etag\": \"W/\\\"853f956d-c7c1-4f33-a636-49baf2c1eaa7\\\"\",\r\n \
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:32 GMT']
- ETag: [W/"853f956d-c7c1-4f33-a636-49baf2c1eaa7"]
- 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]
- content-length: ['414']
+ cache-control: [no-cache]
+ content-length: ['463']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:09 GMT']
+ etag: [W/"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4c57ed8c-9d6a-11e7-b811-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -725,6 +894,8 @@ interactions:
India","West India","Canada Central","Canada East","West Central US","West
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"applicationSecurityGroups","locations":["West
+ Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-09-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -767,12 +938,15 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"applicationGateways","locations":["West
- US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
- Central US","South Central US","Central US","East US 2","Japan East","Japan
- West","Brazil South","Australia East","Australia Southeast","Central India","South
- India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ US","East US","East Asia","Southeast Asia","North Central US","South Central
+ US","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central
+ India","South India","West India","Canada Central","Canada East","West Central
+ US","West US 2","UK West","UK South","Korea Central","Korea South","North
+ Europe","West Europe","Central US","East US 2","Central US EUAP","East US
+ 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"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"]}],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -792,7 +966,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
+ CrossSubscriptionResourceMove"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -806,64 +980,61 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['18154']
+ cache-control: [no-cache]
+ content-length: ['18722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:10 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4c8be5c6-9d6a-11e7-a1e7-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli_test_resource_id_subnet\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
- ,\r\n \"etag\": \"W/\\\"853f956d-c7c1-4f33-a636-49baf2c1eaa7\\\"\",\r\n \
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:33 GMT']
- ETag: [W/"853f956d-c7c1-4f33-a636-49baf2c1eaa7"]
- 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]
- content-length: ['414']
+ cache-control: [no-cache]
+ content-length: ['463']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:10 GMT']
+ etag: [W/"b0474d8e-bc48-4670-b7d5-c95dff2c3ddc"]
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4cc61478-9d6a-11e7-a56a-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -901,6 +1072,8 @@ interactions:
India","West India","Canada Central","Canada East","West Central US","West
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"applicationSecurityGroups","locations":["West
+ Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-09-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -943,12 +1116,15 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"applicationGateways","locations":["West
- US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
- Central US","South Central US","Central US","East US 2","Japan East","Japan
- West","Brazil South","Australia East","Australia Southeast","Central India","South
- India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ US","East US","East Asia","Southeast Asia","North Central US","South Central
+ US","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central
+ India","South India","West India","Canada Central","Canada East","West Central
+ US","West US 2","UK West","UK South","Korea Central","Korea South","North
+ Europe","West Europe","Central US","East US 2","Central US EUAP","East US
+ 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"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"]}],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -968,7 +1144,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
+ CrossSubscriptionResourceMove"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -982,128 +1158,127 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['18154']
+ cache-control: [no-cache]
+ content-length: ['18722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: '{"properties": {"provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/22"}}'
+ body: '{"properties": {"addressPrefix": "10.0.0.0/22", "provisioningState": "Succeeded"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['82']
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4d10f722-9d6a-11e7-99b6-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli_test_resource_id_subnet\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
- ,\r\n \"etag\": \"W/\\\"fa429d90-08a9-4516-a618-9716b076e3f9\\\"\",\r\n \
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"a80f373a-196c-411a-a5ce-504fcdb04fb9\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
addressPrefix\": \"10.0.0.0/22\"\r\n }\r\n}"}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/399ae276-e2a7-4478-b638-4b9c3c2a8328?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:34 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Retry-After: ['3']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Transfer-Encoding: [chunked]
- Vary: [Accept-Encoding]
- content-length: ['413']
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eaabbb62-ce87-4bb1-b5d8-9368888f20e9?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['462']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59: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-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4d10f722-9d6a-11e7-99b6-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/399ae276-e2a7-4478-b638-4b9c3c2a8328?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eaabbb62-ce87-4bb1-b5d8-9368888f20e9?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:38 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:15 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4d10f722-9d6a-11e7-99b6-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"cli_test_resource_id_subnet\",\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
- ,\r\n \"etag\": \"W/\\\"f94b4f60-17d3-44c7-813f-e0daeec52605\\\"\",\r\n \
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet\"\
+ ,\r\n \"etag\": \"W/\\\"8dae13fc-bc2f-4d69-b785-6f501d1093c2\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.0.0/22\"\r\n }\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:38 GMT']
- ETag: [W/"f94b4f60-17d3-44c7-813f-e0daeec52605"]
- 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]
- content-length: ['414']
+ cache-control: [no-cache]
+ content-length: ['463']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:16 GMT']
+ etag: [W/"8dae13fc-bc2f-4d69-b785-6f501d1093c2"]
+ 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]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4fe6c7cc-9d6a-11e7-8b50-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1141,6 +1316,8 @@ interactions:
India","West India","Canada Central","Canada East","West Central US","West
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"applicationSecurityGroups","locations":["West
+ Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-09-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1183,12 +1360,15 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"applicationGateways","locations":["West
- US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
- Central US","South Central US","Central US","East US 2","Japan East","Japan
- West","Brazil South","Australia East","Australia Southeast","Central India","South
- India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ US","East US","East Asia","Southeast Asia","North Central US","South Central
+ US","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central
+ India","South India","West India","Canada Central","Canada East","West Central
+ US","West US 2","UK West","UK South","Korea Central","Korea South","North
+ Europe","West Europe","Central US","East US 2","Central US EUAP","East US
+ 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"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"]}],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1208,7 +1388,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
+ CrossSubscriptionResourceMove"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1222,89 +1402,88 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:39 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['18154']
+ cache-control: [no-cache]
+ content-length: ['18722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [50105f66-9d6a-11e7-858f-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet/subnets/cli_test_resource_id_subnet?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/c6d9e5e2-f2e0-42bd-ac74-f4bd99424bbe?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 18:42:39 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/c6d9e5e2-f2e0-42bd-ac74-f4bd99424bbe?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/083f5830-62be-476c-8c7d-b09c6fb5d94c?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 05 Oct 2017 17:59:17 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/083f5830-62be-476c-8c7d-b09c6fb5d94c?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [50105f66-9d6a-11e7-858f-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6d9e5e2-f2e0-42bd-ac74-f4bd99424bbe?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/083f5830-62be-476c-8c7d-b09c6fb5d94c?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42: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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:27 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ transfer-encoding: [chunked]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [56fb1d70-9d6a-11e7-9359-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1342,6 +1521,8 @@ interactions:
India","West India","Canada Central","Canada East","West Central US","West
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove"},{"resourceType":"applicationSecurityGroups","locations":["West
+ Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-09-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1384,12 +1565,15 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"applicationGateways","locations":["West
- US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
- Central US","South Central US","Central US","East US 2","Japan East","Japan
- West","Brazil South","Australia East","Australia Southeast","Central India","South
- India","West India","Canada Central","Canada East","West Central US","West
- US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ US","East US","East Asia","Southeast Asia","North Central US","South Central
+ US","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central
+ India","South India","West India","Canada Central","Canada East","West Central
+ US","West US 2","UK West","UK South","Korea Central","Korea South","North
+ Europe","West Europe","Central US","East US 2","Central US EUAP","East US
+ 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"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"]}],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"}]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1409,7 +1593,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
+ CrossSubscriptionResourceMove"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1423,71 +1607,97 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","Central US EUAP","East
US 2 EUAP"],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:50 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['18154']
+ cache-control: [no-cache]
+ content-length: ['18722']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:28 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5726d1ee-9d6a-11e7-bdd4-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001/providers/Microsoft.Network/virtualNetworks/cli_test_resource_id_vnet?api-version=2017-09-01
response:
body: {string: ''}
headers:
- Azure-AsyncOperation: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7dbc90a1-495a-44f5-baca-ff32c7fcd45c?api-version=2017-09-01']
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 18:42:50 GMT']
- Expires: ['-1']
- Location: ['https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7dbc90a1-495a-44f5-baca-ff32c7fcd45c?api-version=2017-09-01']
- Pragma: [no-cache]
- Retry-After: ['10']
- Server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5460290-82e1-4da4-ae8a-997671ea503f?api-version=2017-09-01']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 05 Oct 2017 17:59:28 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e5460290-82e1-4da4-ae8a-997671ea503f?api-version=2017-09-01']
+ pragma: [no-cache]
+ server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
accept-language: [en-US]
- x-ms-client-request-id: [5726d1ee-9d6a-11e7-bdd4-a0b3ccf7272a]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dbc90a1-495a-44f5-baca-ff32c7fcd45c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5460290-82e1-4da4-ae8a-997671ea503f?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:43:02 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]
+ cache-control: [no-cache]
content-length: ['29']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 05 Oct 2017 17:59:39 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]
status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
+ AZURECLI/2.0.17+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_id000001?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 05 Oct 2017 17:59:40 GMT']
+ expires: ['-1']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkVTT1VSQ0U6NUZJRFpSQ1M2WlhNSjdWTFFTTzQ2M1VIQ3xDQUM0MjA1RThCOTNFNDlFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_move.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_move.yaml
index 27f725561c4..b064bc9c4c2 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_move.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_move.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_move_dest000001?api-version=2017-05-10
@@ -20,24 +20,24 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:36:09 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:21 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1192']
status: {code: 201, message: Created}
- request:
body: '{"location": "westus", "tags": {"use": "az-test"}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_move_source000002?api-version=2017-05-10
@@ -47,23 +47,23 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:36:08 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:21 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_move_source000002?api-version=2017-05-10
@@ -73,7 +73,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:36:10 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:22 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -84,25 +84,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"nsg-move000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003\"\
- ,\r\n \"etag\": \"W/\\\"f44d585d-efa0-4579-affe-a5611fa48119\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"3c079344-31f0-4ac7-ae6a-e830b8dee7b0\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"58432ee5-ddf7-4619-a563-dbd448b8f7b7\",\r\n \
+ ,\r\n \"resourceGuid\": \"6ef863d7-bc4d-4234-8391-4a9d4e862634\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"f44d585d-efa0-4579-affe-a5611fa48119\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c079344-31f0-4ac7-ae6a-e830b8dee7b0\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -114,7 +114,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"f44d585d-efa0-4579-affe-a5611fa48119\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c079344-31f0-4ac7-ae6a-e830b8dee7b0\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -126,7 +126,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"f44d585d-efa0-4579-affe-a5611fa48119\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c079344-31f0-4ac7-ae6a-e830b8dee7b0\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -137,7 +137,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f44d585d-efa0-4579-affe-a5611fa48119\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c079344-31f0-4ac7-ae6a-e830b8dee7b0\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -149,7 +149,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f44d585d-efa0-4579-affe-a5611fa48119\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c079344-31f0-4ac7-ae6a-e830b8dee7b0\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -161,7 +161,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"f44d585d-efa0-4579-affe-a5611fa48119\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"3c079344-31f0-4ac7-ae6a-e830b8dee7b0\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -172,11 +172,11 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b8650d58-1843-484e-906e-316f4607b60f?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3852a92b-b778-48f8-9e0d-1127ef354caf?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['6567']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:36:10 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:25 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -188,22 +188,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b8650d58-1843-484e-906e-316f4607b60f?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3852a92b-b778-48f8-9e0d-1127ef354caf?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:36:20 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:36 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -216,24 +216,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"nsg-move000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003\"\
- ,\r\n \"etag\": \"W/\\\"2944595a-afbf-4756-af68-e1116d5ca4fe\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"075ea3c3-62fa-430c-a415-ff69ed657f34\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"58432ee5-ddf7-4619-a563-dbd448b8f7b7\",\r\n \
+ ,\r\n \"resourceGuid\": \"6ef863d7-bc4d-4234-8391-4a9d4e862634\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"2944595a-afbf-4756-af68-e1116d5ca4fe\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"075ea3c3-62fa-430c-a415-ff69ed657f34\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -245,7 +245,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"2944595a-afbf-4756-af68-e1116d5ca4fe\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"075ea3c3-62fa-430c-a415-ff69ed657f34\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -257,7 +257,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"2944595a-afbf-4756-af68-e1116d5ca4fe\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"075ea3c3-62fa-430c-a415-ff69ed657f34\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -268,7 +268,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2944595a-afbf-4756-af68-e1116d5ca4fe\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"075ea3c3-62fa-430c-a415-ff69ed657f34\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -280,7 +280,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2944595a-afbf-4756-af68-e1116d5ca4fe\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"075ea3c3-62fa-430c-a415-ff69ed657f34\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -292,7 +292,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"2944595a-afbf-4756-af68-e1116d5ca4fe\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"075ea3c3-62fa-430c-a415-ff69ed657f34\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -306,8 +306,8 @@ interactions:
cache-control: [no-cache]
content-length: ['6574']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:36:21 GMT']
- etag: [W/"2944595a-afbf-4756-af68-e1116d5ca4fe"]
+ date: ['Wed, 18 Oct 2017 19:23:36 GMT']
+ etag: [W/"075ea3c3-62fa-430c-a415-ff69ed657f34"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -320,12 +320,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_move_source000002?api-version=2017-05-10
@@ -335,7 +335,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:36:21 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -346,25 +346,25 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['22']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"nsg-move000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004\"\
- ,\r\n \"etag\": \"W/\\\"732d02e3-c850-42d0-927d-c548608097ba\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"f0eaa506-8592-4ca9-8433-4dd769997b16\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
- ,\r\n \"resourceGuid\": \"3cbec5a0-5895-4df8-94f7-152da4c181a6\",\r\n \
+ ,\r\n \"resourceGuid\": \"dc88e67b-b434-421c-9f5a-9ba85396a1f6\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"732d02e3-c850-42d0-927d-c548608097ba\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f0eaa506-8592-4ca9-8433-4dd769997b16\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -376,7 +376,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"732d02e3-c850-42d0-927d-c548608097ba\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f0eaa506-8592-4ca9-8433-4dd769997b16\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -388,7 +388,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"732d02e3-c850-42d0-927d-c548608097ba\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f0eaa506-8592-4ca9-8433-4dd769997b16\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -399,7 +399,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"732d02e3-c850-42d0-927d-c548608097ba\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f0eaa506-8592-4ca9-8433-4dd769997b16\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -411,7 +411,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"732d02e3-c850-42d0-927d-c548608097ba\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f0eaa506-8592-4ca9-8433-4dd769997b16\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -423,7 +423,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"732d02e3-c850-42d0-927d-c548608097ba\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"f0eaa506-8592-4ca9-8433-4dd769997b16\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -434,11 +434,11 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n }\r\n ]\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25d409d4-8311-4961-b84d-ae31aaa4771c?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78d13112-7c11-4656-8eff-0f81cda0560a?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['6567']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:37:25 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:37 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -450,22 +450,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25d409d4-8311-4961-b84d-ae31aaa4771c?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78d13112-7c11-4656-8eff-0f81cda0560a?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:37:35 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:48 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -478,24 +478,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"nsg-move000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004\"\
- ,\r\n \"etag\": \"W/\\\"9003ef09-03ef-461b-8901-53b99a6968f1\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"e9d733c4-52ec-4bad-a632-500858ac2346\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"3cbec5a0-5895-4df8-94f7-152da4c181a6\",\r\n \
+ ,\r\n \"resourceGuid\": \"dc88e67b-b434-421c-9f5a-9ba85396a1f6\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"9003ef09-03ef-461b-8901-53b99a6968f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e9d733c4-52ec-4bad-a632-500858ac2346\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -507,7 +507,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"9003ef09-03ef-461b-8901-53b99a6968f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e9d733c4-52ec-4bad-a632-500858ac2346\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -519,7 +519,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"9003ef09-03ef-461b-8901-53b99a6968f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e9d733c4-52ec-4bad-a632-500858ac2346\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -530,7 +530,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"9003ef09-03ef-461b-8901-53b99a6968f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e9d733c4-52ec-4bad-a632-500858ac2346\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -542,7 +542,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"9003ef09-03ef-461b-8901-53b99a6968f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e9d733c4-52ec-4bad-a632-500858ac2346\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -554,7 +554,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"9003ef09-03ef-461b-8901-53b99a6968f1\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"e9d733c4-52ec-4bad-a632-500858ac2346\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -568,8 +568,8 @@ interactions:
cache-control: [no-cache]
content-length: ['6574']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:37:36 GMT']
- etag: [W/"9003ef09-03ef-461b-8901-53b99a6968f1"]
+ date: ['Wed, 18 Oct 2017 19:23:48 GMT']
+ etag: [W/"e9d733c4-52ec-4bad-a632-500858ac2346"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -584,13 +584,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['618']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_source000002/moveResources?api-version=2017-05-10
@@ -599,35 +599,35 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:37:37 GMT']
+ date: ['Wed, 18 Oct 2017 19:23:51 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:37:52 GMT']
+ date: ['Wed, 18 Oct 2017 19:24:06 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -636,23 +636,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:38:08 GMT']
+ date: ['Wed, 18 Oct 2017 19:24:21 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -661,23 +661,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:38:23 GMT']
+ date: ['Wed, 18 Oct 2017 19:24:38 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -686,23 +686,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:38:38 GMT']
+ date: ['Wed, 18 Oct 2017 19:24:52 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -711,23 +711,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:38:54 GMT']
+ date: ['Wed, 18 Oct 2017 19:25:08 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -736,23 +736,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:39:09 GMT']
+ date: ['Wed, 18 Oct 2017 19:25:23 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -761,23 +761,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:39:24 GMT']
+ date: ['Wed, 18 Oct 2017 19:25:38 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -786,23 +786,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:39:39 GMT']
+ date: ['Wed, 18 Oct 2017 19:25:53 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -811,23 +811,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:39:55 GMT']
+ date: ['Wed, 18 Oct 2017 19:26:08 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -836,23 +836,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:40:10 GMT']
+ date: ['Wed, 18 Oct 2017 19:26:24 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -861,23 +861,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:40:26 GMT']
+ date: ['Wed, 18 Oct 2017 19:26:39 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -886,23 +886,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:40:41 GMT']
+ date: ['Wed, 18 Oct 2017 19:26:54 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -911,23 +911,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:40:57 GMT']
+ date: ['Wed, 18 Oct 2017 19:27:10 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
status: {code: 202, message: Accepted}
@@ -936,20 +936,20 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource move]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VOV1dTTVpLVzY1fERFMzhBMDUwQjA2NzA4RTItV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLUNMSTo1RlRFU1Q6NUZSRVNPVVJDRTo1Rk1PVkU6NUZTT1VSQ0VTVDVFSVdaVzZIfDQxNkNENTk1NTlBNUZDNjYtV0VTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
- date: ['Thu, 21 Sep 2017 23:41:12 GMT']
+ date: ['Wed, 18 Oct 2017 19:27:25 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -959,24 +959,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"nsg-move000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003\"\
- ,\r\n \"etag\": \"W/\\\"3d1fe425-5ea9-4340-bb2a-9ce84c848246\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"a1cb38c2-d360-4d5b-ae4d-da60638aaa6a\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"58432ee5-ddf7-4619-a563-dbd448b8f7b7\",\r\n \
+ ,\r\n \"resourceGuid\": \"6ef863d7-bc4d-4234-8391-4a9d4e862634\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"3d1fe425-5ea9-4340-bb2a-9ce84c848246\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a1cb38c2-d360-4d5b-ae4d-da60638aaa6a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -988,7 +988,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"3d1fe425-5ea9-4340-bb2a-9ce84c848246\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a1cb38c2-d360-4d5b-ae4d-da60638aaa6a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -1000,7 +1000,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"3d1fe425-5ea9-4340-bb2a-9ce84c848246\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a1cb38c2-d360-4d5b-ae4d-da60638aaa6a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -1011,7 +1011,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"3d1fe425-5ea9-4340-bb2a-9ce84c848246\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a1cb38c2-d360-4d5b-ae4d-da60638aaa6a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -1023,7 +1023,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"3d1fe425-5ea9-4340-bb2a-9ce84c848246\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a1cb38c2-d360-4d5b-ae4d-da60638aaa6a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -1035,7 +1035,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000003/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"3d1fe425-5ea9-4340-bb2a-9ce84c848246\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"a1cb38c2-d360-4d5b-ae4d-da60638aaa6a\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -1049,8 +1049,8 @@ interactions:
cache-control: [no-cache]
content-length: ['6574']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:41:12 GMT']
- etag: [W/"3d1fe425-5ea9-4340-bb2a-9ce84c848246"]
+ date: ['Wed, 18 Oct 2017 19:27:26 GMT']
+ etag: [W/"a1cb38c2-d360-4d5b-ae4d-da60638aaa6a"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1063,24 +1063,24 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network nsg show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 networkmanagementclient/1.5.0rc1 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"nsg-move000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004\"\
- ,\r\n \"etag\": \"W/\\\"b83b0620-92ed-4292-ae98-34b1c4409f43\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bfe3aef7-e61d-4cc6-aa1d-cfeadcbc8301\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\"\
: \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"3cbec5a0-5895-4df8-94f7-152da4c181a6\",\r\n \
+ ,\r\n \"resourceGuid\": \"dc88e67b-b434-421c-9f5a-9ba85396a1f6\",\r\n \
\ \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\
\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowVnetInBound\"\
- ,\r\n \"etag\": \"W/\\\"b83b0620-92ed-4292-ae98-34b1c4409f43\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bfe3aef7-e61d-4cc6-aa1d-cfeadcbc8301\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -1092,7 +1092,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\
\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\
- ,\r\n \"etag\": \"W/\\\"b83b0620-92ed-4292-ae98-34b1c4409f43\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bfe3aef7-e61d-4cc6-aa1d-cfeadcbc8301\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow inbound traffic from azure load balancer\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -1104,7 +1104,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/DenyAllInBound\"\
- ,\r\n \"etag\": \"W/\\\"b83b0620-92ed-4292-ae98-34b1c4409f43\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bfe3aef7-e61d-4cc6-aa1d-cfeadcbc8301\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all inbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -1115,7 +1115,7 @@ interactions:
: [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\"\
: []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowVnetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"b83b0620-92ed-4292-ae98-34b1c4409f43\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bfe3aef7-e61d-4cc6-aa1d-cfeadcbc8301\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to all\
\ VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\"\
@@ -1127,7 +1127,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/AllowInternetOutBound\"\
- ,\r\n \"etag\": \"W/\\\"b83b0620-92ed-4292-ae98-34b1c4409f43\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bfe3aef7-e61d-4cc6-aa1d-cfeadcbc8301\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\"\
,\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\"\
@@ -1139,7 +1139,7 @@ interactions:
: [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n \
\ },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_move_dest000001/providers/Microsoft.Network/networkSecurityGroups/nsg-move000004/defaultSecurityRules/DenyAllOutBound\"\
- ,\r\n \"etag\": \"W/\\\"b83b0620-92ed-4292-ae98-34b1c4409f43\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bfe3aef7-e61d-4cc6-aa1d-cfeadcbc8301\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"description\": \"Deny all outbound traffic\",\r\n \
\ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \
@@ -1153,8 +1153,8 @@ interactions:
cache-control: [no-cache]
content-length: ['6574']
content-type: [application/json; charset=utf-8]
- date: ['Thu, 21 Sep 2017 23:41:12 GMT']
- etag: [W/"b83b0620-92ed-4292-ae98-34b1c4409f43"]
+ date: ['Wed, 18 Oct 2017 19:27:30 GMT']
+ etag: [W/"bfe3aef7-e61d-4cc6-aa1d-cfeadcbc8301"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1167,13 +1167,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_move_source000002?api-version=2017-05-10
@@ -1182,25 +1182,25 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:41:13 GMT']
+ date: ['Wed, 18 Oct 2017 19:27:31 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkVTT1VSQ0U6NUZNT1ZFOjVGU09VUkNFTldXU01aS1c2NXxERTM4QTA1MEIwNjcwOEUyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkVTT1VSQ0U6NUZNT1ZFOjVGU09VUkNFU1Q1RUlXWlc2SHw0MTZDRDU5NTU5QTVGQzY2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.16+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_move_dest000001?api-version=2017-05-10
@@ -1209,11 +1209,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Thu, 21 Sep 2017 23:41:15 GMT']
+ date: ['Wed, 18 Oct 2017 19:27:32 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkVTT1VSQ0U6NUZNT1ZFOjVGREVTVFQyTE82RlYzQkdRQ3xCMTNBQTVGMzlDNUI1NkVBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkVTT1VSQ0U6NUZNT1ZFOjVGREVTVElQVVhBV1RLSDdFSHxGQjNDQTBENEI3RjNEMEFBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_policy.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_policy.yaml
index 08e9f359059..6be22113e0b 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_policy.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_policy.yaml
@@ -4,13 +4,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_policy000001?api-version=2017-05-10
@@ -20,7 +20,7 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:03 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:31 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -28,32 +28,32 @@ interactions:
status: {code: 201, message: Created}
- request:
body: 'b''{"properties": {"mode": "Indexed", "displayName": "test_policy000003",
- "description": "desc_for_test_policy_123", "policyRule": {"if": {"not": {"field":
- "location", "in": "[parameters(\''allowedLocations\'')]"}}, "then": {"effect":
- "deny"}}, "parameters": {"allowedLocations": {"type": "array", "metadata": {"description":
- "The list of locations that can be specified when deploying resources", "strongType":
- "location", "displayName": "Allowed locations"}}}}}'''
+ "parameters": {"allowedLocations": {"type": "array", "metadata": {"description":
+ "The list of locations that can be specified when deploying resources", "displayName":
+ "Allowed locations", "strongType": "location"}}}, "policyRule": {"then": {"effect":
+ "deny"}, "if": {"not": {"in": "[parameters(\''allowedLocations\'')]", "field":
+ "location"}}}, "description": "desc_for_test_policy_123"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['459']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002?api-version=2016-12-01
response:
body: {string: '{"properties":{"displayName":"test_policy000003","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
- list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
headers:
cache-control: [no-cache]
content-length: ['687']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:04 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:31 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -64,23 +64,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002?api-version=2016-12-01
response:
body: {string: '{"properties":{"displayName":"test_policy000003","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
- list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
headers:
cache-control: [no-cache]
content-length: ['687']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:05 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:32 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -89,46 +89,47 @@ interactions:
status: {code: 200, message: OK}
- request:
body: 'b''{"properties": {"displayName": "test_policy000003", "description": "desc_for_test_policy_123_new",
- "policyRule": {"if": {"not": {"field": "location", "in": "[parameters(\''allowedLocations\'')]"}},
- "then": {"effect": "deny"}}, "parameters": {"allowedLocations": {"type": "Array",
- "metadata": {"description": "The list of locations that can be specified when
- deploying resources", "strongType": "location", "displayName": "Allowed locations"}}}}}'''
+ "parameters": {"allowedLocations": {"type": "Array", "metadata": {"description":
+ "The list of locations that can be specified when deploying resources", "displayName":
+ "Allowed locations", "strongType": "location"}}}, "policyRule": {"then": {"effect":
+ "deny"}, "if": {"not": {"in": "[parameters(\''allowedLocations\'')]", "field":
+ "location"}}}}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['444']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002?api-version=2016-12-01
response:
body: {string: '{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
- list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
headers:
cache-control: [no-cache]
content-length: ['674']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:05 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:32 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions?api-version=2016-12-01
@@ -238,20 +239,53 @@ interactions:
restrict the locations your organization can specify when deploying resources.
Use to enforce your geo-compliance requirements.","parameters":{"listOfAllowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources.","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''listOfAllowedLocations'')]"}},"then":{"effect":"Deny"}}},"id":"/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c","type":"Microsoft.Authorization/policyDefinitions","name":"e56962a6-4747-49cd-b67b-bf8b01975c4c"},{"properties":{"displayName":"test_policyyype4jfip","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''listOfAllowedLocations'')]"}},"then":{"effect":"Deny"}}},"id":"/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c","type":"Microsoft.Authorization/policyDefinitions","name":"e56962a6-4747-49cd-b67b-bf8b01975c4c"},{"properties":{"displayName":"test_policy_123","policyType":"Custom","description":"test_policy_123_new","policyRule":{"then":{"effect":"deny"},"if":{"source":"action","equals":"Microsoft.Storage/storageAccounts/write"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy"},{"properties":{"displayName":"test_policyu5qycnwlf","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyc4umbzyhc","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyc4umbzyhc"},{"properties":{"displayName":"test_policya4fzrevz3","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyc5rc55x4p","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyc5rc55x4p"},{"properties":{"displayName":"test_policyk2pzv6c47","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policydbeyd5nrs","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policydbeyd5nrs"},{"properties":{"displayName":"test_policykqgncz42o","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyen4kpwjri","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyen4kpwjri"},{"properties":{"displayName":"test_policy27aocag4g","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy7jwftmifj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy7jwftmifj"},{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyeo24r3ah2","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyeo24r3ah2"},{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"},{"properties":{"displayName":"test_policyx4niz5vcs","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"strongType":"location","displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policykg3zihtqy","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policykg3zihtqy"},{"properties":{"displayName":"test_policylhbmrfp7w","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyksyxxdyya","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyksyxxdyya"},{"properties":{"displayName":"test_policyrzb2xkuhz","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policylkrr6nhlt","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policylkrr6nhlt"},{"properties":{"displayName":"test_policyhgogvepjw","policyType":"Custom","description":"desc_for_test_policyfqy7r5mevl_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policynu7qdqhyx","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policynu7qdqhyx"},{"properties":{"displayName":"test_policymkzeabila","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyomrb4sutu","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyomrb4sutu"},{"properties":{"displayName":"test_policyk75qnukyv","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyoyvpdhear","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyoyvpdhear"},{"properties":{"displayName":"test_policyzflwtkscw","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqccgcpztw","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyqccgcpztw"},{"properties":{"displayName":"test_policynmaaabsby","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","strongType":"location","description":"The list of locations that
+ can be specified when deploying resources"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqd7cpusnm","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyqd7cpusnm"},{"properties":{"displayName":"test_policy7gsfjonhc","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"},{"properties":{"displayName":"test_policyfwe33kqnp","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyrsj7lfr2i","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyrsj7lfr2i"},{"properties":{"displayName":"test_policyynmv24m7h","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"strongType":"location","displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyuqflm5wvo","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyuqflm5wvo"},{"properties":{"displayName":"test_policyxo4pjk6go","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyt47o36wqj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyt47o36wqj"},{"properties":{"displayName":"test_policy5b2y566sk","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyuwg53dgxl","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyuwg53dgxl"},{"properties":{"displayName":"test_policytoadasrnk","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyv3tsinwfz","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyv3tsinwfz"},{"properties":{"displayName":"testDisplay","policyType":"Custom","description":"testDescription","policyRule":{"if":{"source":"action","equals":"Microsoft.Resources/Subscriptions/00000000-0000-0000-0000-000000000000/write"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/onesdk8248","type":"Microsoft.Authorization/policyDefinitions","name":"onesdk8248"},{"properties":{"policyType":"Custom","policyRule":{"if":{"source":"action","equals":"blah"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/test2","type":"Microsoft.Authorization/policyDefinitions","name":"test2"}]}'}
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyvzg2lmmuj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyvzg2lmmuj"},{"properties":{"displayName":"test_policyyxqr7mttl","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","strongType":"location","description":"The list of locations that
+ can be specified when deploying resources"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyy4snzm2ry","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyy4snzm2ry"},{"properties":{"displayName":"My
+ Policy","policyType":"Custom","description":"This is my policy","policyRule":{"if":{"not":{"field":"location","in":["northeurope","westeurope"]}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy1","type":"Microsoft.Authorization/policyDefinitions","name":"policy1"},{"properties":{"displayName":"useless
+ policy just for tetsing","policyType":"Custom","description":"some testing
+ policy","policyRule":{"if":{"source":"action","equals":"Microsoft.Storage/storageAccounts/write"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/yugangw-policy","type":"Microsoft.Authorization/policyDefinitions","name":"yugangw-policy"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['28202']
+ content-length: ['38903']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:05 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -263,23 +297,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002?api-version=2016-12-01
response:
body: {string: '{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
- list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
headers:
cache-control: [no-cache]
content-length: ['674']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:05 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -291,23 +325,23 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002?api-version=2016-12-01
response:
body: {string: '{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
- list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
headers:
cache-control: [no-cache]
content-length: ['674']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:06 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:33 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -315,20 +349,20 @@ interactions:
vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''b\''b\\\''{"properties": {"displayName": "test_assignment000005", "policyDefinitionId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002",
- "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001",
+ body: 'b''b\''b\\\''{"sku": {"name": "A0", "tier": "Free"}, "properties": {"displayName":
+ "test_assignment000005", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001",
+ "policyDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002",
"parameters": {"allowedLocations": {"value": ["australiaeast", "eastus", "japaneast",
- "westus"]}}}, "sku": {"name": "A0", "tier": "Free"}}\\\''\'''''
+ "westus"]}}}}\\\''\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['508']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000004?api-version=2017-06-01-preview
@@ -338,7 +372,7 @@ interactions:
cache-control: [no-cache]
content-length: ['834']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:06 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:34 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -349,12 +383,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_policy000001?api-version=2017-05-10
@@ -364,77 +398,51 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:06 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:34 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: null
+ body: 'b''{"properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]},
+ "subnets": [{"name": "azurecli-test-policy-subnet000007", "properties": {"addressPrefix":
+ "10.0.0.0/24"}}], "dhcpOptions": {}}, "location": "westus", "tags": {}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
- Connection: [keep-alive]
- Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
- accept-language: [en-US]
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_policy000001?api-version=2017-05-10
- response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001","name":"cli_test_policy000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
- headers:
- cache-control: [no-cache]
- content-length: ['328']
- content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:14 GMT']
- expires: ['-1']
- pragma: [no-cache]
- strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
- status: {code: 200, message: OK}
-- request:
- body: 'b''{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
- ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix":
- "10.0.0.0/24"}, "name": "azurecli-test-policy-subnet000007"}]}}'''
- headers:
- Accept: [application/json]
- Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['238']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks/azurecli-test-policy-vnet000006?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"azurecli-test-policy-vnet000006\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks/azurecli-test-policy-vnet000006\"\
- ,\r\n \"etag\": \"W/\\\"e00d9660-6c81-4103-9bdf-18440bf587a6\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"0ff483d3-9c8d-44dc-9e8c-4db9b89cea93\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Updating\",\r\n \"resourceGuid\": \"220bcaf6-bc21-45a1-95a3-a990e3376c68\"\
+ \ \"Updating\",\r\n \"resourceGuid\": \"fc8fad6e-b153-495b-9ff6-f74d6be8d196\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azurecli-test-policy-subnet000007\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks/azurecli-test-policy-vnet000006/subnets/azurecli-test-policy-subnet000007\"\
- ,\r\n \"etag\": \"W/\\\"e00d9660-6c81-4103-9bdf-18440bf587a6\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"0ff483d3-9c8d-44dc-9e8c-4db9b89cea93\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3f42f690-6433-430d-ac0c-d81686da984e?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3941b4e3-8709-4ceb-8dde-69f9b2668124?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1401']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:15 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:35 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -446,22 +454,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3f42f690-6433-430d-ac0c-d81686da984e?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3941b4e3-8709-4ceb-8dde-69f9b2668124?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:19 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:38 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -474,27 +482,27 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks/azurecli-test-policy-vnet000006?api-version=2017-09-01
response:
body: {string: "{\r\n \"name\": \"azurecli-test-policy-vnet000006\",\r\n \"\
id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks/azurecli-test-policy-vnet000006\"\
- ,\r\n \"etag\": \"W/\\\"482dcc6c-0daf-4c59-89c6-71996648dd50\\\"\",\r\n \
+ ,\r\n \"etag\": \"W/\\\"bd7dd0c9-cc5e-4cc9-85f2-f86acce0f5eb\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"220bcaf6-bc21-45a1-95a3-a990e3376c68\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"fc8fad6e-b153-495b-9ff6-f74d6be8d196\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
: []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azurecli-test-policy-subnet000007\"\
,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks/azurecli-test-policy-vnet000006/subnets/azurecli-test-policy-subnet000007\"\
- ,\r\n \"etag\": \"W/\\\"482dcc6c-0daf-4c59-89c6-71996648dd50\\\"\"\
+ ,\r\n \"etag\": \"W/\\\"bd7dd0c9-cc5e-4cc9-85f2-f86acce0f5eb\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -503,8 +511,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1403']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:20 GMT']
- etag: [W/"482dcc6c-0daf-4c59-89c6-71996648dd50"]
+ date: ['Wed, 18 Oct 2017 19:47:39 GMT']
+ etag: [W/"bd7dd0c9-cc5e-4cc9-85f2-f86acce0f5eb"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -517,44 +525,44 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002?api-version=2016-12-01
response:
body: {string: '{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
- list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
headers:
cache-control: [no-cache]
content-length: ['674']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:19 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:39 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''b\''b\\\''{"properties": {"displayName": "test_assignment000005", "policyDefinitionId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002",
- "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001",
- "notScopes": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks"],
+ body: 'b''b\''b\\\''{"sku": {"name": "A1", "tier": "Standard"}, "properties":
+ {"displayName": "test_assignment000005", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001",
+ "policyDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002",
"parameters": {"allowedLocations": {"value": ["australiaeast", "eastus", "japaneast",
- "westus"]}}}, "sku": {"name": "A1", "tier": "Standard"}}\\\''\'''''
+ "westus"]}}, "notScopes": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks"]}}\\\''\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['717']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000004?api-version=2017-06-01-preview
@@ -564,22 +572,22 @@ interactions:
cache-control: [no-cache]
content-length: ['1041']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:20 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:41 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions?api-version=2016-12-01
@@ -689,20 +697,53 @@ interactions:
restrict the locations your organization can specify when deploying resources.
Use to enforce your geo-compliance requirements.","parameters":{"listOfAllowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources.","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''listOfAllowedLocations'')]"}},"then":{"effect":"Deny"}}},"id":"/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c","type":"Microsoft.Authorization/policyDefinitions","name":"e56962a6-4747-49cd-b67b-bf8b01975c4c"},{"properties":{"displayName":"test_policyyype4jfip","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''listOfAllowedLocations'')]"}},"then":{"effect":"Deny"}}},"id":"/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c","type":"Microsoft.Authorization/policyDefinitions","name":"e56962a6-4747-49cd-b67b-bf8b01975c4c"},{"properties":{"displayName":"test_policy_123","policyType":"Custom","description":"test_policy_123_new","policyRule":{"then":{"effect":"deny"},"if":{"source":"action","equals":"Microsoft.Storage/storageAccounts/write"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy"},{"properties":{"displayName":"test_policyu5qycnwlf","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyc4umbzyhc","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyc4umbzyhc"},{"properties":{"displayName":"test_policya4fzrevz3","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyc5rc55x4p","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyc5rc55x4p"},{"properties":{"displayName":"test_policyk2pzv6c47","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policydbeyd5nrs","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policydbeyd5nrs"},{"properties":{"displayName":"test_policykqgncz42o","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyen4kpwjri","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyen4kpwjri"},{"properties":{"displayName":"test_policy27aocag4g","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy7jwftmifj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy7jwftmifj"},{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyeo24r3ah2","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyeo24r3ah2"},{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"},{"properties":{"displayName":"test_policyx4niz5vcs","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"strongType":"location","displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policykg3zihtqy","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policykg3zihtqy"},{"properties":{"displayName":"test_policylhbmrfp7w","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyksyxxdyya","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyksyxxdyya"},{"properties":{"displayName":"test_policyrzb2xkuhz","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policylkrr6nhlt","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policylkrr6nhlt"},{"properties":{"displayName":"test_policyhgogvepjw","policyType":"Custom","description":"desc_for_test_policyfqy7r5mevl_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policynu7qdqhyx","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policynu7qdqhyx"},{"properties":{"displayName":"test_policymkzeabila","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyomrb4sutu","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyomrb4sutu"},{"properties":{"displayName":"test_policyk75qnukyv","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyoyvpdhear","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyoyvpdhear"},{"properties":{"displayName":"test_policyzflwtkscw","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqccgcpztw","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyqccgcpztw"},{"properties":{"displayName":"test_policynmaaabsby","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","strongType":"location","description":"The list of locations that
+ can be specified when deploying resources"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqd7cpusnm","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyqd7cpusnm"},{"properties":{"displayName":"test_policy7gsfjonhc","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"},{"properties":{"displayName":"test_policyfwe33kqnp","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyrsj7lfr2i","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyrsj7lfr2i"},{"properties":{"displayName":"test_policyynmv24m7h","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"strongType":"location","displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyuqflm5wvo","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyuqflm5wvo"},{"properties":{"displayName":"test_policyxo4pjk6go","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyt47o36wqj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyt47o36wqj"},{"properties":{"displayName":"test_policy5b2y566sk","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyuwg53dgxl","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyuwg53dgxl"},{"properties":{"displayName":"test_policytoadasrnk","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyv3tsinwfz","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyv3tsinwfz"},{"properties":{"displayName":"testDisplay","policyType":"Custom","description":"testDescription","policyRule":{"if":{"source":"action","equals":"Microsoft.Resources/Subscriptions/00000000-0000-0000-0000-000000000000/write"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/onesdk8248","type":"Microsoft.Authorization/policyDefinitions","name":"onesdk8248"},{"properties":{"policyType":"Custom","policyRule":{"if":{"source":"action","equals":"blah"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/test2","type":"Microsoft.Authorization/policyDefinitions","name":"test2"}]}'}
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyvzg2lmmuj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyvzg2lmmuj"},{"properties":{"displayName":"test_policyyxqr7mttl","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","strongType":"location","description":"The list of locations that
+ can be specified when deploying resources"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyy4snzm2ry","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyy4snzm2ry"},{"properties":{"displayName":"My
+ Policy","policyType":"Custom","description":"This is my policy","policyRule":{"if":{"not":{"field":"location","in":["northeurope","westeurope"]}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy1","type":"Microsoft.Authorization/policyDefinitions","name":"policy1"},{"properties":{"displayName":"useless
+ policy just for tetsing","policyType":"Custom","description":"some testing
+ policy","policyRule":{"if":{"source":"action","equals":"Microsoft.Storage/storageAccounts/write"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/yugangw-policy","type":"Microsoft.Authorization/policyDefinitions","name":"yugangw-policy"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['28202']
+ content-length: ['38903']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:20 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:40 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -714,11 +755,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a4d?api-version=2016-12-01
@@ -729,7 +770,7 @@ interactions:
cache-control: [no-cache]
content-length: ['138']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:21 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:41 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -739,11 +780,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a4d?api-version=2016-12-01
@@ -755,26 +796,26 @@ interactions:
cache-control: [no-cache]
content-length: ['877']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:21 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:41 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''b\''{"properties": {"displayName": "test_assignment000005", "policyDefinitionId":
- "/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a4d",
- "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001"},
- "sku": {"name": "A0", "tier": "Free"}}\'''''
+ body: 'b''b\''{"sku": {"name": "A0", "tier": "Free"}, "properties": {"displayName":
+ "test_assignment000005", "policyDefinitionId": "/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a4d",
+ "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001"}}\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['364']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment2000008?api-version=2017-06-01-preview
@@ -784,23 +825,23 @@ interactions:
cache-control: [no-cache]
content-length: ['697']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:25 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment2000008?api-version=2017-06-01-preview
@@ -810,34 +851,34 @@ interactions:
cache-control: [no-cache]
content-length: ['697']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:26 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: ['Accept-Encoding,Accept-Encoding']
- x-ms-ratelimit-remaining-subscription-writes: ['1182']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments?api-version=2017-06-01-preview
response:
- body: {string: '{"value":[{"sku":{"name":"A0","tier":"Free"},"properties":{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/onesdk8248","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yangl-test-export"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yangl-test-export/providers/Microsoft.Authorization/policyAssignments/testvivek","type":"Microsoft.Authorization/policyAssignments","name":"testvivek"},{"sku":{"name":"A1","tier":"Standard"},"properties":{"displayName":"test_assignment000005","policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001","notScopes":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks"],"parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000004","type":"Microsoft.Authorization/policyAssignments","name":"azurecli-test-policy-assignment000004"}]}'}
+ body: {string: '{"value":[{"sku":{"name":"A1","tier":"Standard"},"properties":{"displayName":"test_assignment000005","policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001","notScopes":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks"],"parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000004","type":"Microsoft.Authorization/policyAssignments","name":"azurecli-test-policy-assignment000004"},{"sku":{"name":"A1","tier":"Standard"},"properties":{"displayName":"test_assignmentv7msc","policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqd7cpusnm","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu","notScopes":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu/providers/Microsoft.Network/virtualNetworks"],"parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignmentxqflexkgv","type":"Microsoft.Authorization/policyAssignments","name":"azurecli-test-policy-assignmentxqflexkgv"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['1561']
+ content-length: ['2095']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:26 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -849,21 +890,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments?api-version=2017-06-01-preview
response:
- body: {string: '{"value":[{"sku":{"name":"A0","tier":"Free"},"properties":{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/onesdk8248","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yangl-test-export"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yangl-test-export/providers/Microsoft.Authorization/policyAssignments/testvivek","type":"Microsoft.Authorization/policyAssignments","name":"testvivek"},{"sku":{"name":"A1","tier":"Standard"},"properties":{"displayName":"test_assignment000005","policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001","notScopes":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks"],"parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000004","type":"Microsoft.Authorization/policyAssignments","name":"azurecli-test-policy-assignment000004"}]}'}
+ body: {string: '{"value":[{"sku":{"name":"A1","tier":"Standard"},"properties":{"displayName":"test_assignment000005","policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001","notScopes":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Network/virtualNetworks"],"parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000004","type":"Microsoft.Authorization/policyAssignments","name":"azurecli-test-policy-assignment000004"},{"sku":{"name":"A1","tier":"Standard"},"properties":{"displayName":"test_assignmentv7msc","policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqd7cpusnm","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu","notScopes":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu/providers/Microsoft.Network/virtualNetworks"],"parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignmentxqflexkgv","type":"Microsoft.Authorization/policyAssignments","name":"azurecli-test-policy-assignmentxqflexkgv"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['1561']
+ content-length: ['2095']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:27 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:43 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -875,12 +916,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000004?api-version=2017-06-01-preview
@@ -890,7 +931,7 @@ interactions:
cache-control: [no-cache]
content-length: ['1041']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:29 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:44 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -903,21 +944,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments?api-version=2017-06-01-preview
response:
- body: {string: '{"value":[{"sku":{"name":"A0","tier":"Free"},"properties":{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/onesdk8248","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yangl-test-export"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yangl-test-export/providers/Microsoft.Authorization/policyAssignments/testvivek","type":"Microsoft.Authorization/policyAssignments","name":"testvivek"}]}'}
+ body: {string: '{"value":[{"sku":{"name":"A1","tier":"Standard"},"properties":{"displayName":"test_assignmentv7msc","policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqd7cpusnm","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu","notScopes":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu/providers/Microsoft.Network/virtualNetworks"],"parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policyavd6yr3gzbgwlcuqugbgqcxjjq3ivuvj575r6ojfpjh4ifab72gzdioa3bdu/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignmentxqflexkgv","type":"Microsoft.Authorization/policyAssignments","name":"azurecli-test-policy-assignmentxqflexkgv"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['519']
+ content-length: ['1053']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:29 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:45 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -929,41 +970,41 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002?api-version=2016-12-01
response:
body: {string: '{"properties":{"displayName":"test_policy000003","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
- list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
+ list of locations that can be specified when deploying resources","displayName":"Allowed
+ locations","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy000002"}'}
headers:
cache-control: [no-cache]
content-length: ['674']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:30 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:44 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: ['Accept-Encoding,Accept-Encoding']
- x-ms-ratelimit-remaining-subscription-writes: ['1182']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions?api-version=2016-12-01
@@ -1073,35 +1114,69 @@ interactions:
restrict the locations your organization can specify when deploying resources.
Use to enforce your geo-compliance requirements.","parameters":{"listOfAllowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources.","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''listOfAllowedLocations'')]"}},"then":{"effect":"Deny"}}},"id":"/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c","type":"Microsoft.Authorization/policyDefinitions","name":"e56962a6-4747-49cd-b67b-bf8b01975c4c"},{"properties":{"displayName":"test_policyyype4jfip","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''listOfAllowedLocations'')]"}},"then":{"effect":"Deny"}}},"id":"/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c","type":"Microsoft.Authorization/policyDefinitions","name":"e56962a6-4747-49cd-b67b-bf8b01975c4c"},{"properties":{"displayName":"test_policy_123","policyType":"Custom","description":"test_policy_123_new","policyRule":{"then":{"effect":"deny"},"if":{"source":"action","equals":"Microsoft.Storage/storageAccounts/write"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy"},{"properties":{"displayName":"test_policyu5qycnwlf","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyc4umbzyhc","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyc4umbzyhc"},{"properties":{"displayName":"test_policya4fzrevz3","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyc5rc55x4p","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyc5rc55x4p"},{"properties":{"displayName":"test_policyk2pzv6c47","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policydbeyd5nrs","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policydbeyd5nrs"},{"properties":{"displayName":"test_policykqgncz42o","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyen4kpwjri","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyen4kpwjri"},{"properties":{"displayName":"test_policy27aocag4g","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy7jwftmifj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policy7jwftmifj"},{"properties":{"displayName":"test_policyfwe33kqnp","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyeo24r3ah2","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyeo24r3ah2"},{"properties":{"displayName":"test_policyx4niz5vcs","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"strongType":"location","displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policykg3zihtqy","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policykg3zihtqy"},{"properties":{"displayName":"test_policylhbmrfp7w","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyksyxxdyya","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyksyxxdyya"},{"properties":{"displayName":"test_policyrzb2xkuhz","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policylkrr6nhlt","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policylkrr6nhlt"},{"properties":{"displayName":"test_policyhgogvepjw","policyType":"Custom","description":"desc_for_test_policyfqy7r5mevl_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policynu7qdqhyx","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policynu7qdqhyx"},{"properties":{"displayName":"test_policymkzeabila","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyomrb4sutu","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyomrb4sutu"},{"properties":{"displayName":"test_policyk75qnukyv","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyoyvpdhear","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyoyvpdhear"},{"properties":{"displayName":"test_policyzflwtkscw","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources","strongType":"location"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqccgcpztw","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyqccgcpztw"},{"properties":{"displayName":"test_policynmaaabsby","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","strongType":"location","description":"The list of locations that
+ can be specified when deploying resources"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyqd7cpusnm","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyqd7cpusnm"},{"properties":{"displayName":"test_policy7gsfjonhc","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyt47o36wqj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyt47o36wqj"},{"properties":{"displayName":"test_policy5b2y566sk","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyrsj7lfr2i","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyrsj7lfr2i"},{"properties":{"displayName":"test_policyynmv24m7h","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"strongType":"location","displayName":"Allowed
+ locations","description":"The list of locations that can be specified when
+ deploying resources"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyuqflm5wvo","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyuqflm5wvo"},{"properties":{"displayName":"test_policyxo4pjk6go","policyType":"Custom","description":"desc_for_test_policy_123_new","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
- locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyv3tsinwfz","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyv3tsinwfz"},{"properties":{"displayName":"testDisplay","policyType":"Custom","description":"testDescription","policyRule":{"if":{"source":"action","equals":"Microsoft.Resources/Subscriptions/00000000-0000-0000-0000-000000000000/write"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/onesdk8248","type":"Microsoft.Authorization/policyDefinitions","name":"onesdk8248"},{"properties":{"policyType":"Custom","policyRule":{"if":{"source":"action","equals":"blah"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/test2","type":"Microsoft.Authorization/policyDefinitions","name":"test2"}]}'}
+ locations"}}},"policyRule":{"if":{"not":{"in":"[parameters(''allowedLocations'')]","field":"location"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyuwg53dgxl","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyuwg53dgxl"},{"properties":{"displayName":"test_policytoadasrnk","policyType":"Custom","mode":"Indexed","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"description":"The
+ list of locations that can be specified when deploying resources","strongType":"location","displayName":"Allowed
+ locations"}}},"policyRule":{"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyvzg2lmmuj","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyvzg2lmmuj"},{"properties":{"displayName":"test_policyyxqr7mttl","policyType":"Custom","description":"desc_for_test_policy_123","parameters":{"allowedLocations":{"type":"Array","metadata":{"displayName":"Allowed
+ locations","strongType":"location","description":"The list of locations that
+ can be specified when deploying resources"}}},"policyRule":{"then":{"effect":"deny"},"if":{"not":{"field":"location","in":"[parameters(''allowedLocations'')]"}}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyy4snzm2ry","type":"Microsoft.Authorization/policyDefinitions","name":"azure-cli-test-policyy4snzm2ry"},{"properties":{"displayName":"My
+ Policy","policyType":"Custom","description":"This is my policy","policyRule":{"if":{"not":{"field":"location","in":["northeurope","westeurope"]}},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy1","type":"Microsoft.Authorization/policyDefinitions","name":"policy1"},{"properties":{"displayName":"useless
+ policy just for tetsing","policyType":"Custom","description":"some testing
+ policy","policyRule":{"if":{"source":"action","equals":"Microsoft.Storage/storageAccounts/write"},"then":{"effect":"deny"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/yugangw-policy","type":"Microsoft.Authorization/policyDefinitions","name":"yugangw-policy"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['27527']
+ content-length: ['38228']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 09 Oct 2017 21:29:40 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:55 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- vary: [Accept-Encoding]
+ transfer-encoding: [chunked]
+ vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_policy000001?api-version=2017-05-10
@@ -1110,11 +1185,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Mon, 09 Oct 2017 21:29:41 GMT']
+ date: ['Wed, 18 Oct 2017 19:47:56 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUE9MSUNZWlpVRVhDQ1dMS0RHNE9ZMjVCVlcyT0I1QVBGUXwzNkFGNDQwNzA3NzRBRTg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUE9MSUNZSUZRTjIzQUQ1U1cyQ0VYVE1UWUZBU1o1VlpRNHw3RkEyNTBGQjExMkYwMjdCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1183']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_policyset.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_policyset.yaml
index b3ac70feef7..4501e8261bd 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_policyset.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_policyset.yaml
@@ -1,16 +1,16 @@
interactions:
- request:
- body: '{"location": "westus", "tags": {"use": "az-test"}}'
+ body: '{"tags": {"use": "az-test"}, "location": "westus"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['50']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_policy000001?api-version=2017-05-10
@@ -20,27 +20,28 @@ interactions:
cache-control: [no-cache]
content-length: ['328']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:41 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:09 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-subscription-writes: ['1154']
status: {code: 201, message: Created}
- request:
- body: 'b''{"properties": {"displayName": "test_policy000003", "description": "desc_for_test_policy_123",
- "policyRule": {"if": {"not": {"field": "location", "in": "[parameters(\''allowedLocations\'')]"}},
- "then": {"effect": "deny"}}, "parameters": {"allowedLocations": {"type": "array",
- "metadata": {"description": "The list of locations that can be specified when
- deploying resources", "strongType": "location", "displayName": "Allowed locations"}}}}}'''
+ body: 'b''{"properties": {"policyRule": {"if": {"not": {"field": "location", "in":
+ "[parameters(\''allowedLocations\'')]"}}, "then": {"effect": "deny"}}, "description":
+ "desc_for_test_policy_123", "parameters": {"allowedLocations": {"metadata":
+ {"description": "The list of locations that can be specified when deploying
+ resources", "strongType": "location", "displayName": "Allowed locations"}, "type":
+ "array"}}, "displayName": "test_policy000003"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy definition create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['440']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002?api-version=2016-12-01
@@ -52,27 +53,26 @@ interactions:
cache-control: [no-cache]
content-length: ['670']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:42 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:10 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1189']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
- body: 'b''b\''{"properties": {"displayName": "test_policyset000005", "description":
- "desc_for_test_policyset_123", "policyDefinitions": [{"policyDefinitionId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002",
+ body: 'b''b\''{"properties": {"policyDefinitions": [{"policyDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002",
"parameters": {"allowedLocations": {"value": ["australiaeast", "eastus", "japaneast",
- "westus"]}}}]}}\'''''
+ "westus"]}}}], "description": "desc_for_test_policyset_123", "displayName":
+ "test_policyset000005"}}\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy set-definition create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['385']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004?api-version=2017-06-01-preview
@@ -82,22 +82,22 @@ interactions:
cache-control: [no-cache]
content-length: ['632']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:42 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:11 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1194']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy set-definition update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004?api-version=2017-06-01-preview
@@ -107,7 +107,7 @@ interactions:
cache-control: [no-cache]
content-length: ['632']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:43 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:10 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -115,47 +115,46 @@ interactions:
vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''b\''{"properties": {"displayName": "test_policyset000005", "description":
- "desc_for_test_policy_123_new", "policyDefinitions": [{"policyDefinitionId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002",
+ body: 'b''b\''{"properties": {"policyDefinitions": [{"policyDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002",
"parameters": {"allowedLocations": {"value": ["australiaeast", "eastus", "japaneast",
- "westus"]}}}]}}\'''''
+ "westus"]}}}], "description": "desc_for_test_policyset_123_new", "displayName":
+ "test_policyset000005"}}\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy set-definition update]
+ CommandName: [unknown]
Connection: [keep-alive]
- Content-Length: ['386']
+ Content-Length: ['389']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004?api-version=2017-06-01-preview
response:
- body: {string: '{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"}'}
+ body: {string: '{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policyset_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"}'}
headers:
cache-control: [no-cache]
- content-length: ['633']
+ content-length: ['636']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:44 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:11 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: ['Accept-Encoding,Accept-Encoding']
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy set-definition list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions?api-version=2017-06-01-preview
@@ -164,12 +163,12 @@ interactions:
in Azure Security Center","policyType":"BuiltIn","description":"Monitor all
the available security recommendations in Azure Security Center. This is the
default policy for Azure Security Center.","metadata":{"category":"Security
- Center"},"parameters":{},"policyDefinitions":[{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/a8bef009-a5c9-4d0f-90d7-6018734e8a16"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/af8051bf-258b-44e2-a2bf-165330459f9d"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/86b3d65f-7626-441e-b690-81a8b71cff60"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/b0f33259-77d7-4c9e-aac6-3aabcfae693c"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/47a6b606-51aa-4496-8bb7-64b11cf66adc"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/44452482-524f-4bf4-b852-0bff7cc4a3ed"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/e1e5fd5d-3e4c-4ce1-8661-7d1873ae6b15"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/af6cd1bd-1635-48cb-bde7-5b15693900b9"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/0961003e-5a0a-4549-abde-af6a37f2724d"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/760a85ff-6162-42b3-8d70-698e268f648c"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/201ea587-7c90-41c3-910f-c280ae01cfd6"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/9daedab3-fb2d-461e-b861-71790eead4f6"}]},"id":"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8","type":"Microsoft.Authorization/policySetDefinitions","name":"1f3afdf9-d0c9-4c3d-847f-89da613e70a8"},{"properties":{"displayName":"test_policysetyfe6bb","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyjimbnujhn","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policysetrjwran","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policysetrjwran"},{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"},{"properties":{"policyType":"Custom","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/clipd","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/clipsd","type":"Microsoft.Authorization/policySetDefinitions","name":"clipsd"}]}'}
+ Center"},"parameters":{},"policyDefinitions":[{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/a8bef009-a5c9-4d0f-90d7-6018734e8a16"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/af8051bf-258b-44e2-a2bf-165330459f9d"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/86b3d65f-7626-441e-b690-81a8b71cff60"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/b0f33259-77d7-4c9e-aac6-3aabcfae693c"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/47a6b606-51aa-4496-8bb7-64b11cf66adc"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/44452482-524f-4bf4-b852-0bff7cc4a3ed"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/e1e5fd5d-3e4c-4ce1-8661-7d1873ae6b15"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/af6cd1bd-1635-48cb-bde7-5b15693900b9"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/0961003e-5a0a-4549-abde-af6a37f2724d"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/760a85ff-6162-42b3-8d70-698e268f648c"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/201ea587-7c90-41c3-910f-c280ae01cfd6"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/9daedab3-fb2d-461e-b861-71790eead4f6"}]},"id":"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8","type":"Microsoft.Authorization/policySetDefinitions","name":"1f3afdf9-d0c9-4c3d-847f-89da613e70a8"},{"properties":{"displayName":"test_policysetg4oo5k","policyType":"Custom","description":"desc_for_test_policyset_123","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyt7cuhddjz","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset6swdjz","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset6swdjz"},{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policyset_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"},{"properties":{"displayName":"test_policysetn4khsk","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policydbeyd5nrs","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyseti3kq7w","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyseti3kq7w"},{"properties":{"displayName":"test_policysetq4w3gf","policyType":"Custom","description":"desc_for_test_policyset_123","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyy4snzm2ry","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policysetowg6ad","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policysetowg6ad"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['3790']
+ content-length: ['4580']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:45 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:11 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -181,21 +180,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy set-definition show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004?api-version=2017-06-01-preview
response:
- body: {string: '{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"}'}
+ body: {string: '{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policyset_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"}'}
headers:
cache-control: [no-cache]
- content-length: ['633']
+ content-length: ['636']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:45 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:12 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -207,21 +206,21 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004?api-version=2017-06-01-preview
response:
- body: {string: '{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"}'}
+ body: {string: '{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policyset_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"}'}
headers:
cache-control: [no-cache]
- content-length: ['633']
+ content-length: ['636']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:46 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:12 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -229,19 +228,18 @@ interactions:
vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''b\''b\\\''{"properties": {"displayName": "test_assignment000007", "policyDefinitionId":
+ body: 'b''b\''b\\\''{"sku": {"name": "A0", "tier": "Free"}, "properties": {"policyDefinitionId":
"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004",
- "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001"},
- "sku": {"name": "A0", "tier": "Free"}}\\\''\'''''
+ "displayName": "test_assignment000007", "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001"}}\\\''\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['412']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000006?api-version=2017-06-01-preview
@@ -251,23 +249,23 @@ interactions:
cache-control: [no-cache]
content-length: ['745']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:47 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:13 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1193']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_policy000001/providers/Microsoft.Authorization/policyAssignments/azurecli-test-policy-assignment000006?api-version=2017-06-01-preview
@@ -277,24 +275,24 @@ interactions:
cache-control: [no-cache]
content-length: ['745']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:48 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:14 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: ['Accept-Encoding,Accept-Encoding']
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy assignment list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments?api-version=2017-06-01-preview
@@ -304,7 +302,7 @@ interactions:
cache-control: [no-cache]
content-length: ['12']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:48 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:14 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -316,39 +314,39 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy set-definition delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004?api-version=2017-06-01-preview
response:
- body: {string: '{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"}'}
+ body: {string: '{"properties":{"displayName":"test_policyset000005","policyType":"Custom","description":"desc_for_test_policyset_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset000004","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset000004"}'}
headers:
cache-control: [no-cache]
- content-length: ['633']
+ content-length: ['636']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:52:50 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:17 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
transfer-encoding: [chunked]
vary: ['Accept-Encoding,Accept-Encoding']
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [policy set-definition list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 policyclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 policyclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions?api-version=2017-06-01-preview
@@ -357,12 +355,12 @@ interactions:
in Azure Security Center","policyType":"BuiltIn","description":"Monitor all
the available security recommendations in Azure Security Center. This is the
default policy for Azure Security Center.","metadata":{"category":"Security
- Center"},"parameters":{},"policyDefinitions":[{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/a8bef009-a5c9-4d0f-90d7-6018734e8a16"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/af8051bf-258b-44e2-a2bf-165330459f9d"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/86b3d65f-7626-441e-b690-81a8b71cff60"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/b0f33259-77d7-4c9e-aac6-3aabcfae693c"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/47a6b606-51aa-4496-8bb7-64b11cf66adc"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/44452482-524f-4bf4-b852-0bff7cc4a3ed"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/e1e5fd5d-3e4c-4ce1-8661-7d1873ae6b15"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/af6cd1bd-1635-48cb-bde7-5b15693900b9"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/0961003e-5a0a-4549-abde-af6a37f2724d"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/760a85ff-6162-42b3-8d70-698e268f648c"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/201ea587-7c90-41c3-910f-c280ae01cfd6"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/9daedab3-fb2d-461e-b861-71790eead4f6"}]},"id":"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8","type":"Microsoft.Authorization/policySetDefinitions","name":"1f3afdf9-d0c9-4c3d-847f-89da613e70a8"},{"properties":{"displayName":"test_policysetyfe6bb","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyjimbnujhn","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policysetrjwran","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policysetrjwran"},{"properties":{"policyType":"Custom","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/clipd","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/clipsd","type":"Microsoft.Authorization/policySetDefinitions","name":"clipsd"}]}'}
+ Center"},"parameters":{},"policyDefinitions":[{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/a8bef009-a5c9-4d0f-90d7-6018734e8a16"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/af8051bf-258b-44e2-a2bf-165330459f9d"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/86b3d65f-7626-441e-b690-81a8b71cff60"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/b0f33259-77d7-4c9e-aac6-3aabcfae693c"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/47a6b606-51aa-4496-8bb7-64b11cf66adc"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/44452482-524f-4bf4-b852-0bff7cc4a3ed"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/e1e5fd5d-3e4c-4ce1-8661-7d1873ae6b15"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/af6cd1bd-1635-48cb-bde7-5b15693900b9"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/0961003e-5a0a-4549-abde-af6a37f2724d"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/760a85ff-6162-42b3-8d70-698e268f648c"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/201ea587-7c90-41c3-910f-c280ae01cfd6"},{"policyDefinitionId":"/providers/Microsoft.Authorization/policyDefinitions/9daedab3-fb2d-461e-b861-71790eead4f6"}]},"id":"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8","type":"Microsoft.Authorization/policySetDefinitions","name":"1f3afdf9-d0c9-4c3d-847f-89da613e70a8"},{"properties":{"displayName":"test_policysetg4oo5k","policyType":"Custom","description":"desc_for_test_policyset_123","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyt7cuhddjz","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyset6swdjz","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyset6swdjz"},{"properties":{"displayName":"test_policysetn4khsk","policyType":"Custom","description":"desc_for_test_policy_123_new","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policydbeyd5nrs","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policyseti3kq7w","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policyseti3kq7w"},{"properties":{"displayName":"test_policysetq4w3gf","policyType":"Custom","description":"desc_for_test_policyset_123","policyDefinitions":[{"policyDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policyy4snzm2ry","parameters":{"allowedLocations":{"value":["australiaeast","eastus","japaneast","westus"]}}}]},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policySetDefinitions/azure-cli-test-policysetowg6ad","type":"Microsoft.Authorization/policySetDefinitions","name":"azure-cli-test-policysetowg6ad"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['3156']
+ content-length: ['3943']
content-type: [application/json; charset=utf-8]
- date: ['Sat, 23 Sep 2017 02:53:00 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:28 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -374,13 +372,13 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc2 Azure-SDK-For-Python
- AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.1 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_policy000001?api-version=2017-05-10
@@ -389,11 +387,11 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Sat, 23 Sep 2017 02:53:02 GMT']
+ date: ['Wed, 18 Oct 2017 19:52:28 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUE9MSUNZU0dTTUIzTkdTQUpCVFZTVTdMRFdIV01BQlZaN3xDNkEwNzQ3OEE4NURBN0Q4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUE9MSUNZWkVJUEZTUlNSVlhVRlBJRlZNMjZQSjdGMjNCUXw1QzVEMTgzN0NFNDIzRDJCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1192']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_scenario.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_scenario.yaml
index e47890dd28d..4e96fefc9e6 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_scenario.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_resource_scenario.yaml
@@ -4,120 +4,146 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['58']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001","name":"cli_test_rsrc_scenario000001","location":"southcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001","name":"cli_test_resource_scenario000001","location":"southcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
cache-control: [no-cache]
content-length: ['336']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:02 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:16 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
+ AZURECLI/2.0.20]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=
+ response:
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener5334n7bvpwnkur6xwyx2gxcpqizpralxt7nxi4kt5jkzgucn7u/providers/Microsoft.Network/applicationGateways/ag1","name":"ag1","type":"Microsoft.Network/applicationGateways","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener5334n7bvpwnkur6xwyx2gxcpqizpralxt7nxi4kt5jkzgucn7u/providers/Microsoft.Network/virtualNetworks/ag1Vnet","name":"ag1Vnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listenerftn7tiqa7xk5c5qburwzwcazyfzv2teqeupzk67xv4ffiwsthr/providers/Microsoft.Network/applicationGateways/ag1","name":"ag1","type":"Microsoft.Network/applicationGateways","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listenerftn7tiqa7xk5c5qburwzwcazyfzv2teqeupzk67xv4ffiwsthr/providers/Microsoft.Network/virtualNetworks/ag1Vnet","name":"ag1Vnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786","name":"cliautomationlab786","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987","name":"acliautomationlab2987","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073","name":"cliautomationlab6073","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281","name":"acliautomationlab2281","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggaimbllzxyuijlxj3lrywgzdrume4xj3xj66hdfhqv6eqba26ht76nokbtp6sfaoi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq5564odu5p6","name":"clitest-vaultq5564odu5p6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnuanxhtclm3obme75s2yhbzhdh6fgu7gcd34afmgnbu2kqpmla5i2d6wpulrddzvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmy2cqovnax","name":"clitest-vaultwmy2cqovnax","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa3pgets3kev3ayjwmgv5a7qu6gyvibpsysagad36u2osnytlxbvwinhmlx2hmfhq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultetp33oawxea","name":"clitest-vaultetp33oawxea","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpcda3pf4qgao5oxnpmsepukjzbvmxhrvppugmm3fb5yrhyxnu62pkjcr75v4v4s7m/providers/Microsoft.RecoveryServices/vaults/clitest-vault5mezslybkil","name":"clitest-vault5mezslybkil","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/debekoe1/providers/Microsoft.ContainerService/managedClusters/myaks","name":"myaks","type":"Microsoft.ContainerService/managedClusters","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet6623","name":"CliGtTestVnet6623","type":"Microsoft.ClassicNetwork/virtualNetworks","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/serverFarms/java-webapp-113172planc7341120e","name":"java-webapp-113172planc7341120e","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172","name":"java-webapp-113172","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-339600523","name":"java-webapp-113172/java-slot-339600523","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-4ec70331a","name":"java-webapp-113172/java-slot-4ec70331a","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-5d3905486","name":"java-webapp-113172/java-slot-5d3905486","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3b129223f/providers/Microsoft.Web/serverFarms/java-webapp-64203aplanf4717946f","name":"java-webapp-64203aplanf4717946f","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3b129223f/providers/Microsoft.Web/sites/java-webapp-64203a","name":"java-webapp-64203a","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8dc793124/providers/Microsoft.Web/serverFarms/java-webapp-346676plan705476469","name":"java-webapp-346676plan705476469","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8dc793124/providers/Microsoft.Web/sites/java-webapp-346676","name":"java-webapp-346676","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Storage/storageAccounts/4dfdb4ba97cd464db1e8","name":"4dfdb4ba97cd464db1e8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/serverFarms/java-funcapp-90934fplan64491087","name":"java-funcapp-90934fplan64491087","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f","name":"java-funcapp-90934f","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-585089923","name":"java-funcapp-90934f/java-slot-585089923","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-aaa879703","name":"java-funcapp-90934f/java-slot-aaa879703","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-f2988146c","name":"java-funcapp-90934f/java-slot-f2988146c","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf1c169498/providers/Microsoft.Web/serverFarms/java-webapp-124358plandcf26726b","name":"java-webapp-124358plandcf26726b","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf1c169498/providers/Microsoft.Web/sites/java-webapp-124358","name":"java-webapp-124358","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Storage/storageAccounts/13f038a5835047fd9fb9","name":"13f038a5835047fd9fb9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/serverFarms/java-funcapp-947241plan51e62440","name":"java-funcapp-947241plan51e62440","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241","name":"java-funcapp-947241","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-9ec700636","name":"java-funcapp-947241/java-slot-9ec700636","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-a17219118","name":"java-funcapp-947241/java-slot-a17219118","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-bbf64332e","name":"java-funcapp-947241/java-slot-bbf64332e","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/serverFarms/java-webapp-264634pland4a213930","name":"java-webapp-264634pland4a213930","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634","name":"java-webapp-264634","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-0b172575f","name":"java-webapp-264634/java-slot-0b172575f","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-6d099874e","name":"java-webapp-264634/java-slot-6d099874e","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-b4475990e","name":"java-webapp-264634/java-slot-b4475990e","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfcb942921/providers/Microsoft.Web/serverFarms/java-webapp-70178bplan07213529f","name":"java-webapp-70178bplan07213529f","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfcb942921/providers/Microsoft.Web/sites/java-webapp-70178b","name":"java-webapp-70178b","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javasb38702568243/providers/Microsoft.ServiceBus/namespaces/jvsbns20d21229","name":"jvsbns20d21229","type":"Microsoft.ServiceBus/namespaces","sku":{"name":"Premium","tier":"Premium","capacity":1},"kind":"Messaging","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/availabilitySets/myaks-availabilitySet-17958201","name":"myaks-availabilitySet-17958201","type":"Microsoft.Compute/availabilitySets","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-0_OsDisk_1_7c43f26ed76e41189272cbe02e88fcf5","name":"k8s-myaks-17958201-0_OsDisk_1_7c43f26ed76e41189272cbe02e88fcf5","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-0","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-1_OsDisk_1_3be4f3e76c264ec6913ab60407754bb9","name":"k8s-myaks-17958201-1_OsDisk_1_3be4f3e76c264ec6913ab60407754bb9","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-1","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-2_OsDisk_1_8f30daefd84e4872b359528b3e95547c","name":"k8s-myaks-17958201-2_OsDisk_1_8f30daefd84e4872b359528b3e95547c","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-2","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0","name":"k8s-myaks-17958201-0","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-0","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0/extensions/cse0","name":"k8s-myaks-17958201-0/cse0","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1","name":"k8s-myaks-17958201-1","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-1","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1/extensions/cse1","name":"k8s-myaks-17958201-1/cse1","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2","name":"k8s-myaks-17958201-2","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-2","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2/extensions/cse2","name":"k8s-myaks-17958201-2/cse2","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-0","name":"k8s-myaks-17958201-nic-0","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-1","name":"k8s-myaks-17958201-nic-1","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-2","name":"k8s-myaks-17958201-nic-2","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkSecurityGroups/k8s-agentpool-17958201-nsg","name":"k8s-agentpool-17958201-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/routeTables/k8s-agentpool-17958201-routetable","name":"k8s-agentpool-17958201-routetable","type":"Microsoft.Network/routeTables","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/virtualNetworks/k8s-vnet-17958201","name":"k8s-vnet-17958201","type":"Microsoft.Network/virtualNetworks","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw47271group/providers/Microsoft.Network/networkWatchers/nw47271","name":"nw47271","type":"Microsoft.Network/networkWatchers","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw84097agroup/providers/Microsoft.Network/networkWatchers/nw84097a","name":"nw84097a","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG76B255433A4189C/providers/Microsoft.Compute/disks/vm3db180547e172c1_OsDisk_1_40ee1b4bd93d4d02b4d98a6e868a29f0","name":"vm3db180547e172c1_OsDisk_1_40ee1b4bd93d4d02b4d98a6e868a29f0","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Compute/virtualMachines/vm3db180547e172c1","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Compute/virtualMachines/vm3db180547e172c1","name":"vm3db180547e172c1","type":"Microsoft.Compute/virtualMachines","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/networkInterfaces/nic2108641a0c0","name":"nic2108641a0c0","type":"Microsoft.Network/networkInterfaces","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/networkSecurityGroups/nsgde239044a061","name":"nsgde239044a061","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/publicIPAddresses/pip27522193","name":"pip27522193","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/virtualNetworks/vnet3a2428169db3","name":"vnet3a2428169db3","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG84097A/providers/Microsoft.Compute/disks/vme8e194178e_OsDisk_1_7e59f0712ae74f63bfdd5fcd26958c51","name":"vme8e194178e_OsDisk_1_7e59f0712ae74f63bfdd5fcd26958c51","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme8e194178e","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG84097A/providers/Microsoft.Compute/disks/vme9993415e4_OsDisk_1_52b640bb5c1549c6998141c8f1866947","name":"vme9993415e4_OsDisk_1_52b640bb5c1549c6998141c8f1866947","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme8e194178e","name":"vme8e194178e","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4","name":"vme9993415e4","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4/extensions/packetCapture","name":"vme9993415e4/packetCapture","type":"Microsoft.Compute/virtualMachines/extensions","location":"northcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkInterfaces/ni84097a","name":"ni84097a","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkInterfaces/nic81215498dcb","name":"nic81215498dcb","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkSecurityGroups/nsg84097a","name":"nsg84097a","type":"Microsoft.Network/networkSecurityGroups","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/publicIPAddresses/pip0667443e","name":"pip0667443e","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/virtualNetworks/net84097a","name":"net84097a","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/virtualNetworks/vnet2547772eef","name":"vnet2547772eef","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Storage/storageAccounts/sa84097a","name":"sa84097a","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/osdisk_PoB6DEjHaR","name":"osdisk_PoB6DEjHaR","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","name":"sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","name":"sdk-test-m","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um","name":"sdk-test-um","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","name":"sdk-test-mVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","name":"sdk-test-umVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG","name":"sdk-test-mNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG","name":"sdk-test-umNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP","name":"sdk-test-mPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP","name":"sdk-test-umPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","name":"sdk-test-umVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Storage/storageAccounts/sdkteststor","name":"sdkteststor","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applications/app1","name":"app1","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus","plan":{"name":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","product":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","publisher":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","version":"1.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WILX-GROUP/providers/Microsoft.Compute/disks/wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","name":"wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Compute/virtualMachines/wilx-vm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic","name":"wilx-vmVMNic","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG","name":"wilx-vmNSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/publicIPAddresses/wilx-vmPublicIP","name":"wilx-vmPublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet","name":"wilxvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Solutions/applications/wilxapp","name":"wilxapp","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage","name":"wilxstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/serverFarms/wilx-plan","name":"wilx-plan","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/rubyhello","name":"rubyhello","type":"Microsoft.Web/sites","kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/wilx-webapp","name":"wilx-webapp","type":"Microsoft.Web/sites","kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Compute/virtualMachineScaleSets/yugangw-ss","name":"yugangw-ss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_D1_v2","tier":"Standard","capacity":1},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB","name":"yugangw-ssLB","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/publicIPAddresses/yugangw-ssLBPublicIP","name":"yugangw-ssLBPublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-ssVNET","name":"yugangw-ssVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['34999']
+ content-type: [application/json; charset=utf-8]
+ date: ['Wed, 18 Oct 2017 18:21:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001","name":"cli_test_rsrc_scenario000001","location":"southcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001","name":"cli_test_resource_scenario000001","location":"southcentralus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
headers:
cache-control: [no-cache]
content-length: ['336']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:03 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:18 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''{"location": "southcentralus", "tags": {"cli-test": "test"}, "properties":
- {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets":
- [{"properties": {"addressPrefix": "10.0.0.0/24"}, "name": "cli-test-subnet000003"}]}}'''
+ body: 'b''{"properties": {"subnets": [{"properties": {"addressPrefix": "10.0.0.0/24"},
+ "name": "subnet-000003"}], "dhcpOptions": {}, "addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}}, "location": "southcentralus", "tags": {"cli-test": "test"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['254']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"0944516a-b61f-4fc8-9373-4dfc5796ff71\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002\"\
+ ,\r\n \"etag\": \"W/\\\"43adf9fc-d4cd-4b67-9fee-4289e78b0aa9\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\
,\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n },\r\n \"properties\"\
: {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"\
- 89d2dc02-73a1-41f0-99de-6cba9eb0e93a\",\r\n \"addressSpace\": {\r\n \
+ 4e56f500-0cdb-427a-8f4d-6333c27f25b5\",\r\n \"addressSpace\": {\r\n \
\ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\
\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\"\
- : [\r\n {\r\n \"name\": \"cli-test-subnet000003\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"0944516a-b61f-4fc8-9373-4dfc5796ff71\\\"\"\
+ : [\r\n {\r\n \"name\": \"subnet-000003\",\r\n \"id\":\
+ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003\"\
+ ,\r\n \"etag\": \"W/\\\"43adf9fc-d4cd-4b67-9fee-4289e78b0aa9\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/fb820a13-9ab8-4b38-bd41-e9059549542e?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/df19379d-824a-4661-95c6-3ec9f5c853ad?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1387']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:05 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:20 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ x-ms-ratelimit-remaining-subscription-writes: ['1199']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/fb820a13-9ab8-4b38-bd41-e9059549542e?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/df19379d-824a-4661-95c6-3ec9f5c853ad?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:08 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:24 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -130,27 +156,27 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [network vnet create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 networkmanagementclient/1.5.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"9a05c0d8-7bb0-410e-99b3-728a5fa7d844\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002\"\
+ ,\r\n \"etag\": \"W/\\\"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\
,\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n },\r\n \"properties\"\
: {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"89d2dc02-73a1-41f0-99de-6cba9eb0e93a\",\r\n \"addressSpace\": {\r\n\
+ \ \"4e56f500-0cdb-427a-8f4d-6333c27f25b5\",\r\n \"addressSpace\": {\r\n\
\ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n\
- \ \"subnets\": [\r\n {\r\n \"name\": \"cli-test-subnet000003\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"9a05c0d8-7bb0-410e-99b3-728a5fa7d844\\\"\"\
+ \ \"subnets\": [\r\n {\r\n \"name\": \"subnet-000003\",\r\n\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003\"\
+ ,\r\n \"etag\": \"W/\\\"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -159,8 +185,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1389']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:09 GMT']
- etag: [W/"9a05c0d8-7bb0-410e-99b3-728a5fa7d844"]
+ date: ['Wed, 18 Oct 2017 18:21:24 GMT']
+ etag: [W/"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -173,22 +199,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Compute/virtualMachines/vm362","name":"vm362","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/networkInterfaces/nicvm362eba72807b3","name":"nicvm362eba72807b3","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/publicIPAddresses/abc1636","name":"abc1636","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/virtualNetworks/vnet86360253914e","name":"vnet86360253914e","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Storage/storageAccounts/stgvm362eba436448308","name":"stgvm362eba436448308","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetbkt262cqdtsxzznk45t2uibaln36gys5r6vczbx4dyqkpxci/providers/Microsoft.Network/applicationGateways/ag2","name":"ag2","type":"Microsoft.Network/applicationGateways","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetbkt262cqdtsxzznk45t2uibaln36gys5r6vczbx4dyqkpxci/providers/Microsoft.Network/virtualNetworks/vnet2","name":"vnet2","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002","name":"cli-test-vnet000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{"cli-test":"test"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsecu5ebsb53nbifehviv4um6ztqwtnjmwshzhljtet4ic4ryd/providers/Microsoft.Network/virtualNetworks/vnet1","name":"vnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/publicIPAddresses/pubip1","name":"pubip1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/publicIPAddresses/pubip2","name":"pubip2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/publicIPAddresses/pubip3","name":"pubip3","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworkGateways/gateway1","name":"gateway1","type":"Microsoft.Network/virtualNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworkGateways/gateway2","name":"gateway2","type":"Microsoft.Network/virtualNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworkGateways/gateway3","name":"gateway3","type":"Microsoft.Network/virtualNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet1","name":"myvnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet2","name":"myvnet2","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet3","name":"myvnet3","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786","name":"cliautomationlab786","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987","name":"acliautomationlab2987","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073","name":"cliautomationlab6073","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281","name":"acliautomationlab2281","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggaimbllzxyuijlxj3lrywgzdrume4xj3xj66hdfhqv6eqba26ht76nokbtp6sfaoi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq5564odu5p6","name":"clitest-vaultq5564odu5p6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnuanxhtclm3obme75s2yhbzhdh6fgu7gcd34afmgnbu2kqpmla5i2d6wpulrddzvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmy2cqovnax","name":"clitest-vaultwmy2cqovnax","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa3pgets3kev3ayjwmgv5a7qu6gyvibpsysagad36u2osnytlxbvwinhmlx2hmfhq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultetp33oawxea","name":"clitest-vaultetp33oawxea","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpcda3pf4qgao5oxnpmsepukjzbvmxhrvppugmm3fb5yrhyxnu62pkjcr75v4v4s7m/providers/Microsoft.RecoveryServices/vaults/clitest-vault5mezslybkil","name":"clitest-vault5mezslybkil","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet6623","name":"CliGtTestVnet6623","type":"Microsoft.ClassicNetwork/virtualNetworks","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg072109080/providers/Microsoft.Web/serverFarms/java-webapp-40106cplancd2129900","name":"java-webapp-40106cplancd2129900","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg072109080/providers/Microsoft.Web/sites/java-webapp-40106c","name":"java-webapp-40106c","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg11198915b/providers/Microsoft.Web/serverFarms/java-webapp-627771plan5d2170030","name":"java-webapp-627771plan5d2170030","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg11198915b/providers/Microsoft.Web/sites/java-webapp-627771","name":"java-webapp-627771","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1729/providers/Microsoft.Web/serverFarms/java-webapp-1884plan30f6275899","name":"java-webapp-1884plan30f6275899","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1729/providers/Microsoft.Web/sites/java-webapp-1884","name":"java-webapp-1884","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1c386109e/providers/Microsoft.Web/serverFarms/java-webapp-301549plan021072599","name":"java-webapp-301549plan021072599","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1c386109e/providers/Microsoft.Web/sites/java-webapp-301549","name":"java-webapp-301549","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG2198/providers/Microsoft.Compute/disks/extvm420_OsDisk_1_70b7a5c18051431f81637bbbaac56765","name":"extvm420_OsDisk_1_70b7a5c18051431f81637bbbaac56765","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Compute/virtualMachines/extvm420","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Compute/virtualMachines/extvm420","name":"extvm420","type":"Microsoft.Compute/virtualMachines","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Compute/virtualMachines/extvm420/extensions/CustomScriptForLinux","name":"extvm420/CustomScriptForLinux","type":"Microsoft.Compute/virtualMachines/extensions","location":"eastus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Network/networkInterfaces/nicextvm420f1015027","name":"nicextvm420f1015027","type":"Microsoft.Network/networkInterfaces","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Network/virtualNetworks/vnetb6c70989836d","name":"vnetb6c70989836d","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Storage/storageAccounts/stg6429","name":"stg6429","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/serverFarms/java-webapp-33169bplan159816974","name":"java-webapp-33169bplan159816974","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/sites/java-webapp-33169b","name":"java-webapp-33169b","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/sites/java-webapp-33169b/slots/java-slot-737426650","name":"java-webapp-33169b/java-slot-737426650","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/sites/java-webapp-33169b/slots/java-slot-8db674920","name":"java-webapp-33169b/java-slot-8db674920","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/sites/java-webapp-33169b/slots/java-slot-9e2518802","name":"java-webapp-33169b/java-slot-9e2518802","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3321/providers/Microsoft.Web/serverFarms/java-asp-1171","name":"java-asp-1171","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":3},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3330/providers/Microsoft.Storage/storageAccounts/stg6913","name":"stg6913","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg344/providers/Microsoft.Web/serverFarms/java-webapp-1598plan77f7102300","name":"java-webapp-1598plan77f7102300","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg344/providers/Microsoft.Web/serverFarms/java-webapp-1598plane466963822","name":"java-webapp-1598plane466963822","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg344/providers/Microsoft.Web/sites/java-webapp-1598","name":"java-webapp-1598","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Storage/storageAccounts/javast2059","name":"javast2059","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Web/serverFarms/java-webapp-9558plan37a3592455","name":"java-webapp-9558plan37a3592455","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Web/serverFarms/java-webapp-9558planf335959107","name":"java-webapp-9558planf335959107","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Web/sites/java-webapp-6832","name":"java-webapp-6832","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Web/sites/java-webapp-9558","name":"java-webapp-9558","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Storage/storageAccounts/javawebapp16755273","name":"javawebapp16755273","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/serverFarms/java-webapp-167planb0740622ba","name":"java-webapp-167planb0740622ba","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/sites/java-webapp-167","name":"java-webapp-167","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/sites/java-webapp-167/slots/java-slot-3685","name":"java-webapp-167/java-slot-3685","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/sites/java-webapp-167/slots/java-slot-4504","name":"java-webapp-167/java-slot-4504","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/sites/java-webapp-167/slots/java-slot-8375","name":"java-webapp-167/java-slot-8375","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Compute/virtualMachineScaleSets/vmss6240","name":"vmss6240","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_A0","tier":"Standard","capacity":2},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/loadBalancers/extlb1-3457","name":"extlb1-3457","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/loadBalancers/InternalLb1-504","name":"InternalLb1-504","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-3457","name":"pip-extlb1-3457","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/virtualNetworks/vmssvnet","name":"vmssvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Storage/storageAccounts/stg3571","name":"stg3571","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Storage/storageAccounts/stg7313","name":"stg7313","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2963","name":"vmss2963","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_A0","tier":"Standard","capacity":2},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Network/loadBalancers/extlb1-8820","name":"extlb1-8820","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-8820","name":"pip-extlb1-8820","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Network/virtualNetworks/vmssvnet9726","name":"vmssvnet9726","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Storage/storageAccounts/stg152","name":"stg152","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Storage/storageAccounts/stg27155","name":"stg27155","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5989/providers/Microsoft.Web/serverFarms/java-webapp-2747plan3563819719","name":"java-webapp-2747plan3563819719","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5989/providers/Microsoft.Web/sites/java-webapp-2747","name":"java-webapp-2747","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6128/providers/Microsoft.Web/sites/java-webapp-6923","name":"java-webapp-6923","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg637/providers/Microsoft.Web/serverFarms/java-webapp-7056plan8422511078","name":"java-webapp-7056plan8422511078","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg637/providers/Microsoft.Web/serverFarms/java-webapp-7056plane092676350","name":"java-webapp-7056plane092676350","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg637/providers/Microsoft.Web/sites/java-webapp-7056","name":"java-webapp-7056","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6833/providers/Microsoft.Storage/storageAccounts/stg6586","name":"stg6586","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/serverFarms/java-webapp-1301plan5083330179","name":"java-webapp-1301plan5083330179","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/sites/java-webapp-1301","name":"java-webapp-1301","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/sites/java-webapp-1301/slots/java-slot-1751","name":"java-webapp-1301/java-slot-1751","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/sites/java-webapp-1301/slots/java-slot-683","name":"java-webapp-1301/java-slot-683","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/sites/java-webapp-1301/slots/java-slot-9157","name":"java-webapp-1301/java-slot-9157","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7848/providers/Microsoft.Web/serverFarms/java-webapp-9939plan93964788fe","name":"java-webapp-9939plan93964788fe","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7848/providers/Microsoft.Web/sites/java-webapp-9939","name":"java-webapp-9939","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8926/providers/Microsoft.Web/sites/java-webapp-1555","name":"java-webapp-1555","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9970/providers/Microsoft.Storage/storageAccounts/javawebapp199046220","name":"javawebapp199046220","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9970/providers/Microsoft.Web/serverFarms/java-webapp-1990plan90829345a4","name":"java-webapp-1990plan90829345a4","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9970/providers/Microsoft.Web/sites/java-webapp-1990","name":"java-webapp-1990","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/serverFarms/java-webapp-99645aplan5e486269d","name":"java-webapp-99645aplan5e486269d","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/sites/java-webapp-99645a","name":"java-webapp-99645a","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/sites/java-webapp-99645a/slots/java-slot-bb4307045","name":"java-webapp-99645a/java-slot-bb4307045","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/sites/java-webapp-99645a/slots/java-slot-c02021309","name":"java-webapp-99645a/java-slot-c02021309","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/sites/java-webapp-99645a/slots/java-slot-d3341679b","name":"java-webapp-99645a/java-slot-d3341679b","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Storage/storageAccounts/f0e26b1f0caf431cbb4f","name":"f0e26b1f0caf431cbb4f","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/serverFarms/java-funcapp-470145planceb77987","name":"java-funcapp-470145planceb77987","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/sites/java-funcapp-470145","name":"java-funcapp-470145","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/sites/java-funcapp-470145/slots/java-slot-454731820","name":"java-funcapp-470145/java-slot-454731820","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/sites/java-funcapp-470145/slots/java-slot-9af20975b","name":"java-funcapp-470145/java-slot-9af20975b","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/sites/java-funcapp-470145/slots/java-slot-a76914365","name":"java-funcapp-470145/java-slot-a76914365","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfd4842196/providers/Microsoft.Web/serverFarms/java-webapp-55879bplana0e180727","name":"java-webapp-55879bplana0e180727","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfd4842196/providers/Microsoft.Web/sites/java-webapp-55879b","name":"java-webapp-55879b","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Storage/storageAccounts/fd24510f0be647e68264","name":"fd24510f0be647e68264","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/serverFarms/java-funcapp-468713plan6c358644","name":"java-funcapp-468713plan6c358644","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/sites/java-funcapp-468713","name":"java-funcapp-468713","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/sites/java-funcapp-468713/slots/java-slot-7eb793419","name":"java-funcapp-468713/java-slot-7eb793419","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/sites/java-funcapp-468713/slots/java-slot-955581714","name":"java-funcapp-468713/java-slot-955581714","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/sites/java-funcapp-468713/slots/java-slot-e36436386","name":"java-funcapp-468713/java-slot-e36436386","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw16343fgroup/providers/Microsoft.Network/networkWatchers/nw16343f","name":"nw16343f","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg029241/providers/Microsoft.Network/virtualNetworks/vnet62260","name":"vnet62260","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG16343F/providers/Microsoft.Compute/disks/vm9112041195_OsDisk_1_a7fa8c26657b44009be34045065e1bf7","name":"vm9112041195_OsDisk_1_a7fa8c26657b44009be34045065e1bf7","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vm9112041195","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG16343F/providers/Microsoft.Compute/disks/vmf0d9052296_OsDisk_1_e680e5df3eb64e47a978f83008179456","name":"vmf0d9052296_OsDisk_1_e680e5df3eb64e47a978f83008179456","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vmf0d9052296","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vm9112041195","name":"vm9112041195","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vm9112041195/extensions/packetCapture","name":"vm9112041195/packetCapture","type":"Microsoft.Compute/virtualMachines/extensions","location":"northcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vmf0d9052296","name":"vmf0d9052296","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkInterfaces/ni16343f","name":"ni16343f","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkInterfaces/nic110031c4861","name":"nic110031c4861","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkSecurityGroups/nsg16343f","name":"nsg16343f","type":"Microsoft.Network/networkSecurityGroups","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/publicIPAddresses/pip11994164","name":"pip11994164","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/virtualNetworks/net16343f","name":"net16343f","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/virtualNetworks/vnet2388336427","name":"vnet2388336427","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Storage/storageAccounts/sa16343f","name":"sa16343f","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg21086c/providers/Microsoft.Network/publicIPAddresses/pip21086c","name":"pip21086c","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg21086c/providers/Microsoft.Network/trafficmanagerprofiles/nestedtm21086c","name":"nestedtm21086c","type":"Microsoft.Network/trafficmanagerprofiles","location":"global","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg21086c/providers/Microsoft.Network/trafficmanagerprofiles/tm21086c","name":"tm21086c","type":"Microsoft.Network/trafficmanagerprofiles","location":"global","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4990/providers/Microsoft.Network/virtualNetworks/vnet78716","name":"vnet78716","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Compute/virtualMachines/chashvm","name":"chashvm","type":"Microsoft.Compute/virtualMachines","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvm554088348","name":"nicchashvm554088348","type":"Microsoft.Network/networkInterfaces","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvmc6f32569d","name":"nicchashvmc6f32569d","type":"Microsoft.Network/networkInterfaces","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnet71196243ad42","name":"vnet71196243ad42","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnetd8a95145370f","name":"vnetd8a95145370f","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stg4972","name":"stg4972","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stgchashvm554467411c7","name":"stgchashvm554467411c7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stgchashvmc6f93816982","name":"stgchashvmc6f93816982","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/availabilitySets/asInternalMinimum5987","name":"asInternalMinimum5987","type":"Microsoft.Compute/availabilitySets","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGINTERNALMINIMUM5987/providers/Microsoft.Compute/disks/vm4743_OsDisk_1_98f57fb04b404263a78923eb2df90952","name":"vm4743_OsDisk_1_98f57fb04b404263a78923eb2df90952","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm4743","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGINTERNALMINIMUM5987/providers/Microsoft.Compute/disks/vm9780_OsDisk_1_b3677b2829584a4abdc6f3b55835ef2f","name":"vm9780_OsDisk_1_b3677b2829584a4abdc6f3b55835ef2f","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm9780","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm4743","name":"vm4743","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm9780","name":"vm9780","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/networkInterfaces/nicvm474364773742a","name":"nicvm474364773742a","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/networkInterfaces/nicvm97805f239599b","name":"nicvm97805f239599b","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/virtualNetworks/netInternalMinimum5987","name":"netInternalMinimum5987","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.DomainRegistration/domains/jsdkdemo-6dd12839a.com","name":"jsdkdemo-6dd12839a.com","type":"Microsoft.DomainRegistration/domains","location":"global","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/certificates/9D2040AF2ABB48E4418262D63CD5DF9B4815403A##southeastasia#","name":"9D2040AF2ABB48E4418262D63CD5DF9B4815403A##southeastasia#","type":"Microsoft.Web/certificates","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/certificates/9D2040AF2ABB48E4418262D63CD5DF9B4815403A##westeurope#","name":"9D2040AF2ABB48E4418262D63CD5DF9B4815403A##westeurope#","type":"Microsoft.Web/certificates","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/certificates/9D2040AF2ABB48E4418262D63CD5DF9B4815403A##westus#","name":"9D2040AF2ABB48E4418262D63CD5DF9B4815403A##westus#","type":"Microsoft.Web/certificates","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/serverFarms/jplan1_36e12989","name":"jplan1_36e12989","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/serverFarms/jplan2_b5c97817","name":"jplan2_b5c97817","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/serverFarms/jplan3_0cd03576","name":"jplan3_0cd03576","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp1-5e96556485","name":"webapp1-5e96556485","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp2-39c6880550","name":"webapp2-39c6880550","type":"Microsoft.Web/sites","kind":"app,linux","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp3-d645858162","name":"webapp3-d645858162","type":"Microsoft.Web/sites","kind":"app,linux","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp4-72878890d6","name":"webapp4-72878890d6","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp5-b61873412f","name":"webapp5-b61873412f","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/osdisk_PoB6DEjHaR","name":"osdisk_PoB6DEjHaR","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","name":"sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","name":"sdk-test-m","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um","name":"sdk-test-um","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","name":"sdk-test-mVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","name":"sdk-test-umVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG","name":"sdk-test-mNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG","name":"sdk-test-umNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP","name":"sdk-test-mPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP","name":"sdk-test-umPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","name":"sdk-test-umVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Storage/storageAccounts/sdkteststor","name":"sdkteststor","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applications/app1","name":"app1","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus","plan":{"name":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","product":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","publisher":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","version":"1.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/connections/conn1","name":"conn1","type":"Microsoft.Network/connections","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/localNetworkGateways/lgw2","name":"lgw2","type":"Microsoft.Network/localNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/publicIPAddresses/pip1","name":"pip1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworkGateways/vgw1","name":"vgw1","type":"Microsoft.Network/virtualNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1","name":"vnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VM838463GROUP/providers/Microsoft.Compute/disks/vm838463_OsDisk_1_36deae35812f4cd9893b5f9d09aa88d4","name":"vm838463_OsDisk_1_36deae35812f4cd9893b5f9d09aa88d4","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Compute/virtualMachines/vm838463","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Compute/virtualMachines/vm838463","name":"vm838463","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/networkInterfaces/nicvm8384638d557215","name":"nicvm8384638d557215","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/publicIPAddresses/vm838463","name":"vm838463","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/virtualNetworks/vnet657526e160","name":"vnet657526e160","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Network/networkInterfaces/nicjavavmf5f438587","name":"nicjavavmf5f438587","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Network/virtualNetworks/vnete6855148cf09","name":"vnete6855148cf09","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Storage/storageAccounts/stgbnc5688","name":"stgbnc5688","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Storage/storageAccounts/stgjavavmf5f82316bc0","name":"stgjavavmf5f82316bc0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/networkInterfaces/nicjavavm06e415802","name":"nicjavavm06e415802","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/networkInterfaces/nicjavavma6661870b","name":"nicjavavma6661870b","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/virtualNetworks/vnet86d46742e82d","name":"vnet86d46742e82d","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/virtualNetworks/vnetcc1886655d8d","name":"vnetcc1886655d8d","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Storage/storageAccounts/stgjavavm06e652042e1","name":"stgjavavm06e652042e1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Storage/storageAccounts/stgjavavma6675215847","name":"stgjavavma6675215847","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMBDTEST3911/providers/Microsoft.Compute/disks/javavm_OsDisk_1_ebcfca4f8f444a84922e1777fff89ae3","name":"javavm_OsDisk_1_ebcfca4f8f444a84922e1777fff89ae3","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Network/networkInterfaces/nicjavavm1ec07269a","name":"nicjavavm1ec07269a","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Network/virtualNetworks/vnet00645459b370","name":"vnet00645459b370","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Storage/storageAccounts/stgbnc6868","name":"stgbnc6868","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Network/networkInterfaces/nicjavavm795777211","name":"nicjavavm795777211","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Network/virtualNetworks/vnet989337179668","name":"vnet989337179668","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Storage/storageAccounts/stgjavavm7950068239d","name":"stgjavavm7950068239d","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMBDTEST5011/providers/Microsoft.Compute/disks/javavm_OsDisk_1_0566e2be21564301b27cfa64942a3f5a","name":"javavm_OsDisk_1_0566e2be21564301b27cfa64942a3f5a","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Network/networkInterfaces/nicjavavm22f123750","name":"nicjavavm22f123750","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Network/virtualNetworks/vnet09c4165988ae","name":"vnet09c4165988ae","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Storage/storageAccounts/stgbnc6282","name":"stgbnc6282","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMBDTEST5531/providers/Microsoft.Compute/disks/javavm_OsDisk_1_318c9b7dcfc24d20818fa18cda0e6c09","name":"javavm_OsDisk_1_318c9b7dcfc24d20818fa18cda0e6c09","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Network/networkInterfaces/nicjavavma5f654570","name":"nicjavavma5f654570","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Network/virtualNetworks/vnetb7d67209574b","name":"vnetb7d67209574b","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Storage/storageAccounts/stgjavavma5f99523078","name":"stgjavavma5f99523078","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMBDTEST6695/providers/Microsoft.Compute/disks/javavm_OsDisk_1_0568c171c93c4a91812bf5b113698715","name":"javavm_OsDisk_1_0568c171c93c4a91812bf5b113698715","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Network/networkInterfaces/nicjavavm59203494a","name":"nicjavavm59203494a","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Network/virtualNetworks/vneta38537952ceb","name":"vneta38537952ceb","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Storage/storageAccounts/stgjavavm5922246763a","name":"stgjavavm5922246763a","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Network/networkInterfaces/nicjavavm4d9535936","name":"nicjavavm4d9535936","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Network/virtualNetworks/vnet98106873b8f8","name":"vnet98106873b8f8","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Storage/storageAccounts/stgbnc1515","name":"stgbnc1515","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Storage/storageAccounts/stgjavavm4d971912c24","name":"stgjavavm4d971912c24","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMEXTTEST4583/providers/Microsoft.Compute/disks/javavm_OsDisk_1_80358ae52a9c4a9ab3a8a38d00d559ba","name":"javavm_OsDisk_1_80358ae52a9c4a9ab3a8a38d00d559ba","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Compute/virtualMachines/javavm/extensions/VMAccessForLinux","name":"javavm/VMAccessForLinux","type":"Microsoft.Compute/virtualMachines/extensions","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Network/networkInterfaces/nicjavavm611242549","name":"nicjavavm611242549","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Network/virtualNetworks/vnetcca23231b7dd","name":"vnetcca23231b7dd","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMEXTTEST5494/providers/Microsoft.Compute/disks/javavm_OsDisk_1_3e62f7f115b5457cb6533534bcfa4d2e","name":"javavm_OsDisk_1_3e62f7f115b5457cb6533534bcfa4d2e","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Network/networkInterfaces/nicjavavmf12032758","name":"nicjavavmf12032758","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Network/virtualNetworks/vnet2ea21762a3e4","name":"vnet2ea21762a3e4","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMEXTTEST672/providers/Microsoft.Compute/disks/javavm_OsDisk_1_6b3ee4852aec4e8099d52f9ad0de8b53","name":"javavm_OsDisk_1_6b3ee4852aec4e8099d52f9ad0de8b53","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Compute/virtualMachines/javavm/extensions/VMAccessForLinux","name":"javavm/VMAccessForLinux","type":"Microsoft.Compute/virtualMachines/extensions","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Network/networkInterfaces/nicjavavm96c778970","name":"nicjavavm96c778970","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Network/virtualNetworks/vnetcfe85935c2bc","name":"vnetcfe85935c2bc","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WILX-GROUP/providers/Microsoft.Compute/disks/wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","name":"wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Compute/virtualMachines/wilx-vm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic","name":"wilx-vmVMNic","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG","name":"wilx-vmNSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/publicIPAddresses/wilx-vmPublicIP","name":"wilx-vmPublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet","name":"wilxvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Solutions/applications/wilxapp","name":"wilxapp","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage","name":"wilxstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage1","name":"wilxstorage1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage2","name":"wilxstorage2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/serverFarms/wilx-plan","name":"wilx-plan","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/rubyhello","name":"rubyhello","type":"Microsoft.Web/sites","kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/wilx-webapp","name":"wilx-webapp","type":"Microsoft.Web/sites","kind":"app","location":"eastus"}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener5334n7bvpwnkur6xwyx2gxcpqizpralxt7nxi4kt5jkzgucn7u/providers/Microsoft.Network/applicationGateways/ag1","name":"ag1","type":"Microsoft.Network/applicationGateways","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener5334n7bvpwnkur6xwyx2gxcpqizpralxt7nxi4kt5jkzgucn7u/providers/Microsoft.Network/virtualNetworks/ag1Vnet","name":"ag1Vnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listenerftn7tiqa7xk5c5qburwzwcazyfzv2teqeupzk67xv4ffiwsthr/providers/Microsoft.Network/applicationGateways/ag1","name":"ag1","type":"Microsoft.Network/applicationGateways","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listenerftn7tiqa7xk5c5qburwzwcazyfzv2teqeupzk67xv4ffiwsthr/providers/Microsoft.Network/virtualNetworks/ag1Vnet","name":"ag1Vnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002","name":"vnet-000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{"cli-test":"test"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786","name":"cliautomationlab786","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987","name":"acliautomationlab2987","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073","name":"cliautomationlab6073","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281","name":"acliautomationlab2281","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggaimbllzxyuijlxj3lrywgzdrume4xj3xj66hdfhqv6eqba26ht76nokbtp6sfaoi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq5564odu5p6","name":"clitest-vaultq5564odu5p6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnuanxhtclm3obme75s2yhbzhdh6fgu7gcd34afmgnbu2kqpmla5i2d6wpulrddzvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmy2cqovnax","name":"clitest-vaultwmy2cqovnax","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa3pgets3kev3ayjwmgv5a7qu6gyvibpsysagad36u2osnytlxbvwinhmlx2hmfhq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultetp33oawxea","name":"clitest-vaultetp33oawxea","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpcda3pf4qgao5oxnpmsepukjzbvmxhrvppugmm3fb5yrhyxnu62pkjcr75v4v4s7m/providers/Microsoft.RecoveryServices/vaults/clitest-vault5mezslybkil","name":"clitest-vault5mezslybkil","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/debekoe1/providers/Microsoft.ContainerService/managedClusters/myaks","name":"myaks","type":"Microsoft.ContainerService/managedClusters","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet6623","name":"CliGtTestVnet6623","type":"Microsoft.ClassicNetwork/virtualNetworks","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/serverFarms/java-webapp-113172planc7341120e","name":"java-webapp-113172planc7341120e","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172","name":"java-webapp-113172","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-339600523","name":"java-webapp-113172/java-slot-339600523","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-4ec70331a","name":"java-webapp-113172/java-slot-4ec70331a","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-5d3905486","name":"java-webapp-113172/java-slot-5d3905486","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3b129223f/providers/Microsoft.Web/serverFarms/java-webapp-64203aplanf4717946f","name":"java-webapp-64203aplanf4717946f","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3b129223f/providers/Microsoft.Web/sites/java-webapp-64203a","name":"java-webapp-64203a","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8dc793124/providers/Microsoft.Web/serverFarms/java-webapp-346676plan705476469","name":"java-webapp-346676plan705476469","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8dc793124/providers/Microsoft.Web/sites/java-webapp-346676","name":"java-webapp-346676","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Storage/storageAccounts/4dfdb4ba97cd464db1e8","name":"4dfdb4ba97cd464db1e8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/serverFarms/java-funcapp-90934fplan64491087","name":"java-funcapp-90934fplan64491087","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f","name":"java-funcapp-90934f","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-585089923","name":"java-funcapp-90934f/java-slot-585089923","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-aaa879703","name":"java-funcapp-90934f/java-slot-aaa879703","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-f2988146c","name":"java-funcapp-90934f/java-slot-f2988146c","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf1c169498/providers/Microsoft.Web/serverFarms/java-webapp-124358plandcf26726b","name":"java-webapp-124358plandcf26726b","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf1c169498/providers/Microsoft.Web/sites/java-webapp-124358","name":"java-webapp-124358","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Storage/storageAccounts/13f038a5835047fd9fb9","name":"13f038a5835047fd9fb9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/serverFarms/java-funcapp-947241plan51e62440","name":"java-funcapp-947241plan51e62440","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241","name":"java-funcapp-947241","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-9ec700636","name":"java-funcapp-947241/java-slot-9ec700636","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-a17219118","name":"java-funcapp-947241/java-slot-a17219118","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-bbf64332e","name":"java-funcapp-947241/java-slot-bbf64332e","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/serverFarms/java-webapp-264634pland4a213930","name":"java-webapp-264634pland4a213930","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634","name":"java-webapp-264634","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-0b172575f","name":"java-webapp-264634/java-slot-0b172575f","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-6d099874e","name":"java-webapp-264634/java-slot-6d099874e","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-b4475990e","name":"java-webapp-264634/java-slot-b4475990e","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfcb942921/providers/Microsoft.Web/serverFarms/java-webapp-70178bplan07213529f","name":"java-webapp-70178bplan07213529f","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfcb942921/providers/Microsoft.Web/sites/java-webapp-70178b","name":"java-webapp-70178b","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javasb38702568243/providers/Microsoft.ServiceBus/namespaces/jvsbns20d21229","name":"jvsbns20d21229","type":"Microsoft.ServiceBus/namespaces","sku":{"name":"Premium","tier":"Premium","capacity":1},"kind":"Messaging","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/availabilitySets/myaks-availabilitySet-17958201","name":"myaks-availabilitySet-17958201","type":"Microsoft.Compute/availabilitySets","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-0_OsDisk_1_7c43f26ed76e41189272cbe02e88fcf5","name":"k8s-myaks-17958201-0_OsDisk_1_7c43f26ed76e41189272cbe02e88fcf5","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-0","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-1_OsDisk_1_3be4f3e76c264ec6913ab60407754bb9","name":"k8s-myaks-17958201-1_OsDisk_1_3be4f3e76c264ec6913ab60407754bb9","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-1","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-2_OsDisk_1_8f30daefd84e4872b359528b3e95547c","name":"k8s-myaks-17958201-2_OsDisk_1_8f30daefd84e4872b359528b3e95547c","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-2","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0","name":"k8s-myaks-17958201-0","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-0","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0/extensions/cse0","name":"k8s-myaks-17958201-0/cse0","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1","name":"k8s-myaks-17958201-1","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-1","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1/extensions/cse1","name":"k8s-myaks-17958201-1/cse1","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2","name":"k8s-myaks-17958201-2","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-2","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2/extensions/cse2","name":"k8s-myaks-17958201-2/cse2","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-0","name":"k8s-myaks-17958201-nic-0","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-1","name":"k8s-myaks-17958201-nic-1","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-2","name":"k8s-myaks-17958201-nic-2","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkSecurityGroups/k8s-agentpool-17958201-nsg","name":"k8s-agentpool-17958201-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/routeTables/k8s-agentpool-17958201-routetable","name":"k8s-agentpool-17958201-routetable","type":"Microsoft.Network/routeTables","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/virtualNetworks/k8s-vnet-17958201","name":"k8s-vnet-17958201","type":"Microsoft.Network/virtualNetworks","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw47271group/providers/Microsoft.Network/networkWatchers/nw47271","name":"nw47271","type":"Microsoft.Network/networkWatchers","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw84097agroup/providers/Microsoft.Network/networkWatchers/nw84097a","name":"nw84097a","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG76B255433A4189C/providers/Microsoft.Compute/disks/vm3db180547e172c1_OsDisk_1_40ee1b4bd93d4d02b4d98a6e868a29f0","name":"vm3db180547e172c1_OsDisk_1_40ee1b4bd93d4d02b4d98a6e868a29f0","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Compute/virtualMachines/vm3db180547e172c1","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Compute/virtualMachines/vm3db180547e172c1","name":"vm3db180547e172c1","type":"Microsoft.Compute/virtualMachines","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/networkInterfaces/nic2108641a0c0","name":"nic2108641a0c0","type":"Microsoft.Network/networkInterfaces","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/networkSecurityGroups/nsgde239044a061","name":"nsgde239044a061","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/publicIPAddresses/pip27522193","name":"pip27522193","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/virtualNetworks/vnet3a2428169db3","name":"vnet3a2428169db3","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG84097A/providers/Microsoft.Compute/disks/vme8e194178e_OsDisk_1_7e59f0712ae74f63bfdd5fcd26958c51","name":"vme8e194178e_OsDisk_1_7e59f0712ae74f63bfdd5fcd26958c51","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme8e194178e","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG84097A/providers/Microsoft.Compute/disks/vme9993415e4_OsDisk_1_52b640bb5c1549c6998141c8f1866947","name":"vme9993415e4_OsDisk_1_52b640bb5c1549c6998141c8f1866947","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme8e194178e","name":"vme8e194178e","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4","name":"vme9993415e4","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4/extensions/packetCapture","name":"vme9993415e4/packetCapture","type":"Microsoft.Compute/virtualMachines/extensions","location":"northcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkInterfaces/ni84097a","name":"ni84097a","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkInterfaces/nic81215498dcb","name":"nic81215498dcb","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkSecurityGroups/nsg84097a","name":"nsg84097a","type":"Microsoft.Network/networkSecurityGroups","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/publicIPAddresses/pip0667443e","name":"pip0667443e","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/virtualNetworks/net84097a","name":"net84097a","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/virtualNetworks/vnet2547772eef","name":"vnet2547772eef","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Storage/storageAccounts/sa84097a","name":"sa84097a","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/osdisk_PoB6DEjHaR","name":"osdisk_PoB6DEjHaR","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","name":"sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","name":"sdk-test-m","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um","name":"sdk-test-um","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","name":"sdk-test-mVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","name":"sdk-test-umVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG","name":"sdk-test-mNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG","name":"sdk-test-umNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP","name":"sdk-test-mPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP","name":"sdk-test-umPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","name":"sdk-test-umVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Storage/storageAccounts/sdkteststor","name":"sdkteststor","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applications/app1","name":"app1","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus","plan":{"name":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","product":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","publisher":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","version":"1.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WILX-GROUP/providers/Microsoft.Compute/disks/wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","name":"wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Compute/virtualMachines/wilx-vm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic","name":"wilx-vmVMNic","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG","name":"wilx-vmNSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/publicIPAddresses/wilx-vmPublicIP","name":"wilx-vmPublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet","name":"wilxvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Solutions/applications/wilxapp","name":"wilxapp","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage","name":"wilxstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/serverFarms/wilx-plan","name":"wilx-plan","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/rubyhello","name":"rubyhello","type":"Microsoft.Web/sites","kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/wilx-webapp","name":"wilx-webapp","type":"Microsoft.Web/sites","kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Compute/virtualMachineScaleSets/yugangw-ss","name":"yugangw-ss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_D1_v2","tier":"Standard","capacity":1},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB","name":"yugangw-ssLB","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/publicIPAddresses/yugangw-ssLBPublicIP","name":"yugangw-ssLBPublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-ssVNET","name":"yugangw-ssVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
headers:
cache-control: [no-cache]
- content-length: ['73865']
+ content-length: ['35364']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:09 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:25 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -199,22 +225,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=location%20eq%20%27southcentralus%27&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=location%20eq%20%27southcentralus%27
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002","name":"cli-test-vnet000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{"cli-test":"test"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Compute/virtualMachines/chashvm","name":"chashvm","type":"Microsoft.Compute/virtualMachines","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvm554088348","name":"nicchashvm554088348","type":"Microsoft.Network/networkInterfaces","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvmc6f32569d","name":"nicchashvmc6f32569d","type":"Microsoft.Network/networkInterfaces","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnet71196243ad42","name":"vnet71196243ad42","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnetd8a95145370f","name":"vnetd8a95145370f","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stg4972","name":"stg4972","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stgchashvm554467411c7","name":"stgchashvm554467411c7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stgchashvmc6f93816982","name":"stgchashvmc6f93816982","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"southcentralus","tags":{}}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002","name":"vnet-000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{"cli-test":"test"}}]}'}
headers:
cache-control: [no-cache]
- content-length: ['2677']
+ content-length: ['376']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:13 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:25 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -225,22 +251,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/virtualNetworks/vnet86360253914e","name":"vnet86360253914e","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetbkt262cqdtsxzznk45t2uibaln36gys5r6vczbx4dyqkpxci/providers/Microsoft.Network/virtualNetworks/vnet2","name":"vnet2","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002","name":"cli-test-vnet000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{"cli-test":"test"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsecu5ebsb53nbifehviv4um6ztqwtnjmwshzhljtet4ic4ryd/providers/Microsoft.Network/virtualNetworks/vnet1","name":"vnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet1","name":"myvnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet2","name":"myvnet2","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet3","name":"myvnet3","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Network/virtualNetworks/vnetb6c70989836d","name":"vnetb6c70989836d","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/virtualNetworks/vmssvnet","name":"vmssvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Network/virtualNetworks/vmssvnet9726","name":"vmssvnet9726","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg029241/providers/Microsoft.Network/virtualNetworks/vnet62260","name":"vnet62260","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/virtualNetworks/net16343f","name":"net16343f","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/virtualNetworks/vnet2388336427","name":"vnet2388336427","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4990/providers/Microsoft.Network/virtualNetworks/vnet78716","name":"vnet78716","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnet71196243ad42","name":"vnet71196243ad42","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnetd8a95145370f","name":"vnetd8a95145370f","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/virtualNetworks/netInternalMinimum5987","name":"netInternalMinimum5987","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","name":"sdk-test-umVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1","name":"vnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/virtualNetworks/vnet657526e160","name":"vnet657526e160","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Network/virtualNetworks/vnete6855148cf09","name":"vnete6855148cf09","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/virtualNetworks/vnet86d46742e82d","name":"vnet86d46742e82d","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/virtualNetworks/vnetcc1886655d8d","name":"vnetcc1886655d8d","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Network/virtualNetworks/vnet00645459b370","name":"vnet00645459b370","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Network/virtualNetworks/vnet989337179668","name":"vnet989337179668","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Network/virtualNetworks/vnet09c4165988ae","name":"vnet09c4165988ae","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Network/virtualNetworks/vnetb7d67209574b","name":"vnetb7d67209574b","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Network/virtualNetworks/vneta38537952ceb","name":"vneta38537952ceb","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Network/virtualNetworks/vnet98106873b8f8","name":"vnet98106873b8f8","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Network/virtualNetworks/vnetcca23231b7dd","name":"vnetcca23231b7dd","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Network/virtualNetworks/vnet2ea21762a3e4","name":"vnet2ea21762a3e4","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Network/virtualNetworks/vnetcfe85935c2bc","name":"vnetcfe85935c2bc","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet","name":"wilxvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener5334n7bvpwnkur6xwyx2gxcpqizpralxt7nxi4kt5jkzgucn7u/providers/Microsoft.Network/virtualNetworks/ag1Vnet","name":"ag1Vnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listenerftn7tiqa7xk5c5qburwzwcazyfzv2teqeupzk67xv4ffiwsthr/providers/Microsoft.Network/virtualNetworks/ag1Vnet","name":"ag1Vnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002","name":"vnet-000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{"cli-test":"test"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/virtualNetworks/k8s-vnet-17958201","name":"k8s-vnet-17958201","type":"Microsoft.Network/virtualNetworks","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/virtualNetworks/vnet3a2428169db3","name":"vnet3a2428169db3","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/virtualNetworks/net84097a","name":"net84097a","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/virtualNetworks/vnet2547772eef","name":"vnet2547772eef","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","name":"sdk-test-umVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet","name":"wilxvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-ssVNET","name":"yugangw-ssVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
headers:
cache-control: [no-cache]
- content-length: ['9136']
+ content-length: ['3328']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:12 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -251,22 +277,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=name%20eq%20%27cli-test-vnet000002%27&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=name%20eq%20%27vnet-000002%27
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002","name":"cli-test-vnet000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{"cli-test":"test"}}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002","name":"vnet-000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{"cli-test":"test"}}]}'}
headers:
cache-control: [no-cache]
content-length: ['376']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:13 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -277,22 +303,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=tagname%20eq%20%27cli-test%27&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=tagname%20eq%20%27cli-test%27
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002","name":"cli-test-vnet000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus"}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002","name":"vnet-000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus"}]}'}
headers:
cache-control: [no-cache]
content-length: ['349']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:13 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -303,22 +329,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=tagname%20eq%20%27cli-test%27%20and%20tagvalue%20eq%20%27test%27&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=tagname%20eq%20%27cli-test%27%20and%20tagvalue%20eq%20%27test%27
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002","name":"cli-test-vnet000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus"}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002","name":"vnet-000002","type":"Microsoft.Network/virtualNetworks","location":"southcentralus"}]}'}
headers:
cache-control: [no-cache]
content-length: ['349']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:13 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:26 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -329,12 +355,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
@@ -471,7 +497,7 @@ interactions:
cache-control: [no-cache]
content-length: ['19080']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:13 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:27 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -482,27 +508,27 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"9a05c0d8-7bb0-410e-99b3-728a5fa7d844\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002\"\
+ ,\r\n \"etag\": \"W/\\\"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\
,\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n },\r\n \"properties\"\
: {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"89d2dc02-73a1-41f0-99de-6cba9eb0e93a\",\r\n \"addressSpace\": {\r\n\
+ \ \"4e56f500-0cdb-427a-8f4d-6333c27f25b5\",\r\n \"addressSpace\": {\r\n\
\ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n\
- \ \"subnets\": [\r\n {\r\n \"name\": \"cli-test-subnet000003\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"9a05c0d8-7bb0-410e-99b3-728a5fa7d844\\\"\"\
+ \ \"subnets\": [\r\n {\r\n \"name\": \"subnet-000003\",\r\n\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003\"\
+ ,\r\n \"etag\": \"W/\\\"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -511,8 +537,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1389']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:14 GMT']
- etag: [W/"9a05c0d8-7bb0-410e-99b3-728a5fa7d844"]
+ date: ['Wed, 18 Oct 2017 18:21:27 GMT']
+ etag: [W/"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -525,12 +551,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
@@ -667,7 +693,7 @@ interactions:
cache-control: [no-cache]
content-length: ['19080']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:14 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:28 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -678,26 +704,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-subnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"9a05c0d8-7bb0-410e-99b3-728a5fa7d844\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"subnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003\"\
+ ,\r\n \"etag\": \"W/\\\"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f\\\"\",\r\n \
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['474']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:15 GMT']
- etag: [W/"9a05c0d8-7bb0-410e-99b3-728a5fa7d844"]
+ date: ['Wed, 18 Oct 2017 18:21:29 GMT']
+ etag: [W/"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -710,12 +736,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource tag]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
@@ -852,7 +878,7 @@ interactions:
cache-control: [no-cache]
content-length: ['19080']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:15 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:29 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -863,27 +889,27 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource tag]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"9a05c0d8-7bb0-410e-99b3-728a5fa7d844\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002\"\
+ ,\r\n \"etag\": \"W/\\\"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\
,\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n },\r\n \"properties\"\
: {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\
- \ \"89d2dc02-73a1-41f0-99de-6cba9eb0e93a\",\r\n \"addressSpace\": {\r\n\
+ \ \"4e56f500-0cdb-427a-8f4d-6333c27f25b5\",\r\n \"addressSpace\": {\r\n\
\ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n\
- \ \"subnets\": [\r\n {\r\n \"name\": \"cli-test-subnet000003\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"9a05c0d8-7bb0-410e-99b3-728a5fa7d844\\\"\"\
+ \ \"subnets\": [\r\n {\r\n \"name\": \"subnet-000003\",\r\n\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003\"\
+ ,\r\n \"etag\": \"W/\\\"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -892,8 +918,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1389']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:15 GMT']
- etag: [W/"9a05c0d8-7bb0-410e-99b3-728a5fa7d844"]
+ date: ['Wed, 18 Oct 2017 18:21:30 GMT']
+ etag: [W/"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -902,47 +928,48 @@ interactions:
vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
- body: 'b''b\''b\\\''{"location": "southcentralus", "tags": {}, "properties": {"provisioningState":
- "Succeeded", "resourceGuid": "89d2dc02-73a1-41f0-99de-6cba9eb0e93a", "addressSpace":
- {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets":
- [{"name": "cli-test-subnet000003", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003",
- "etag": "W/\\\\\\\\"9a05c0d8-7bb0-410e-99b3-728a5fa7d844\\\\\\\\"", "properties":
- {"provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24"}}], "virtualNetworkPeerings":
- [], "enableDdosProtection": false, "enableVmProtection": false}}\\\''\'''''
+ body: 'b''b\''b\\\''{"properties": {"subnets": [{"properties": {"provisioningState":
+ "Succeeded", "addressPrefix": "10.0.0.0/24"}, "name": "subnet-000003", "id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003",
+ "etag": "W/\\\\\\\\"cc2c9cdf-4ef6-4be9-9800-5a5cfb81487f\\\\\\\\""}], "addressSpace":
+ {"addressPrefixes": ["10.0.0.0/16"]}, "enableDdosProtection": false, "provisioningState":
+ "Succeeded", "enableVmProtection": false, "dhcpOptions": {"dnsServers": []},
+ "resourceGuid": "4e56f500-0cdb-427a-8f4d-6333c27f25b5", "virtualNetworkPeerings":
+ []}, "location": "southcentralus", "tags": {}}\\\''\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource tag]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['786']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"a81167d5-7f53-4d14-ad00-a1fe2f8ba6ba\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002\"\
+ ,\r\n \"etag\": \"W/\\\"11d2e68c-1c5f-4d4c-becb-60aeaabbbbf9\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"89d2dc02-73a1-41f0-99de-6cba9eb0e93a\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"4e56f500-0cdb-427a-8f4d-6333c27f25b5\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-test-subnet000003\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"a81167d5-7f53-4d14-ad00-a1fe2f8ba6ba\\\"\"\
+ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet-000003\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003\"\
+ ,\r\n \"etag\": \"W/\\\"11d2e68c-1c5f-4d4c-becb-60aeaabbbbf9\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
: false,\r\n \"enableVmProtection\": false\r\n }\r\n}"}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/69ae1e0d-7e50-4595-a278-0381b83622c2?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/07c8f3f7-5a91-446a-8af4-306635f315a9?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['1361']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:17 GMT']
+ date: ['Wed, 18 Oct 2017 18:21:31 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -956,22 +983,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource tag]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/69ae1e0d-7e50-4595-a278-0381b83622c2?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/07c8f3f7-5a91-446a-8af4-306635f315a9?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:48 GMT']
+ date: ['Wed, 18 Oct 2017 18:22:02 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -984,26 +1011,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource tag]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"a81167d5-7f53-4d14-ad00-a1fe2f8ba6ba\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002\"\
+ ,\r\n \"etag\": \"W/\\\"11d2e68c-1c5f-4d4c-becb-60aeaabbbbf9\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"89d2dc02-73a1-41f0-99de-6cba9eb0e93a\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"4e56f500-0cdb-427a-8f4d-6333c27f25b5\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-test-subnet000003\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"a81167d5-7f53-4d14-ad00-a1fe2f8ba6ba\\\"\"\
+ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet-000003\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003\"\
+ ,\r\n \"etag\": \"W/\\\"11d2e68c-1c5f-4d4c-becb-60aeaabbbbf9\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -1012,8 +1039,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1361']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:48 GMT']
- etag: [W/"a81167d5-7f53-4d14-ad00-a1fe2f8ba6ba"]
+ date: ['Wed, 18 Oct 2017 18:22:01 GMT']
+ etag: [W/"11d2e68c-1c5f-4d4c-becb-60aeaabbbbf9"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1026,12 +1053,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
@@ -1168,7 +1195,7 @@ interactions:
cache-control: [no-cache]
content-length: ['19080']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:48 GMT']
+ date: ['Wed, 18 Oct 2017 18:22:02 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1179,26 +1206,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002?api-version=2017-09-01
response:
- body: {string: "{\r\n \"name\": \"cli-test-vnet000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002\"\
- ,\r\n \"etag\": \"W/\\\"a81167d5-7f53-4d14-ad00-a1fe2f8ba6ba\\\"\",\r\n \
+ body: {string: "{\r\n \"name\": \"vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002\"\
+ ,\r\n \"etag\": \"W/\\\"11d2e68c-1c5f-4d4c-becb-60aeaabbbbf9\\\"\",\r\n \
\ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\
,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\
- \ \"Succeeded\",\r\n \"resourceGuid\": \"89d2dc02-73a1-41f0-99de-6cba9eb0e93a\"\
+ \ \"Succeeded\",\r\n \"resourceGuid\": \"4e56f500-0cdb-427a-8f4d-6333c27f25b5\"\
,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\
10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\
- : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-test-subnet000003\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002/subnets/cli-test-subnet000003\"\
- ,\r\n \"etag\": \"W/\\\"a81167d5-7f53-4d14-ad00-a1fe2f8ba6ba\\\"\"\
+ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet-000003\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002/subnets/subnet-000003\"\
+ ,\r\n \"etag\": \"W/\\\"11d2e68c-1c5f-4d4c-becb-60aeaabbbbf9\\\"\"\
,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\
\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\
@@ -1207,8 +1234,8 @@ interactions:
cache-control: [no-cache]
content-length: ['1361']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:49 GMT']
- etag: [W/"a81167d5-7f53-4d14-ad00-a1fe2f8ba6ba"]
+ date: ['Wed, 18 Oct 2017 18:22:02 GMT']
+ etag: [W/"11d2e68c-1c5f-4d4c-becb-60aeaabbbbf9"]
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1221,12 +1248,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2017-05-10
@@ -1363,7 +1390,7 @@ interactions:
cache-control: [no-cache]
content-length: ['19080']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:50:49 GMT']
+ date: ['Wed, 18 Oct 2017 18:22:03 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1374,51 +1401,51 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001/providers/Microsoft.Network/virtualNetworks/cli-test-vnet000002?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001/providers/Microsoft.Network/virtualNetworks/vnet-000002?api-version=2017-09-01
response:
body: {string: ''}
headers:
- azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8a2df18b-465d-48d8-aee5-8adb8a53497b?api-version=2017-09-01']
+ azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b3f2c0ab-c806-4027-a4f1-a252b033a96b?api-version=2017-09-01']
cache-control: [no-cache]
content-length: ['0']
- date: ['Mon, 16 Oct 2017 19:50:49 GMT']
+ date: ['Wed, 18 Oct 2017 18:22:03 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/8a2df18b-465d-48d8-aee5-8adb8a53497b?api-version=2017-09-01']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/b3f2c0ab-c806-4027-a4f1-a252b033a96b?api-version=2017-09-01']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1151']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8a2df18b-465d-48d8-aee5-8adb8a53497b?api-version=2017-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b3f2c0ab-c806-4027-a4f1-a252b033a96b?api-version=2017-09-01
response:
body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"}
headers:
cache-control: [no-cache]
content-length: ['29']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:51:00 GMT']
+ date: ['Wed, 18 Oct 2017 18:22:15 GMT']
expires: ['-1']
pragma: [no-cache]
server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0]
@@ -1431,22 +1458,22 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [resource list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=&api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=2017-05-10&$filter=
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Compute/virtualMachines/vm362","name":"vm362","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/networkInterfaces/nicvm362eba72807b3","name":"nicvm362eba72807b3","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/publicIPAddresses/abc1636","name":"abc1636","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Network/virtualNetworks/vnet86360253914e","name":"vnet86360253914e","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abc1636group/providers/Microsoft.Storage/storageAccounts/stgvm362eba436448308","name":"stgvm362eba436448308","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetbkt262cqdtsxzznk45t2uibaln36gys5r6vczbx4dyqkpxci/providers/Microsoft.Network/applicationGateways/ag2","name":"ag2","type":"Microsoft.Network/applicationGateways","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_existing_subnetbkt262cqdtsxzznk45t2uibaln36gys5r6vczbx4dyqkpxci/providers/Microsoft.Network/virtualNetworks/vnet2","name":"vnet2","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsecu5ebsb53nbifehviv4um6ztqwtnjmwshzhljtet4ic4ryd/providers/Microsoft.Network/virtualNetworks/vnet1","name":"vnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/publicIPAddresses/pubip1","name":"pubip1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/publicIPAddresses/pubip2","name":"pubip2","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/publicIPAddresses/pubip3","name":"pubip3","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworkGateways/gateway1","name":"gateway1","type":"Microsoft.Network/virtualNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworkGateways/gateway2","name":"gateway2","type":"Microsoft.Network/virtualNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworkGateways/gateway3","name":"gateway3","type":"Microsoft.Network/virtualNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet1","name":"myvnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet2","name":"myvnet2","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gatewaydt4hj2jjfu33576hvkunwqrjepyg5n7y52hbyohsb4osji7e5vu65oo/providers/Microsoft.Network/virtualNetworks/myvnet3","name":"myvnet3","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786","name":"cliautomationlab786","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987","name":"acliautomationlab2987","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073","name":"cliautomationlab6073","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281","name":"acliautomationlab2281","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggaimbllzxyuijlxj3lrywgzdrume4xj3xj66hdfhqv6eqba26ht76nokbtp6sfaoi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq5564odu5p6","name":"clitest-vaultq5564odu5p6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnuanxhtclm3obme75s2yhbzhdh6fgu7gcd34afmgnbu2kqpmla5i2d6wpulrddzvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmy2cqovnax","name":"clitest-vaultwmy2cqovnax","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa3pgets3kev3ayjwmgv5a7qu6gyvibpsysagad36u2osnytlxbvwinhmlx2hmfhq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultetp33oawxea","name":"clitest-vaultetp33oawxea","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpcda3pf4qgao5oxnpmsepukjzbvmxhrvppugmm3fb5yrhyxnu62pkjcr75v4v4s7m/providers/Microsoft.RecoveryServices/vaults/clitest-vault5mezslybkil","name":"clitest-vault5mezslybkil","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet6623","name":"CliGtTestVnet6623","type":"Microsoft.ClassicNetwork/virtualNetworks","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg072109080/providers/Microsoft.Web/serverFarms/java-webapp-40106cplancd2129900","name":"java-webapp-40106cplancd2129900","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg072109080/providers/Microsoft.Web/sites/java-webapp-40106c","name":"java-webapp-40106c","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg11198915b/providers/Microsoft.Web/serverFarms/java-webapp-627771plan5d2170030","name":"java-webapp-627771plan5d2170030","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg11198915b/providers/Microsoft.Web/sites/java-webapp-627771","name":"java-webapp-627771","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1729/providers/Microsoft.Web/serverFarms/java-webapp-1884plan30f6275899","name":"java-webapp-1884plan30f6275899","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1729/providers/Microsoft.Web/sites/java-webapp-1884","name":"java-webapp-1884","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1c386109e/providers/Microsoft.Web/serverFarms/java-webapp-301549plan021072599","name":"java-webapp-301549plan021072599","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg1c386109e/providers/Microsoft.Web/sites/java-webapp-301549","name":"java-webapp-301549","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JAVACSMRG2198/providers/Microsoft.Compute/disks/extvm420_OsDisk_1_70b7a5c18051431f81637bbbaac56765","name":"extvm420_OsDisk_1_70b7a5c18051431f81637bbbaac56765","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Compute/virtualMachines/extvm420","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Compute/virtualMachines/extvm420","name":"extvm420","type":"Microsoft.Compute/virtualMachines","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Compute/virtualMachines/extvm420/extensions/CustomScriptForLinux","name":"extvm420/CustomScriptForLinux","type":"Microsoft.Compute/virtualMachines/extensions","location":"eastus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Network/networkInterfaces/nicextvm420f1015027","name":"nicextvm420f1015027","type":"Microsoft.Network/networkInterfaces","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Network/virtualNetworks/vnetb6c70989836d","name":"vnetb6c70989836d","type":"Microsoft.Network/virtualNetworks","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg2198/providers/Microsoft.Storage/storageAccounts/stg6429","name":"stg6429","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/serverFarms/java-webapp-33169bplan159816974","name":"java-webapp-33169bplan159816974","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/sites/java-webapp-33169b","name":"java-webapp-33169b","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/sites/java-webapp-33169b/slots/java-slot-737426650","name":"java-webapp-33169b/java-slot-737426650","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/sites/java-webapp-33169b/slots/java-slot-8db674920","name":"java-webapp-33169b/java-slot-8db674920","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg330246193/providers/Microsoft.Web/sites/java-webapp-33169b/slots/java-slot-9e2518802","name":"java-webapp-33169b/java-slot-9e2518802","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3321/providers/Microsoft.Web/serverFarms/java-asp-1171","name":"java-asp-1171","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":3},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3330/providers/Microsoft.Storage/storageAccounts/stg6913","name":"stg6913","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg344/providers/Microsoft.Web/serverFarms/java-webapp-1598plan77f7102300","name":"java-webapp-1598plan77f7102300","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg344/providers/Microsoft.Web/serverFarms/java-webapp-1598plane466963822","name":"java-webapp-1598plane466963822","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg344/providers/Microsoft.Web/sites/java-webapp-1598","name":"java-webapp-1598","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Storage/storageAccounts/javast2059","name":"javast2059","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Web/serverFarms/java-webapp-9558plan37a3592455","name":"java-webapp-9558plan37a3592455","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Web/serverFarms/java-webapp-9558planf335959107","name":"java-webapp-9558planf335959107","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Web/sites/java-webapp-6832","name":"java-webapp-6832","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4252/providers/Microsoft.Web/sites/java-webapp-9558","name":"java-webapp-9558","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Storage/storageAccounts/javawebapp16755273","name":"javawebapp16755273","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/serverFarms/java-webapp-167planb0740622ba","name":"java-webapp-167planb0740622ba","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/sites/java-webapp-167","name":"java-webapp-167","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/sites/java-webapp-167/slots/java-slot-3685","name":"java-webapp-167/java-slot-3685","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/sites/java-webapp-167/slots/java-slot-4504","name":"java-webapp-167/java-slot-4504","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg4285/providers/Microsoft.Web/sites/java-webapp-167/slots/java-slot-8375","name":"java-webapp-167/java-slot-8375","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Compute/virtualMachineScaleSets/vmss6240","name":"vmss6240","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_A0","tier":"Standard","capacity":2},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/loadBalancers/extlb1-3457","name":"extlb1-3457","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/loadBalancers/InternalLb1-504","name":"InternalLb1-504","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-3457","name":"pip-extlb1-3457","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Network/virtualNetworks/vmssvnet","name":"vmssvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Storage/storageAccounts/stg3571","name":"stg3571","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5418/providers/Microsoft.Storage/storageAccounts/stg7313","name":"stg7313","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2963","name":"vmss2963","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_A0","tier":"Standard","capacity":2},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Network/loadBalancers/extlb1-8820","name":"extlb1-8820","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Network/publicIPAddresses/pip-extlb1-8820","name":"pip-extlb1-8820","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Network/virtualNetworks/vmssvnet9726","name":"vmssvnet9726","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Storage/storageAccounts/stg152","name":"stg152","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5780/providers/Microsoft.Storage/storageAccounts/stg27155","name":"stg27155","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5989/providers/Microsoft.Web/serverFarms/java-webapp-2747plan3563819719","name":"java-webapp-2747plan3563819719","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg5989/providers/Microsoft.Web/sites/java-webapp-2747","name":"java-webapp-2747","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6128/providers/Microsoft.Web/sites/java-webapp-6923","name":"java-webapp-6923","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg637/providers/Microsoft.Web/serverFarms/java-webapp-7056plan8422511078","name":"java-webapp-7056plan8422511078","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg637/providers/Microsoft.Web/serverFarms/java-webapp-7056plane092676350","name":"java-webapp-7056plane092676350","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg637/providers/Microsoft.Web/sites/java-webapp-7056","name":"java-webapp-7056","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6833/providers/Microsoft.Storage/storageAccounts/stg6586","name":"stg6586","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/serverFarms/java-webapp-1301plan5083330179","name":"java-webapp-1301plan5083330179","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/sites/java-webapp-1301","name":"java-webapp-1301","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/sites/java-webapp-1301/slots/java-slot-1751","name":"java-webapp-1301/java-slot-1751","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/sites/java-webapp-1301/slots/java-slot-683","name":"java-webapp-1301/java-slot-683","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg6878/providers/Microsoft.Web/sites/java-webapp-1301/slots/java-slot-9157","name":"java-webapp-1301/java-slot-9157","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7848/providers/Microsoft.Web/serverFarms/java-webapp-9939plan93964788fe","name":"java-webapp-9939plan93964788fe","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg7848/providers/Microsoft.Web/sites/java-webapp-9939","name":"java-webapp-9939","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8926/providers/Microsoft.Web/sites/java-webapp-1555","name":"java-webapp-1555","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9970/providers/Microsoft.Storage/storageAccounts/javawebapp199046220","name":"javawebapp199046220","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9970/providers/Microsoft.Web/serverFarms/java-webapp-1990plan90829345a4","name":"java-webapp-1990plan90829345a4","type":"Microsoft.Web/serverFarms","sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0},"kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg9970/providers/Microsoft.Web/sites/java-webapp-1990","name":"java-webapp-1990","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/serverFarms/java-webapp-99645aplan5e486269d","name":"java-webapp-99645aplan5e486269d","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/sites/java-webapp-99645a","name":"java-webapp-99645a","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/sites/java-webapp-99645a/slots/java-slot-bb4307045","name":"java-webapp-99645a/java-slot-bb4307045","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/sites/java-webapp-99645a/slots/java-slot-c02021309","name":"java-webapp-99645a/java-slot-c02021309","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrga6480800d/providers/Microsoft.Web/sites/java-webapp-99645a/slots/java-slot-d3341679b","name":"java-webapp-99645a/java-slot-d3341679b","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Storage/storageAccounts/f0e26b1f0caf431cbb4f","name":"f0e26b1f0caf431cbb4f","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/serverFarms/java-funcapp-470145planceb77987","name":"java-funcapp-470145planceb77987","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/sites/java-funcapp-470145","name":"java-funcapp-470145","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/sites/java-funcapp-470145/slots/java-slot-454731820","name":"java-funcapp-470145/java-slot-454731820","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/sites/java-funcapp-470145/slots/java-slot-9af20975b","name":"java-funcapp-470145/java-slot-9af20975b","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgbd8340864/providers/Microsoft.Web/sites/java-funcapp-470145/slots/java-slot-a76914365","name":"java-funcapp-470145/java-slot-a76914365","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfd4842196/providers/Microsoft.Web/serverFarms/java-webapp-55879bplana0e180727","name":"java-webapp-55879bplana0e180727","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfd4842196/providers/Microsoft.Web/sites/java-webapp-55879b","name":"java-webapp-55879b","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Storage/storageAccounts/fd24510f0be647e68264","name":"fd24510f0be647e68264","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/serverFarms/java-funcapp-468713plan6c358644","name":"java-funcapp-468713plan6c358644","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/sites/java-funcapp-468713","name":"java-funcapp-468713","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/sites/java-funcapp-468713/slots/java-slot-7eb793419","name":"java-funcapp-468713/java-slot-7eb793419","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/sites/java-funcapp-468713/slots/java-slot-955581714","name":"java-funcapp-468713/java-slot-955581714","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgffd06525c/providers/Microsoft.Web/sites/java-funcapp-468713/slots/java-slot-e36436386","name":"java-funcapp-468713/java-slot-e36436386","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw16343fgroup/providers/Microsoft.Network/networkWatchers/nw16343f","name":"nw16343f","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg029241/providers/Microsoft.Network/virtualNetworks/vnet62260","name":"vnet62260","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG16343F/providers/Microsoft.Compute/disks/vm9112041195_OsDisk_1_a7fa8c26657b44009be34045065e1bf7","name":"vm9112041195_OsDisk_1_a7fa8c26657b44009be34045065e1bf7","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vm9112041195","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG16343F/providers/Microsoft.Compute/disks/vmf0d9052296_OsDisk_1_e680e5df3eb64e47a978f83008179456","name":"vmf0d9052296_OsDisk_1_e680e5df3eb64e47a978f83008179456","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vmf0d9052296","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vm9112041195","name":"vm9112041195","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vm9112041195/extensions/packetCapture","name":"vm9112041195/packetCapture","type":"Microsoft.Compute/virtualMachines/extensions","location":"northcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Compute/virtualMachines/vmf0d9052296","name":"vmf0d9052296","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkInterfaces/ni16343f","name":"ni16343f","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkInterfaces/nic110031c4861","name":"nic110031c4861","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/networkSecurityGroups/nsg16343f","name":"nsg16343f","type":"Microsoft.Network/networkSecurityGroups","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/publicIPAddresses/pip11994164","name":"pip11994164","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/virtualNetworks/net16343f","name":"net16343f","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Network/virtualNetworks/vnet2388336427","name":"vnet2388336427","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg16343f/providers/Microsoft.Storage/storageAccounts/sa16343f","name":"sa16343f","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg21086c/providers/Microsoft.Network/publicIPAddresses/pip21086c","name":"pip21086c","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg21086c/providers/Microsoft.Network/trafficmanagerprofiles/nestedtm21086c","name":"nestedtm21086c","type":"Microsoft.Network/trafficmanagerprofiles","location":"global","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg21086c/providers/Microsoft.Network/trafficmanagerprofiles/tm21086c","name":"tm21086c","type":"Microsoft.Network/trafficmanagerprofiles","location":"global","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4990/providers/Microsoft.Network/virtualNetworks/vnet78716","name":"vnet78716","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Compute/virtualMachines/chashvm","name":"chashvm","type":"Microsoft.Compute/virtualMachines","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvm554088348","name":"nicchashvm554088348","type":"Microsoft.Network/networkInterfaces","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/networkInterfaces/nicchashvmc6f32569d","name":"nicchashvmc6f32569d","type":"Microsoft.Network/networkInterfaces","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnet71196243ad42","name":"vnet71196243ad42","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Network/virtualNetworks/vnetd8a95145370f","name":"vnetd8a95145370f","type":"Microsoft.Network/virtualNetworks","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stg4972","name":"stg4972","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stgchashvm554467411c7","name":"stgchashvm554467411c7","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgfluentchash-3641/providers/Microsoft.Storage/storageAccounts/stgchashvmc6f93816982","name":"stgchashvmc6f93816982","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/availabilitySets/asInternalMinimum5987","name":"asInternalMinimum5987","type":"Microsoft.Compute/availabilitySets","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGINTERNALMINIMUM5987/providers/Microsoft.Compute/disks/vm4743_OsDisk_1_98f57fb04b404263a78923eb2df90952","name":"vm4743_OsDisk_1_98f57fb04b404263a78923eb2df90952","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm4743","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGINTERNALMINIMUM5987/providers/Microsoft.Compute/disks/vm9780_OsDisk_1_b3677b2829584a4abdc6f3b55835ef2f","name":"vm9780_OsDisk_1_b3677b2829584a4abdc6f3b55835ef2f","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm9780","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm4743","name":"vm4743","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Compute/virtualMachines/vm9780","name":"vm9780","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/networkInterfaces/nicvm474364773742a","name":"nicvm474364773742a","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/networkInterfaces/nicvm97805f239599b","name":"nicvm97805f239599b","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgInternalMinimum5987/providers/Microsoft.Network/virtualNetworks/netInternalMinimum5987","name":"netInternalMinimum5987","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.DomainRegistration/domains/jsdkdemo-6dd12839a.com","name":"jsdkdemo-6dd12839a.com","type":"Microsoft.DomainRegistration/domains","location":"global","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/certificates/9D2040AF2ABB48E4418262D63CD5DF9B4815403A##southeastasia#","name":"9D2040AF2ABB48E4418262D63CD5DF9B4815403A##southeastasia#","type":"Microsoft.Web/certificates","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/certificates/9D2040AF2ABB48E4418262D63CD5DF9B4815403A##westeurope#","name":"9D2040AF2ABB48E4418262D63CD5DF9B4815403A##westeurope#","type":"Microsoft.Web/certificates","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/certificates/9D2040AF2ABB48E4418262D63CD5DF9B4815403A##westus#","name":"9D2040AF2ABB48E4418262D63CD5DF9B4815403A##westus#","type":"Microsoft.Web/certificates","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/serverFarms/jplan1_36e12989","name":"jplan1_36e12989","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/serverFarms/jplan2_b5c97817","name":"jplan2_b5c97817","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/serverFarms/jplan3_0cd03576","name":"jplan3_0cd03576","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"linux","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp1-5e96556485","name":"webapp1-5e96556485","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp2-39c6880550","name":"webapp2-39c6880550","type":"Microsoft.Web/sites","kind":"app,linux","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp3-d645858162","name":"webapp3-d645858162","type":"Microsoft.Web/sites","kind":"app,linux","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp4-72878890d6","name":"webapp4-72878890d6","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_35375555e460/providers/Microsoft.Web/sites/webapp5-b61873412f","name":"webapp5-b61873412f","type":"Microsoft.Web/sites","kind":"app,linux","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/osdisk_PoB6DEjHaR","name":"osdisk_PoB6DEjHaR","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","name":"sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","name":"sdk-test-m","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um","name":"sdk-test-um","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","name":"sdk-test-mVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","name":"sdk-test-umVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG","name":"sdk-test-mNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG","name":"sdk-test-umNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP","name":"sdk-test-mPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP","name":"sdk-test-umPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","name":"sdk-test-umVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Storage/storageAccounts/sdkteststor","name":"sdkteststor","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applications/app1","name":"app1","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus","plan":{"name":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","product":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","publisher":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","version":"1.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/connections/conn1","name":"conn1","type":"Microsoft.Network/connections","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/localNetworkGateways/lgw2","name":"lgw2","type":"Microsoft.Network/localNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/publicIPAddresses/pip1","name":"pip1","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworkGateways/vgw1","name":"vgw1","type":"Microsoft.Network/virtualNetworkGateways","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-vpn/providers/Microsoft.Network/virtualNetworks/vnet1","name":"vnet1","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VM838463GROUP/providers/Microsoft.Compute/disks/vm838463_OsDisk_1_36deae35812f4cd9893b5f9d09aa88d4","name":"vm838463_OsDisk_1_36deae35812f4cd9893b5f9d09aa88d4","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Compute/virtualMachines/vm838463","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Compute/virtualMachines/vm838463","name":"vm838463","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/networkInterfaces/nicvm8384638d557215","name":"nicvm8384638d557215","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/publicIPAddresses/vm838463","name":"vm838463","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vm838463group/providers/Microsoft.Network/virtualNetworks/vnet657526e160","name":"vnet657526e160","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Network/networkInterfaces/nicjavavmf5f438587","name":"nicjavavmf5f438587","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Network/virtualNetworks/vnete6855148cf09","name":"vnete6855148cf09","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Storage/storageAccounts/stgbnc5688","name":"stgbnc5688","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2127/providers/Microsoft.Storage/storageAccounts/stgjavavmf5f82316bc0","name":"stgjavavmf5f82316bc0","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/networkInterfaces/nicjavavm06e415802","name":"nicjavavm06e415802","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/networkInterfaces/nicjavavma6661870b","name":"nicjavavma6661870b","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/virtualNetworks/vnet86d46742e82d","name":"vnet86d46742e82d","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Network/virtualNetworks/vnetcc1886655d8d","name":"vnetcc1886655d8d","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Storage/storageAccounts/stgjavavm06e652042e1","name":"stgjavavm06e652042e1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest2385/providers/Microsoft.Storage/storageAccounts/stgjavavma6675215847","name":"stgjavavma6675215847","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMBDTEST3911/providers/Microsoft.Compute/disks/javavm_OsDisk_1_ebcfca4f8f444a84922e1777fff89ae3","name":"javavm_OsDisk_1_ebcfca4f8f444a84922e1777fff89ae3","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Network/networkInterfaces/nicjavavm1ec07269a","name":"nicjavavm1ec07269a","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Network/virtualNetworks/vnet00645459b370","name":"vnet00645459b370","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest3911/providers/Microsoft.Storage/storageAccounts/stgbnc6868","name":"stgbnc6868","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Network/networkInterfaces/nicjavavm795777211","name":"nicjavavm795777211","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Network/virtualNetworks/vnet989337179668","name":"vnet989337179668","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest4370/providers/Microsoft.Storage/storageAccounts/stgjavavm7950068239d","name":"stgjavavm7950068239d","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMBDTEST5011/providers/Microsoft.Compute/disks/javavm_OsDisk_1_0566e2be21564301b27cfa64942a3f5a","name":"javavm_OsDisk_1_0566e2be21564301b27cfa64942a3f5a","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Network/networkInterfaces/nicjavavm22f123750","name":"nicjavavm22f123750","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Network/virtualNetworks/vnet09c4165988ae","name":"vnet09c4165988ae","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5011/providers/Microsoft.Storage/storageAccounts/stgbnc6282","name":"stgbnc6282","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMBDTEST5531/providers/Microsoft.Compute/disks/javavm_OsDisk_1_318c9b7dcfc24d20818fa18cda0e6c09","name":"javavm_OsDisk_1_318c9b7dcfc24d20818fa18cda0e6c09","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Network/networkInterfaces/nicjavavma5f654570","name":"nicjavavma5f654570","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Network/virtualNetworks/vnetb7d67209574b","name":"vnetb7d67209574b","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest5531/providers/Microsoft.Storage/storageAccounts/stgjavavma5f99523078","name":"stgjavavma5f99523078","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMBDTEST6695/providers/Microsoft.Compute/disks/javavm_OsDisk_1_0568c171c93c4a91812bf5b113698715","name":"javavm_OsDisk_1_0568c171c93c4a91812bf5b113698715","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Network/networkInterfaces/nicjavavm59203494a","name":"nicjavavm59203494a","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Network/virtualNetworks/vneta38537952ceb","name":"vneta38537952ceb","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest6695/providers/Microsoft.Storage/storageAccounts/stgjavavm5922246763a","name":"stgjavavm5922246763a","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Network/networkInterfaces/nicjavavm4d9535936","name":"nicjavavm4d9535936","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Network/virtualNetworks/vnet98106873b8f8","name":"vnet98106873b8f8","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Storage/storageAccounts/stgbnc1515","name":"stgbnc1515","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmbdtest7973/providers/Microsoft.Storage/storageAccounts/stgjavavm4d971912c24","name":"stgjavavm4d971912c24","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMEXTTEST4583/providers/Microsoft.Compute/disks/javavm_OsDisk_1_80358ae52a9c4a9ab3a8a38d00d559ba","name":"javavm_OsDisk_1_80358ae52a9c4a9ab3a8a38d00d559ba","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Compute/virtualMachines/javavm/extensions/VMAccessForLinux","name":"javavm/VMAccessForLinux","type":"Microsoft.Compute/virtualMachines/extensions","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Network/networkInterfaces/nicjavavm611242549","name":"nicjavavm611242549","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest4583/providers/Microsoft.Network/virtualNetworks/vnetcca23231b7dd","name":"vnetcca23231b7dd","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMEXTTEST5494/providers/Microsoft.Compute/disks/javavm_OsDisk_1_3e62f7f115b5457cb6533534bcfa4d2e","name":"javavm_OsDisk_1_3e62f7f115b5457cb6533534bcfa4d2e","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Network/networkInterfaces/nicjavavmf12032758","name":"nicjavavmf12032758","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest5494/providers/Microsoft.Network/virtualNetworks/vnet2ea21762a3e4","name":"vnet2ea21762a3e4","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMEXTTEST672/providers/Microsoft.Compute/disks/javavm_OsDisk_1_6b3ee4852aec4e8099d52f9ad0de8b53","name":"javavm_OsDisk_1_6b3ee4852aec4e8099d52f9ad0de8b53","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Compute/virtualMachines/javavm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Compute/virtualMachines/javavm","name":"javavm","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Compute/virtualMachines/javavm/extensions/VMAccessForLinux","name":"javavm/VMAccessForLinux","type":"Microsoft.Compute/virtualMachines/extensions","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Network/networkInterfaces/nicjavavm96c778970","name":"nicjavavm96c778970","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vmexttest672/providers/Microsoft.Network/virtualNetworks/vnetcfe85935c2bc","name":"vnetcfe85935c2bc","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WILX-GROUP/providers/Microsoft.Compute/disks/wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","name":"wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Compute/virtualMachines/wilx-vm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic","name":"wilx-vmVMNic","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG","name":"wilx-vmNSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/publicIPAddresses/wilx-vmPublicIP","name":"wilx-vmPublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet","name":"wilxvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Solutions/applications/wilxapp","name":"wilxapp","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage","name":"wilxstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage1","name":"wilxstorage1","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage2","name":"wilxstorage2","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/serverFarms/wilx-plan","name":"wilx-plan","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/rubyhello","name":"rubyhello","type":"Microsoft.Web/sites","kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/wilx-webapp","name":"wilx-webapp","type":"Microsoft.Web/sites","kind":"app","location":"eastus"}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener5334n7bvpwnkur6xwyx2gxcpqizpralxt7nxi4kt5jkzgucn7u/providers/Microsoft.Network/applicationGateways/ag1","name":"ag1","type":"Microsoft.Network/applicationGateways","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listener5334n7bvpwnkur6xwyx2gxcpqizpralxt7nxi4kt5jkzgucn7u/providers/Microsoft.Network/virtualNetworks/ag1Vnet","name":"ag1Vnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listenerftn7tiqa7xk5c5qburwzwcazyfzv2teqeupzk67xv4ffiwsthr/providers/Microsoft.Network/applicationGateways/ag1","name":"ag1","type":"Microsoft.Network/applicationGateways","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ag_http_listenerftn7tiqa7xk5c5qburwzwcazyfzv2teqeupzk67xv4ffiwsthr/providers/Microsoft.Network/virtualNetworks/ag1Vnet","name":"ag1Vnet","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.KeyVault/vaults/cliautomationlab786","name":"cliautomationlab786","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation/providers/Microsoft.Storage/storageAccounts/acliautomationlab2987","name":"acliautomationlab2987","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"9f45d4bf-7e01-4684-9438-37c712728db1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.DevTestLab/labs/cliautomationlab","name":"cliautomationlab","type":"Microsoft.DevTestLab/labs","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073","name":"cliautomationlab6073","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab","name":"Dtlcliautomationlab","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliautomation01/providers/Microsoft.Storage/storageAccounts/acliautomationlab2281","name":"acliautomationlab2281","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"72f1b266-2a21-4f0a-af01-934c93c72e6e"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggaimbllzxyuijlxj3lrywgzdrume4xj3xj66hdfhqv6eqba26ht76nokbtp6sfaoi/providers/Microsoft.RecoveryServices/vaults/clitest-vaultq5564odu5p6","name":"clitest-vaultq5564odu5p6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnuanxhtclm3obme75s2yhbzhdh6fgu7gcd34afmgnbu2kqpmla5i2d6wpulrddzvz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmy2cqovnax","name":"clitest-vaultwmy2cqovnax","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa3pgets3kev3ayjwmgv5a7qu6gyvibpsysagad36u2osnytlxbvwinhmlx2hmfhq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultetp33oawxea","name":"clitest-vaultetp33oawxea","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpcda3pf4qgao5oxnpmsepukjzbvmxhrvppugmm3fb5yrhyxnu62pkjcr75v4v4s7m/providers/Microsoft.RecoveryServices/vaults/clitest-vault5mezslybkil","name":"clitest-vault5mezslybkil","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"},"location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/debekoe1/providers/Microsoft.ContainerService/managedClusters/myaks","name":"myaks","type":"Microsoft.ContainerService/managedClusters","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Networking/providers/Microsoft.ClassicNetwork/virtualNetworks/CliGtTestVnet6623","name":"CliGtTestVnet6623","type":"Microsoft.ClassicNetwork/virtualNetworks","location":"westus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/serverFarms/java-webapp-113172planc7341120e","name":"java-webapp-113172planc7341120e","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172","name":"java-webapp-113172","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-339600523","name":"java-webapp-113172/java-slot-339600523","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-4ec70331a","name":"java-webapp-113172/java-slot-4ec70331a","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg23d721806/providers/Microsoft.Web/sites/java-webapp-113172/slots/java-slot-5d3905486","name":"java-webapp-113172/java-slot-5d3905486","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3b129223f/providers/Microsoft.Web/serverFarms/java-webapp-64203aplanf4717946f","name":"java-webapp-64203aplanf4717946f","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg3b129223f/providers/Microsoft.Web/sites/java-webapp-64203a","name":"java-webapp-64203a","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8dc793124/providers/Microsoft.Web/serverFarms/java-webapp-346676plan705476469","name":"java-webapp-346676plan705476469","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8dc793124/providers/Microsoft.Web/sites/java-webapp-346676","name":"java-webapp-346676","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Storage/storageAccounts/4dfdb4ba97cd464db1e8","name":"4dfdb4ba97cd464db1e8","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/serverFarms/java-funcapp-90934fplan64491087","name":"java-funcapp-90934fplan64491087","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f","name":"java-funcapp-90934f","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-585089923","name":"java-funcapp-90934f/java-slot-585089923","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-aaa879703","name":"java-funcapp-90934f/java-slot-aaa879703","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrge60085202/providers/Microsoft.Web/sites/java-funcapp-90934f/slots/java-slot-f2988146c","name":"java-funcapp-90934f/java-slot-f2988146c","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf1c169498/providers/Microsoft.Web/serverFarms/java-webapp-124358plandcf26726b","name":"java-webapp-124358plandcf26726b","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf1c169498/providers/Microsoft.Web/sites/java-webapp-124358","name":"java-webapp-124358","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Storage/storageAccounts/13f038a5835047fd9fb9","name":"13f038a5835047fd9fb9","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/serverFarms/java-funcapp-947241plan51e62440","name":"java-funcapp-947241plan51e62440","type":"Microsoft.Web/serverFarms","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241","name":"java-funcapp-947241","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-9ec700636","name":"java-funcapp-947241/java-slot-9ec700636","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-a17219118","name":"java-funcapp-947241/java-slot-a17219118","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf30853354/providers/Microsoft.Web/sites/java-funcapp-947241/slots/java-slot-bbf64332e","name":"java-funcapp-947241/java-slot-bbf64332e","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/serverFarms/java-webapp-264634pland4a213930","name":"java-webapp-264634pland4a213930","type":"Microsoft.Web/serverFarms","sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634","name":"java-webapp-264634","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-0b172575f","name":"java-webapp-264634/java-slot-0b172575f","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-6d099874e","name":"java-webapp-264634/java-slot-6d099874e","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgf3802474a/providers/Microsoft.Web/sites/java-webapp-264634/slots/java-slot-b4475990e","name":"java-webapp-264634/java-slot-b4475990e","type":"Microsoft.Web/sites/slots","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfcb942921/providers/Microsoft.Web/serverFarms/java-webapp-70178bplan07213529f","name":"java-webapp-70178bplan07213529f","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrgfcb942921/providers/Microsoft.Web/sites/java-webapp-70178b","name":"java-webapp-70178b","type":"Microsoft.Web/sites","kind":"app","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javasb38702568243/providers/Microsoft.ServiceBus/namespaces/jvsbns20d21229","name":"jvsbns20d21229","type":"Microsoft.ServiceBus/namespaces","sku":{"name":"Premium","tier":"Premium","capacity":1},"kind":"Messaging","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/availabilitySets/myaks-availabilitySet-17958201","name":"myaks-availabilitySet-17958201","type":"Microsoft.Compute/availabilitySets","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-0_OsDisk_1_7c43f26ed76e41189272cbe02e88fcf5","name":"k8s-myaks-17958201-0_OsDisk_1_7c43f26ed76e41189272cbe02e88fcf5","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-0","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-1_OsDisk_1_3be4f3e76c264ec6913ab60407754bb9","name":"k8s-myaks-17958201-1_OsDisk_1_3be4f3e76c264ec6913ab60407754bb9","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-1","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_DEBEKOE1_MYAKS_WESTUS2/providers/Microsoft.Compute/disks/k8s-myaks-17958201-2_OsDisk_1_8f30daefd84e4872b359528b3e95547c","name":"k8s-myaks-17958201-2_OsDisk_1_8f30daefd84e4872b359528b3e95547c","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-2","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0","name":"k8s-myaks-17958201-0","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-0","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-0/extensions/cse0","name":"k8s-myaks-17958201-0/cse0","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1","name":"k8s-myaks-17958201-1","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-1","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-1/extensions/cse1","name":"k8s-myaks-17958201-1/cse1","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2","name":"k8s-myaks-17958201-2","type":"Microsoft.Compute/virtualMachines","location":"westus2","tags":{"creationSource":"acsengine-k8s-myaks-17958201-2","orchestrator":"Kubernetes:1.7.7","poolName":"myaks","resourceNameSuffix":"17958201"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Compute/virtualMachines/k8s-myaks-17958201-2/extensions/cse2","name":"k8s-myaks-17958201-2/cse2","type":"Microsoft.Compute/virtualMachines/extensions","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-0","name":"k8s-myaks-17958201-nic-0","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-1","name":"k8s-myaks-17958201-nic-1","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkInterfaces/k8s-myaks-17958201-nic-2","name":"k8s-myaks-17958201-nic-2","type":"Microsoft.Network/networkInterfaces","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/networkSecurityGroups/k8s-agentpool-17958201-nsg","name":"k8s-agentpool-17958201-nsg","type":"Microsoft.Network/networkSecurityGroups","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/routeTables/k8s-agentpool-17958201-routetable","name":"k8s-agentpool-17958201-routetable","type":"Microsoft.Network/routeTables","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_debekoe1_myaks_westus2/providers/Microsoft.Network/virtualNetworks/k8s-vnet-17958201","name":"k8s-vnet-17958201","type":"Microsoft.Network/virtualNetworks","location":"westus2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw47271group/providers/Microsoft.Network/networkWatchers/nw47271","name":"nw47271","type":"Microsoft.Network/networkWatchers","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nw84097agroup/providers/Microsoft.Network/networkWatchers/nw84097a","name":"nw84097a","type":"Microsoft.Network/networkWatchers","location":"northcentralus","tags":{"tag1":"value1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG76B255433A4189C/providers/Microsoft.Compute/disks/vm3db180547e172c1_OsDisk_1_40ee1b4bd93d4d02b4d98a6e868a29f0","name":"vm3db180547e172c1_OsDisk_1_40ee1b4bd93d4d02b4d98a6e868a29f0","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Compute/virtualMachines/vm3db180547e172c1","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Compute/virtualMachines/vm3db180547e172c1","name":"vm3db180547e172c1","type":"Microsoft.Compute/virtualMachines","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/networkInterfaces/nic2108641a0c0","name":"nic2108641a0c0","type":"Microsoft.Network/networkInterfaces","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/networkSecurityGroups/nsgde239044a061","name":"nsgde239044a061","type":"Microsoft.Network/networkSecurityGroups","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/publicIPAddresses/pip27522193","name":"pip27522193","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg76b255433a4189c/providers/Microsoft.Network/virtualNetworks/vnet3a2428169db3","name":"vnet3a2428169db3","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG84097A/providers/Microsoft.Compute/disks/vme8e194178e_OsDisk_1_7e59f0712ae74f63bfdd5fcd26958c51","name":"vme8e194178e_OsDisk_1_7e59f0712ae74f63bfdd5fcd26958c51","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme8e194178e","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG84097A/providers/Microsoft.Compute/disks/vme9993415e4_OsDisk_1_52b640bb5c1549c6998141c8f1866947","name":"vme9993415e4_OsDisk_1_52b640bb5c1549c6998141c8f1866947","type":"Microsoft.Compute/disks","sku":{"name":"Standard_LRS","tier":"Standard"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme8e194178e","name":"vme8e194178e","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4","name":"vme9993415e4","type":"Microsoft.Compute/virtualMachines","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Compute/virtualMachines/vme9993415e4/extensions/packetCapture","name":"vme9993415e4/packetCapture","type":"Microsoft.Compute/virtualMachines/extensions","location":"northcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkInterfaces/ni84097a","name":"ni84097a","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkInterfaces/nic81215498dcb","name":"nic81215498dcb","type":"Microsoft.Network/networkInterfaces","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/networkSecurityGroups/nsg84097a","name":"nsg84097a","type":"Microsoft.Network/networkSecurityGroups","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/publicIPAddresses/pip0667443e","name":"pip0667443e","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/virtualNetworks/net84097a","name":"net84097a","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Network/virtualNetworks/vnet2547772eef","name":"vnet2547772eef","type":"Microsoft.Network/virtualNetworks","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg84097a/providers/Microsoft.Storage/storageAccounts/sa84097a","name":"sa84097a","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/osdisk_PoB6DEjHaR","name":"osdisk_PoB6DEjHaR","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/disks/sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","name":"sdk-test-m_disk2_16a6a7591aea4e8282f914cece1ff350","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-m","name":"sdk-test-m","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Compute/virtualMachines/sdk-test-um","name":"sdk-test-um","type":"Microsoft.Compute/virtualMachines","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-mVMNic","name":"sdk-test-mVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkInterfaces/sdk-test-umVMNic","name":"sdk-test-umVMNic","type":"Microsoft.Network/networkInterfaces","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-mNSG","name":"sdk-test-mNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/networkSecurityGroups/sdk-test-umNSG","name":"sdk-test-umNSG","type":"Microsoft.Network/networkSecurityGroups","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-mPublicIP","name":"sdk-test-mPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/publicIPAddresses/sdk-test-umPublicIP","name":"sdk-test-umPublicIP","type":"Microsoft.Network/publicIPAddresses","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Network/virtualNetworks/sdk-test-umVNET","name":"sdk-test-umVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test/providers/Microsoft.Storage/storageAccounts/sdkteststor","name":"sdkteststor","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applications/app1","name":"app1","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus","plan":{"name":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","product":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","publisher":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tjp-app/providers/Microsoft.Solutions/applianceDefinitions/appdef1","version":"1.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/WILX-GROUP/providers/Microsoft.Compute/disks/wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","name":"wilx-vm_OsDisk_1_80b5df163e6b4d15af9ee8c1b184cb04","type":"Microsoft.Compute/disks","sku":{"name":"Premium_LRS","tier":"Premium"},"managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Compute/virtualMachines/wilx-vm","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkInterfaces/wilx-vmVMNic","name":"wilx-vmVMNic","type":"Microsoft.Network/networkInterfaces","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/networkSecurityGroups/wilx-vmNSG","name":"wilx-vmNSG","type":"Microsoft.Network/networkSecurityGroups","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/publicIPAddresses/wilx-vmPublicIP","name":"wilx-vmPublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Network/virtualNetworks/wilxvnet","name":"wilxvnet","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Solutions/applications/wilxapp","name":"wilxapp","type":"Microsoft.Solutions/applications","kind":"servicecatalog","location":"westcentralus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Storage/storageAccounts/wilxstorage","name":"wilxstorage","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/serverFarms/wilx-plan","name":"wilx-plan","type":"Microsoft.Web/serverFarms","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/rubyhello","name":"rubyhello","type":"Microsoft.Web/sites","kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilx-group/providers/Microsoft.Web/sites/wilx-webapp","name":"wilx-webapp","type":"Microsoft.Web/sites","kind":"app","location":"eastus"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Compute/virtualMachineScaleSets/yugangw-ss","name":"yugangw-ss","type":"Microsoft.Compute/virtualMachineScaleSets","sku":{"name":"Standard_D1_v2","tier":"Standard","capacity":1},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/loadBalancers/yugangw-ssLB","name":"yugangw-ssLB","type":"Microsoft.Network/loadBalancers","sku":{"name":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/publicIPAddresses/yugangw-ssLBPublicIP","name":"yugangw-ssLBPublicIP","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-ssVNET","name":"yugangw-ssVNET","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{}}]}'}
headers:
cache-control: [no-cache]
- content-length: ['73500']
+ content-length: ['34999']
content-type: [application/json; charset=utf-8]
- date: ['Mon, 16 Oct 2017 19:51:00 GMT']
+ date: ['Wed, 18 Oct 2017 18:22:15 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -1457,26 +1484,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
msrest_azure/0.4.14 resourcemanagementclient/1.2.0rc3 Azure-SDK-For-Python
- AZURECLI/2.0.18+dev]
+ AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_rsrc_scenario000001?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_resource_scenario000001?api-version=2017-05-10
response:
body: {string: ''}
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Mon, 16 Oct 2017 19:51:01 GMT']
+ date: ['Wed, 18 Oct 2017 18:22:17 GMT']
expires: ['-1']
- location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUlNSQzo1RlNDRU5BUklPNllESUNCSFRNV0hCRVI1SVFHRnwyMDM3NUMwMTQ4Mzg2REVELVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10']
+ location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUkVTT1VSQ0U6NUZTQ0VOQVJJT1NJRlVRVkpMVE5TRktOU3w2MjM0ODkzNEZEQkZEM0VDLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 202, message: Accepted}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_subscription_locks.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_subscription_locks.yaml
index bd440471c69..6206eda5803 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_subscription_locks.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_subscription_locks.yaml
@@ -1,15 +1,15 @@
interactions:
- request:
- body: 'b''{"properties": {"level": "CanNotDelete"}, "name": "cli-test-lock000001"}'''
+ body: 'b''{"name": "cli-test-lock000001", "properties": {"level": "CanNotDelete"}}'''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['101']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
@@ -19,22 +19,22 @@ interactions:
cache-control: [no-cache]
content-length: ['284']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:48 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:35 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
@@ -53,12 +53,12 @@ interactions:
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['3794']
+ content-length: ['3322']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:48 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:36 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -70,11 +70,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
@@ -93,12 +93,12 @@ interactions:
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['3794']
+ content-length: ['3322']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:49 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -110,11 +110,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
@@ -124,7 +124,7 @@ interactions:
cache-control: [no-cache]
content-length: ['284']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:49 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -136,11 +136,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
@@ -159,12 +159,12 @@ interactions:
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['3794']
+ content-length: ['3322']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:49 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:38 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -176,11 +176,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
@@ -190,7 +190,7 @@ interactions:
cache-control: [no-cache]
content-length: ['284']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:50 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:37 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -202,11 +202,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
@@ -225,12 +225,12 @@ interactions:
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['3794']
+ content-length: ['3322']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:50 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:38 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -242,11 +242,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
@@ -256,7 +256,7 @@ interactions:
cache-control: [no-cache]
content-length: ['284']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:51 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:39 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -264,17 +264,17 @@ interactions:
vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''b\''{"properties": {"level": "ReadOnly", "notes": "notes000002"}, "name":
- "cli-test-lock000001"}\'''''
+ body: 'b''b\''{"name": "cli-test-lock000001", "properties": {"notes": "notes000002",
+ "level": "ReadOnly"}}\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['130']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
@@ -284,7 +284,7 @@ interactions:
cache-control: [no-cache]
content-length: ['311']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:51 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:39 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -297,11 +297,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
@@ -320,12 +320,12 @@ interactions:
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['3821']
+ content-length: ['3349']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:51 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:40 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -337,11 +337,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
@@ -351,7 +351,7 @@ interactions:
cache-control: [no-cache]
content-length: ['311']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:52 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:40 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -359,17 +359,17 @@ interactions:
vary: ['Accept-Encoding,Accept-Encoding']
status: {code: 200, message: OK}
- request:
- body: 'b''b\''{"properties": {"level": "CanNotDelete", "notes": "notes000002"},
- "name": "cli-test-lock000001"}\'''''
+ body: 'b''b\''{"name": "cli-test-lock000001", "properties": {"notes": "notes000002",
+ "level": "CanNotDelete"}}\'''''
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['134']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
@@ -379,7 +379,7 @@ interactions:
cache-control: [no-cache]
content-length: ['315']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:52 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:40 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -392,11 +392,11 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks?api-version=2016-09-01
@@ -415,12 +415,12 @@ interactions:
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.KeyVault/vaults/cliautomationlab6073/providers/Microsoft.Authorization/locks/DevTestLabs
Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":"Reserved
resource locked by ''cliautomationlab'' lab."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliautomation01/providers/Microsoft.Network/virtualNetworks/Dtlcliautomationlab/providers/Microsoft.Authorization/locks/DevTestLabs
- Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel/providers/Microsoft.Authorization/locks/nodelete","type":"Microsoft.Authorization/locks","name":"nodelete"},{"properties":{"level":"CanNotDelete","notes":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Authorization/locks/nodel","type":"Microsoft.Authorization/locks","name":"nodel"}]}'}
+ Lock","type":"Microsoft.Authorization/locks","name":"DevTestLabs Lock"}]}'}
headers:
cache-control: [no-cache]
- content-length: ['3825']
+ content-length: ['3353']
content-type: [application/json; charset=utf-8]
- date: ['Wed, 04 Oct 2017 18:39:52 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:42 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
@@ -432,12 +432,12 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [account lock delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.6.2 (Windows-10-10.0.14393-SP0) requests/2.18.4 msrest/0.4.14
- msrest_azure/0.4.14 managementlockclient/1.2.0rc2 Azure-SDK-For-Python AZURECLI/2.0.17+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.14
+ msrest_azure/0.4.14 managementlockclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.20]
accept-language: [en-US]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/locks/cli-test-lock000001?api-version=2016-09-01
@@ -446,10 +446,10 @@ interactions:
headers:
cache-control: [no-cache]
content-length: ['0']
- date: ['Wed, 04 Oct 2017 18:39:53 GMT']
+ date: ['Wed, 18 Oct 2017 20:21:41 GMT']
expires: ['-1']
pragma: [no-cache]
strict-transport-security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1199']
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_tag_scenario.yaml b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_tag_scenario.yaml
index bdeea631baf..b9439bbcc5d 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_tag_scenario.yaml
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/recordings/latest/test_tag_scenario.yaml
@@ -4,106 +4,159 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4a8fc5cc-9d6a-11e7-b942-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames?api-version=2017-05-10
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/bar","tagValue":"bar","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key","tagName":"key","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key/tagValues/super=value","tagValue":"super=value","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet","tagName":"tag-vnet","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat","tagName":"cat","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test","tagName":"test","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test/tagValues/val","tagValue":"val","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1","tagName":"tag1","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1/tagValues/value1","tagValue":"value1","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2","tagName":"tag2","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2/tagValues/value2","tagValue":"value2","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3","tagName":"tag3","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3/tagValues/value3","tagValue":"value3","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value1","tagValue":"a-value1","count":{"type":"Total","value":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value2","tagValue":"a-value2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714","tagName":"xplatResourceGroupTag2714","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197","tagName":"xplatResourceGroupTag6197","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910","tagName":"xplatResourceGroupTag8910","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992","tagName":"xplatResourceGroupTag992","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929","tagName":"xplatResourceGroupTag9929","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235","tagName":"xplatResourceTag5235","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313","tagName":"xplatResourceTag5313","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604","tagName":"xplatResourceTag604","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015","tagName":"xplatResourceTag8015","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954","tagName":"xplatResourceTag8954","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032","tagName":"xplatResourceTag9032","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032/tagValues/ygtag-value","tagValue":"ygtag-value","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":40},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":40}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner","tagName":"owner","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner/tagValues/Travis","tagValue":"Travis","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag3602","tagName":"xplatResourceGroupTag3602","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7142","tagName":"xplatResourceGroupTag7142","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7429","tagName":"xplatResourceGroupTag7429","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7670","tagName":"xplatResourceGroupTag7670","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9838","tagName":"xplatResourceGroupTag9838","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag1210","tagName":"xplatResourceTag1210","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag3833","tagName":"xplatResourceTag3833","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag7831","tagName":"xplatResourceTag7831","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8311","tagName":"xplatResourceTag8311","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8732","tagName":"xplatResourceTag8732","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag875","tagName":"xplatResourceTag875","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9329","tagName":"xplatResourceTag9329","count":{"type":"Total","value":0},"values":[]}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/trdai@microsoft.com","tagValue":"trdai@microsoft.com","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":3}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType","tagName":"applicationType","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType/tagValues/web","tagValue":"web","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source","tagName":"Source","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source/tagValues/AzureV1","tagValue":"AzureV1","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team","tagName":"Team","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team/tagValues/Azure
+ CLI","tagValue":"Azure CLI","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose","tagName":"Purpose","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose/tagValues/Automation","tagValue":"Automation","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":12},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":12}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/b","tagValue":"b","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c","tagName":"c","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]}]}'}
headers:
- Cache-Control: [no-cache]
+ cache-control: [no-cache]
+ content-length: ['4150']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:10 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Length: ['0']
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
+ accept-language: [en-US]
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag?api-version=2017-05-10
+ response:
+ body: {string: ''}
+ headers:
+ cache-control: [no-cache]
+ date: ['Thu, 20 Jul 2017 23:57:11 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ status: {code: 204, message: No Content}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:29 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['9602']
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
+ accept-language: [en-US]
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames?api-version=2017-05-10
+ response:
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/trdai@microsoft.com","tagValue":"trdai@microsoft.com","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":3}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType","tagName":"applicationType","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType/tagValues/web","tagValue":"web","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source","tagName":"Source","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source/tagValues/AzureV1","tagValue":"AzureV1","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team","tagName":"Team","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team/tagValues/Azure
+ CLI","tagValue":"Azure CLI","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose","tagName":"Purpose","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose/tagValues/Automation","tagValue":"Automation","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":12},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":12}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/b","tagValue":"b","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c","tagName":"c","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]}]}'}
+ headers:
+ cache-control: [no-cache]
+ content-length: ['4150']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:12 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4ab85230-9d6a-11e7-96b5-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag","tagName":"travistesttag","count":{"type":"Total","value":0},"values":[]}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag","tagName":"cli_test_tag","count":{"type":"Total","value":0},"values":[]}'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['156']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:31 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1197']
+ cache-control: [no-cache]
+ content-length: ['154']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:12 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4b5926ca-9d6a-11e7-a709-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test","tagValue":"test","count":{"type":"Total","value":0}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test","tagValue":"test","count":{"type":"Total","value":0}}'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['151']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ cache-control: [no-cache]
+ content-length: ['150']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:14 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1195']
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4c18bc34-9d6a-11e7-b6c0-a0b3ccf7272a]
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test2?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test2?api-version=2017-05-10
response:
- body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test2","tagValue":"test2","count":{"type":"Total","value":0}}'}
+ body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test2","tagValue":"test2","count":{"type":"Total","value":0}}'}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['153']
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:32 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
+ cache-control: [no-cache]
+ content-length: ['152']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:15 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 201, message: Created}
- request:
@@ -111,155 +164,158 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4c8ca934-9d6a-11e7-85ad-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames?api-version=2017-05-10
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/bar","tagValue":"bar","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key","tagName":"key","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key/tagValues/super=value","tagValue":"super=value","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet","tagName":"tag-vnet","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat","tagName":"cat","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test","tagName":"test","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test/tagValues/val","tagValue":"val","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1","tagName":"tag1","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1/tagValues/value1","tagValue":"value1","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2","tagName":"tag2","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2/tagValues/value2","tagValue":"value2","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3","tagName":"tag3","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3/tagValues/value3","tagValue":"value3","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value1","tagValue":"a-value1","count":{"type":"Total","value":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value2","tagValue":"a-value2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag","tagName":"travistesttag","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test","tagValue":"test","count":{"type":"Total","value":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test2","tagValue":"test2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714","tagName":"xplatResourceGroupTag2714","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197","tagName":"xplatResourceGroupTag6197","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910","tagName":"xplatResourceGroupTag8910","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992","tagName":"xplatResourceGroupTag992","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929","tagName":"xplatResourceGroupTag9929","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235","tagName":"xplatResourceTag5235","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313","tagName":"xplatResourceTag5313","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604","tagName":"xplatResourceTag604","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015","tagName":"xplatResourceTag8015","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954","tagName":"xplatResourceTag8954","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032","tagName":"xplatResourceTag9032","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032/tagValues/ygtag-value","tagValue":"ygtag-value","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":40},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":40}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner","tagName":"owner","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner/tagValues/Travis","tagValue":"Travis","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag3602","tagName":"xplatResourceGroupTag3602","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7142","tagName":"xplatResourceGroupTag7142","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7429","tagName":"xplatResourceGroupTag7429","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7670","tagName":"xplatResourceGroupTag7670","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9838","tagName":"xplatResourceGroupTag9838","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag1210","tagName":"xplatResourceTag1210","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag3833","tagName":"xplatResourceTag3833","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag7831","tagName":"xplatResourceTag7831","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8311","tagName":"xplatResourceTag8311","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8732","tagName":"xplatResourceTag8732","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag875","tagName":"xplatResourceTag875","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9329","tagName":"xplatResourceTag9329","count":{"type":"Total","value":0},"values":[]}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/trdai@microsoft.com","tagValue":"trdai@microsoft.com","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":3}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType","tagName":"applicationType","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType/tagValues/web","tagValue":"web","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source","tagName":"Source","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source/tagValues/AzureV1","tagValue":"AzureV1","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag","tagName":"cli_test_tag","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test","tagValue":"test","count":{"type":"Total","value":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test2","tagValue":"test2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team","tagName":"Team","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team/tagValues/Azure
+ CLI","tagValue":"Azure CLI","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose","tagName":"Purpose","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose/tagValues/Automation","tagValue":"Automation","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":12},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":12}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/b","tagValue":"b","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c","tagName":"c","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]}]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:33 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['10064']
+ cache-control: [no-cache]
+ content-length: ['4608']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4cc10a8a-9d6a-11e7-bfcc-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test?api-version=2017-05-10
response:
body: {string: ''}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 18:42:34 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1198']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 20 Jul 2017 23:57:16 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1196']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4d72f0ec-9d6a-11e7-b042-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames?api-version=2017-05-10
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/bar","tagValue":"bar","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key","tagName":"key","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key/tagValues/super=value","tagValue":"super=value","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet","tagName":"tag-vnet","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat","tagName":"cat","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test","tagName":"test","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test/tagValues/val","tagValue":"val","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1","tagName":"tag1","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1/tagValues/value1","tagValue":"value1","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2","tagName":"tag2","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2/tagValues/value2","tagValue":"value2","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3","tagName":"tag3","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3/tagValues/value3","tagValue":"value3","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value1","tagValue":"a-value1","count":{"type":"Total","value":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value2","tagValue":"a-value2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag","tagName":"travistesttag","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test2","tagValue":"test2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714","tagName":"xplatResourceGroupTag2714","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197","tagName":"xplatResourceGroupTag6197","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910","tagName":"xplatResourceGroupTag8910","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992","tagName":"xplatResourceGroupTag992","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929","tagName":"xplatResourceGroupTag9929","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235","tagName":"xplatResourceTag5235","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313","tagName":"xplatResourceTag5313","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604","tagName":"xplatResourceTag604","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015","tagName":"xplatResourceTag8015","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954","tagName":"xplatResourceTag8954","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032","tagName":"xplatResourceTag9032","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032/tagValues/ygtag-value","tagValue":"ygtag-value","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":40},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":40}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner","tagName":"owner","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner/tagValues/Travis","tagValue":"Travis","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag3602","tagName":"xplatResourceGroupTag3602","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7142","tagName":"xplatResourceGroupTag7142","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7429","tagName":"xplatResourceGroupTag7429","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7670","tagName":"xplatResourceGroupTag7670","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9838","tagName":"xplatResourceGroupTag9838","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag1210","tagName":"xplatResourceTag1210","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag3833","tagName":"xplatResourceTag3833","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag7831","tagName":"xplatResourceTag7831","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8311","tagName":"xplatResourceTag8311","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8732","tagName":"xplatResourceTag8732","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag875","tagName":"xplatResourceTag875","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9329","tagName":"xplatResourceTag9329","count":{"type":"Total","value":0},"values":[]}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/trdai@microsoft.com","tagValue":"trdai@microsoft.com","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":3}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType","tagName":"applicationType","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType/tagValues/web","tagValue":"web","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source","tagName":"Source","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source/tagValues/AzureV1","tagValue":"AzureV1","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag","tagName":"cli_test_tag","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test2","tagValue":"test2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team","tagName":"Team","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team/tagValues/Azure
+ CLI","tagValue":"Azure CLI","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose","tagName":"Purpose","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose/tagValues/Automation","tagValue":"Automation","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":12},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":12}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/b","tagValue":"b","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c","tagName":"c","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]}]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:34 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['9912']
+ cache-control: [no-cache]
+ content-length: ['4457']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4dac5a6c-9d6a-11e7-ad33-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag/tagValues/test2?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag/tagValues/test2?api-version=2017-05-10
response:
body: {string: ''}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 18:42:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- x-ms-ratelimit-remaining-subscription-writes: ['1196']
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 20 Jul 2017 23:57:17 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-ms-ratelimit-remaining-subscription-writes: ['1198']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4e2f86a4-9d6a-11e7-aebc-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames?api-version=2017-05-10
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/bar","tagValue":"bar","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key","tagName":"key","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key/tagValues/super=value","tagValue":"super=value","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet","tagName":"tag-vnet","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat","tagName":"cat","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test","tagName":"test","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test/tagValues/val","tagValue":"val","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1","tagName":"tag1","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1/tagValues/value1","tagValue":"value1","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2","tagName":"tag2","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2/tagValues/value2","tagValue":"value2","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3","tagName":"tag3","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3/tagValues/value3","tagValue":"value3","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value1","tagValue":"a-value1","count":{"type":"Total","value":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value2","tagValue":"a-value2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714","tagName":"xplatResourceGroupTag2714","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197","tagName":"xplatResourceGroupTag6197","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910","tagName":"xplatResourceGroupTag8910","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992","tagName":"xplatResourceGroupTag992","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929","tagName":"xplatResourceGroupTag9929","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235","tagName":"xplatResourceTag5235","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313","tagName":"xplatResourceTag5313","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604","tagName":"xplatResourceTag604","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015","tagName":"xplatResourceTag8015","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954","tagName":"xplatResourceTag8954","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032","tagName":"xplatResourceTag9032","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032/tagValues/ygtag-value","tagValue":"ygtag-value","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":40},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":40}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner","tagName":"owner","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner/tagValues/Travis","tagValue":"Travis","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag","tagName":"travistesttag","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag3602","tagName":"xplatResourceGroupTag3602","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7142","tagName":"xplatResourceGroupTag7142","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7429","tagName":"xplatResourceGroupTag7429","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7670","tagName":"xplatResourceGroupTag7670","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9838","tagName":"xplatResourceGroupTag9838","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag1210","tagName":"xplatResourceTag1210","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag3833","tagName":"xplatResourceTag3833","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag7831","tagName":"xplatResourceTag7831","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8311","tagName":"xplatResourceTag8311","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8732","tagName":"xplatResourceTag8732","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag875","tagName":"xplatResourceTag875","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9329","tagName":"xplatResourceTag9329","count":{"type":"Total","value":0},"values":[]}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/trdai@microsoft.com","tagValue":"trdai@microsoft.com","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":3}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType","tagName":"applicationType","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType/tagValues/web","tagValue":"web","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source","tagName":"Source","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source/tagValues/AzureV1","tagValue":"AzureV1","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team","tagName":"Team","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team/tagValues/Azure
+ CLI","tagValue":"Azure CLI","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose","tagName":"Purpose","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose/tagValues/Automation","tagValue":"Automation","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":12},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":12}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/b","tagValue":"b","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c","tagName":"c","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag","tagName":"cli_test_tag","count":{"type":"Total","value":0},"values":[]}]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:35 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['9759']
+ cache-control: [no-cache]
+ content-length: ['4305']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:18 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4e5d7c66-9d6a-11e7-a325-a0b3ccf7272a]
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/travistesttag?api-version=2017-05-10
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cli_test_tag?api-version=2017-05-10
response:
body: {string: ''}
headers:
- Cache-Control: [no-cache]
- Content-Length: ['0']
- Date: ['Tue, 19 Sep 2017 18:42:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
+ cache-control: [no-cache]
+ content-length: ['0']
+ date: ['Thu, 20 Jul 2017 23:57:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
x-ms-ratelimit-remaining-subscription-writes: ['1197']
status: {code: 200, message: OK}
- request:
@@ -267,25 +323,26 @@ interactions:
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.14
- msrest_azure/0.4.14 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
- AZURECLI/TEST/2.0.16+dev]
+ User-Agent: [python/3.5.1 (Windows-10-10.0.15063-SP0) requests/2.9.1 msrest/0.4.11
+ msrest_azure/0.4.11 resourcemanagementclient/1.1.0 Azure-SDK-For-Python
+ AZURECLI/2.0.11+dev]
accept-language: [en-US]
- x-ms-client-request-id: [4edab19c-9d6a-11e7-8e5a-a0b3ccf7272a]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/tagNames?api-version=2017-05-10
response:
- body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/bar","tagValue":"bar","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key","tagName":"key","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/key/tagValues/super=value","tagValue":"super=value","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet","tagName":"tag-vnet","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag-vnet/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat","tagName":"cat","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/cat/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test","tagName":"test","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/test/tagValues/val","tagValue":"val","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1","tagName":"tag1","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag1/tagValues/value1","tagValue":"value1","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2","tagName":"tag2","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag2/tagValues/value2","tagValue":"value2","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3","tagName":"tag3","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/tag3/tagValues/value3","tagValue":"value3","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value1","tagValue":"a-value1","count":{"type":"Total","value":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/a-value2","tagValue":"a-value2","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714","tagName":"xplatResourceGroupTag2714","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag2714/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197","tagName":"xplatResourceGroupTag6197","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag6197/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910","tagName":"xplatResourceGroupTag8910","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag8910/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992","tagName":"xplatResourceGroupTag992","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag992/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929","tagName":"xplatResourceGroupTag9929","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9929/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235","tagName":"xplatResourceTag5235","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5235/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313","tagName":"xplatResourceTag5313","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag5313/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604","tagName":"xplatResourceTag604","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag604/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015","tagName":"xplatResourceTag8015","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8015/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954","tagName":"xplatResourceTag8954","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8954/tagValues/fooValue","tagValue":"fooValue","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032","tagName":"xplatResourceTag9032","count":{"type":"Total","value":0},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9032/tagValues/ygtag-value","tagValue":"ygtag-value","count":{"type":"Total","value":0}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":40},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":40}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner","tagName":"owner","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/owner/tagValues/Travis","tagValue":"Travis","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag3602","tagName":"xplatResourceGroupTag3602","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7142","tagName":"xplatResourceGroupTag7142","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7429","tagName":"xplatResourceGroupTag7429","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag7670","tagName":"xplatResourceGroupTag7670","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceGroupTag9838","tagName":"xplatResourceGroupTag9838","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag1210","tagName":"xplatResourceTag1210","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag3833","tagName":"xplatResourceTag3833","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag7831","tagName":"xplatResourceTag7831","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8311","tagName":"xplatResourceTag8311","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag8732","tagName":"xplatResourceTag8732","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag875","tagName":"xplatResourceTag875","count":{"type":"Total","value":0},"values":[]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/xplatResourceTag9329","tagName":"xplatResourceTag9329","count":{"type":"Total","value":0},"values":[]}]}'}
+ body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy","tagName":"CreatedBy","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/DevTestLabs","tagValue":"DevTestLabs","count":{"type":"Total","value":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/CreatedBy/tagValues/trdai@microsoft.com","tagValue":"trdai@microsoft.com","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo","tagName":"foo","count":{"type":"Total","value":3},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/foo/tagValues/doo","tagValue":"doo","count":{"type":"Total","value":3}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType","tagName":"applicationType","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/applicationType/tagValues/web","tagValue":"web","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/azuregithuborg/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source","tagName":"Source","count":{"type":"Total","value":2},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Source/tagValues/AzureV1","tagValue":"AzureV1","count":{"type":"Total","value":2}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","tagName":"Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Link:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-westus/providers/microsoft.web/sites/hyrestapitest/tagValues/Resource","tagValue":"Resource","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team","tagName":"Team","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Team/tagValues/Azure
+ CLI","tagValue":"Azure CLI","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose","tagName":"Purpose","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/Purpose/tagValues/Automation","tagValue":"Automation","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use","tagName":"use","count":{"type":"Total","value":12},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/use/tagValues/az-test","tagValue":"az-test","count":{"type":"Total","value":12}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a","tagName":"a","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/a/tagValues/b","tagValue":"b","count":{"type":"Total","value":1}}]},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c","tagName":"c","count":{"type":"Total","value":1},"values":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/tagNames/c/tagValues/","tagValue":"","count":{"type":"Total","value":1}}]}]}'}
headers:
- Cache-Control: [no-cache]
- Content-Type: [application/json; charset=utf-8]
- Date: ['Tue, 19 Sep 2017 18:42:36 GMT']
- Expires: ['-1']
- Pragma: [no-cache]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- Vary: [Accept-Encoding]
- content-length: ['9602']
+ cache-control: [no-cache]
+ content-length: ['4150']
+ content-type: [application/json; charset=utf-8]
+ date: ['Thu, 20 Jul 2017 23:57:20 GMT']
+ expires: ['-1']
+ pragma: [no-cache]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ vary: [Accept-Encoding]
status: {code: 200, message: OK}
version: 1
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/sample_policy_set.json b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/sample_policy_set.json
index 7f2972b5f0c..a4ca9121bee 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/sample_policy_set.json
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/sample_policy_set.json
@@ -1 +1 @@
-[{"policyDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002", "parameters": {"allowedLocations": {"value": ["australiaeast", "eastus", "japaneast", "westus"]}}}]
\ No newline at end of file
+[{"parameters": {"allowedLocations": {"value": ["australiaeast", "eastus", "japaneast", "westus"]}}, "policyDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/azure-cli-test-policy000002"}]
\ No newline at end of file
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_api_check.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_api_check.py
index 6cec063be6b..2268356bf4e 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_api_check.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_api_check.py
@@ -10,7 +10,7 @@
except ImportError:
from mock import MagicMock
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.resource.custom import (_ResourceUtils, _validate_resource_inputs,
parse_resource_id)
@@ -51,15 +51,19 @@ def test_validate_resource_inputs(self):
def test_resolve_api_provider_backup(self):
# Verifies provider is used as backup if api-version not specified.
+ from azure.cli.testsdk import TestCli
+ cli = TestCli()
rcf = self._get_mock_client()
- res_utils = _ResourceUtils(resource_type='Mock/test', resource_name='vnet1',
+ res_utils = _ResourceUtils(cli, resource_type='Mock/test', resource_name='vnet1',
resource_group_name='rg', rcf=rcf)
self.assertEqual(res_utils.api_version, "2016-01-01")
def test_resolve_api_provider_with_parent_backup(self):
# Verifies provider (with parent) is used as backup if api-version not specified.
+ from azure.cli.testsdk import TestCli
+ cli = TestCli()
rcf = self._get_mock_client()
- res_utils = _ResourceUtils(parent_resource_path='foo/testfoo123', resource_group_name='rg',
+ res_utils = _ResourceUtils(cli, parent_resource_path='foo/testfoo123', resource_group_name='rg',
resource_provider_namespace='Mock', resource_type='test',
resource_name='vnet1',
rcf=rcf)
@@ -67,8 +71,10 @@ def test_resolve_api_provider_with_parent_backup(self):
def test_resolve_api_all_previews(self):
# Verifies most recent preview version returned only if there are no non-preview versions.
+ from azure.cli.testsdk import TestCli
+ cli = TestCli()
rcf = self._get_mock_client()
- res_utils = _ResourceUtils(resource_type='Mock/preview', resource_name='vnet1',
+ res_utils = _ResourceUtils(cli, resource_type='Mock/preview', resource_name='vnet1',
resource_group_name='rg', rcf=rcf)
self.assertEqual(res_utils.api_version, "2005-01-01-preview")
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_custom.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_custom.py
index 6d0dfe6f6ba..d40c7df7907 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_custom.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_custom.py
@@ -22,11 +22,11 @@
def _simulate_no_tty():
- from azure.cli.core.prompting import NoTTYException
+ from knack.prompting import NoTTYException
raise NoTTYException
-@mock.patch('azure.cli.core.prompting._verify_is_a_tty', _simulate_no_tty)
+@mock.patch('knack.prompting.verify_is_a_tty', _simulate_no_tty)
class TestCustom(unittest.TestCase):
def test_file_string_or_uri(self):
data = '{ "some": "data here"}'
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_locks.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_locks.py
index 701f6080189..eab1f1e2252 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_locks.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_locks.py
@@ -15,7 +15,7 @@ def test_list_locks(self):
self.cmd('az lock list').get_output_in_json()
@record_only()
- def test_subscription_locks(self):
+ def test_generic_subscription_locks(self):
for lock_type in ['ReadOnly', 'CanNotDelete']:
lock_name = self.create_random_name('cli-test-lock', 48)
lock = self.cmd('az lock create -n {} --lock-type {}'.format(lock_name, lock_type)).get_output_in_json()
@@ -64,28 +64,35 @@ def test_cannotdelete_resource_lock(self, resource_group):
self._lock_operation_with_resource('CanNotDelete', resource_group)
def _lock_operation_with_resource_group(self, lock_type, resource_group):
- lock_name = self.create_random_name('cli-test-lock', 48)
- self.cmd('az lock create -n {} -g {} --lock-type {}'.format(lock_name, resource_group, lock_type))
+ self.kwargs = {
+ 'rg': resource_group,
+ 'type': lock_type,
+ 'lock': self.create_random_name('cli-test-lock', 48)
+ }
+
+ self.cmd('az lock create -n {lock} -g {rg} --lock-type {type}')
self._sleep_for_lock_operation()
- self.cmd('az lock show -g {} -n {}'.format(resource_group, lock_name)).assert_with_checks([
- JMESPathCheck('name', lock_name),
- JMESPathCheck('level', lock_type)])
+ self.cmd('az lock show -g {rg} -n {lock}', checks=[
+ self.check('name', '{lock}'),
+ self.check('level', '{type}')
+ ])
- locks_list = self.cmd("az lock list -g {} --query '[].name' -ojson".format(resource_group)).get_output_in_json()
+ locks_list = self.cmd("az lock list -g {rg} --query '[].name'").get_output_in_json()
self.assertTrue(locks_list)
- self.assertIn(lock_name, locks_list)
-
- notes = self.create_random_name('notes', 20)
- new_lvl = 'ReadOnly' if lock_type == 'CanNotDelete' else 'CanNotDelete'
- lock = self.cmd('az lock update -n {} -g {} --notes {} --lock-type {}'
- .format(lock_name, resource_group, notes, new_lvl)).get_output_in_json()
-
- self.assertEqual(lock.get('notes', None), notes)
- self.assertEqual(lock.get('level', None), new_lvl)
-
- self.cmd('az lock delete -g {} -n {}'.format(resource_group, lock_name))
+ self.assertIn(self.kwargs['lock'], locks_list)
+
+ self.kwargs.update({
+ 'notes': self.create_random_name('notes', 20),
+ 'new_lvl': 'ReadOnly' if lock_type == 'CanNotDelete' else 'CanNotDelete'
+ })
+ self.cmd('az lock update -n {lock} -g {rg} --notes {notes} --lock-type {new_lvl}', checks=[
+ self.check('notes', '{notes}'),
+ self.check('level', '{new_lvl}')
+ ]).get_output_in_json()
+
+ self.cmd('az lock delete -g {rg} -n {lock}')
self._sleep_for_lock_operation()
def _lock_operation_with_resource(self, lock_type, resource_group):
@@ -121,28 +128,31 @@ def _lock_operation_with_resource(self, lock_type, resource_group):
@ResourceGroupPreparer(name_prefix='cli_test_group_lock')
def test_group_lock_commands(self, resource_group):
- lock_name = self.create_random_name('cli-test-lock', 48)
- self.cmd('group lock create -n {} -g {} --lock-type CanNotDelete'.format(lock_name, resource_group))
+ self.kwargs = {
+ 'rg': resource_group,
+ 'lock': self.create_random_name('cli-test-lock', 48),
+ 'notes': self.create_random_name('notes', 20)
+ }
+
+ self.cmd('group lock create -n {lock} -g {rg} --lock-type CanNotDelete')
self._sleep_for_lock_operation()
- self.cmd('group lock show -g {} -n {}'.format(resource_group, lock_name)).assert_with_checks([
- JMESPathCheck('name', lock_name),
- JMESPathCheck('level', 'CanNotDelete')]).get_output_in_json()
+ self.cmd('group lock show -g {rg} -n {lock}', checks=[
+ self.check('name', '{lock}'),
+ self.check('level', 'CanNotDelete')
+ ])
- locks_list = self.cmd("group lock list -g {} --query [].name -ojson"
- .format(resource_group)).get_output_in_json()
+ locks_list = self.cmd("group lock list -g {rg} --query [].name").get_output_in_json()
self.assertTrue(locks_list)
- self.assertIn(lock_name, locks_list)
+ self.assertIn(self.kwargs['lock'], locks_list)
- notes = self.create_random_name('notes', 20)
- lock = self.cmd('group lock update -n {} -g {} --notes {} --lock-type ReadOnly'
- .format(lock_name, resource_group, notes)).get_output_in_json()
-
- self.assertEqual(lock.get('notes', None), notes)
- self.assertEqual(lock.get('level', None), 'ReadOnly')
+ self.cmd('group lock update -n {lock} -g {rg} --notes {notes} --lock-type ReadOnly', checks=[
+ self.check('notes', '{notes}'),
+ self.check('level', 'ReadOnly')
+ ])
- self.cmd('group lock delete -g {} -n {}'.format(resource_group, lock_name))
+ self.cmd('group lock delete -g {rg} -n {lock}')
self._sleep_for_lock_operation()
@ResourceGroupPreparer(name_prefix='cli_test_resource_lock')
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_resource.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_resource.py
index 8bdf46e2bc1..2facfbc83fb 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_resource.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_resource.py
@@ -8,336 +8,285 @@
import time
import unittest
-from azure.cli.testsdk import (ScenarioTest, LiveScenarioTest, ResourceGroupPreparer,
- JMESPathCheck as JCheck, create_random_name)
+from azure.cli.testsdk import ScenarioTest, LiveScenarioTest, ResourceGroupPreparer, create_random_name
from azure.cli.core.util import get_file_json
-# AZURE CLI RESOURCE TEST DEFINITIONS
-from azure.cli.testsdk.vcr_test_base import (VCRTestBase, JMESPathCheck, NoneCheck,
- BooleanCheck,
- ResourceGroupVCRTestBase,
- MOCKED_SUBSCRIPTION_ID)
class ResourceGroupScenarioTest(ScenarioTest):
+
@ResourceGroupPreparer(name_prefix='cli_test_rg_scenario')
def test_resource_group(self, resource_group):
- s = self
- rg = resource_group
- s.cmd('group delete -n {} --yes'.format(rg))
- s.cmd('group exists -n {}'.format(rg), checks=NoneCheck())
- s.cmd('group create -n {} -l westus --tag a=b c'.format(rg), checks=[
- JCheck('name', rg),
- JCheck('tags', {'a': 'b', 'c': ''})
+ self.cmd('group delete -n {rg} --yes')
+ self.cmd('group exists -n {rg}',
+ checks=self.is_empty())
+
+ self.cmd('group create -n {rg} -l westus --tag a=b c', checks=[
+ self.check('name', '{rg}'),
+ self.check('tags', {'a': 'b', 'c': ''})
])
- s.cmd('group exists -n {}'.format(rg), checks=BooleanCheck(True))
- s.cmd('group show -n {}'.format(rg), checks=[
- JCheck('name', rg),
- JCheck('tags', {'a': 'b', 'c': ''})
+ self.cmd('group exists -n {rg}',
+ checks=self.check('@', 'True'))
+ self.cmd('group show -n {rg}', checks=[
+ self.check('name', '{rg}'),
+ self.check('tags', {'a': 'b', 'c': ''})
])
- s.cmd('group list --tag a=b', checks=[
- JCheck('[0].name', rg),
- JCheck('[0].tags', {'a': 'b', 'c': ''})
+ self.cmd('group list --tag a=b', checks=[
+ self.check('[0].name', '{rg}'),
+ self.check('[0].tags', {'a': 'b', 'c': ''})
])
-class ResourceGroupNoWaitScenarioTest(VCRTestBase):
- def test_resource_group_no_wait(self):
- self.execute()
+class ResourceGroupNoWaitScenarioTest(ScenarioTest):
- def __init__(self, test_method):
- self.resource_group = 'cli_rg_nowait_test'
- super(ResourceGroupNoWaitScenarioTest, self).__init__(__file__, test_method)
+ @ResourceGroupPreparer(name_prefix='cli_rg_nowait_test')
+ def test_resource_group_no_wait(self, resource_group):
- def set_up(self):
- if self.cmd('group exists -n {}'.format(self.resource_group)):
- self.cmd('group delete -n {} --yes'.format(self.resource_group))
-
- def body(self):
- s = self
- rg = self.resource_group
- s.cmd('group create -n {} -l westus'.format(rg), checks=[
- JMESPathCheck('name', rg),
- ])
- s.cmd('group exists -n {}'.format(rg), checks=BooleanCheck(True))
- s.cmd('group wait --exists -n {}'.format(rg), checks=NoneCheck())
- s.cmd('group delete -n {} --no-wait --yes'.format(rg), checks=NoneCheck())
- s.cmd('group wait --deleted -n {}'.format(rg), checks=NoneCheck())
- s.cmd('group exists -n {}'.format(rg), checks=NoneCheck())
+ self.cmd('group delete -n {rg} --no-wait --yes',
+ checks=self.is_empty())
+ self.cmd('group wait --deleted -n {rg}',
+ checks=self.is_empty())
+ self.cmd('group exists -n {rg}',
+ checks=self.is_empty())
+ self.cmd('group create -n {rg} -l westus',
+ checks=self.check('name', '{rg}'))
+ self.cmd('group exists -n {rg}',
+ checks=self.check('@', 'True'))
+ self.cmd('group wait --exists -n {rg}',
+ checks=self.is_empty())
class ResourceScenarioTest(ScenarioTest):
- @ResourceGroupPreparer(name_prefix='cli_test_rsrc_scenario', location='southcentralus')
- def test_resource_scenario(self, resource_group):
- vnet_name = self.create_random_name('cli-test-vnet', 30)
- subnet_name = self.create_random_name('cli-test-subnet', 30)
- vnet_type = 'Microsoft.Network/virtualNetworks'
-
- self.cmd('network vnet create -g {} -n {} --subnet-name {} --tags cli-test=test'.format(
- resource_group, vnet_name, subnet_name))
-
- self.cmd('resource list', checks=JCheck("length([?name=='{}'])".format(vnet_name), 1))
- self.cmd('resource list -l southcentralus',
- checks=JCheck("length([?location == 'southcentralus']) == length(@)", True))
- self.cmd('resource list --resource-type {}'.format(vnet_type),
- checks=JCheck("length([?name=='{}'])".format(vnet_name), 1))
- self.cmd('resource list --name {}'.format(vnet_name),
- checks=JCheck("length([?name=='{}'])".format(vnet_name), 1))
- self.cmd('resource list --tag cli-test', checks=JCheck("length([?name=='{}'])".format(vnet_name), 1))
- self.cmd('resource list --tag cli-test=test', checks=JCheck("length([?name=='{}'])".format(vnet_name), 1))
- # check for simple resource with tag
- self.cmd('resource show -n {} -g {} --resource-type {}'.format(vnet_name, resource_group, vnet_type), checks=[
- JCheck('name', vnet_name),
- JCheck('location', 'southcentralus'),
- JCheck('resourceGroup', resource_group),
- JCheck('tags', {'cli-test': 'test'})])
+ @ResourceGroupPreparer(name_prefix='cli_test_resource_scenario', location='southcentralus')
+ def test_resource_scenario(self, resource_group, resource_group_location):
+
+ self.kwargs.update({
+ 'loc': resource_group_location,
+ 'vnet': self.create_random_name('vnet-', 30),
+ 'subnet': self.create_random_name('subnet-', 30),
+ 'rt': 'Microsoft.Network/virtualNetworks'
+ })
+ vnet_count = self.cmd("resource list --query \"length([?name=='{vnet}'])\"").get_output_in_json() or 0
+ self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name {subnet} --tags cli-test=test')
+ vnet_count += 1
+
+ self.cmd('resource list',
+ checks=self.check("length([?name=='{vnet}'])", vnet_count))
+ self.cmd('resource list -l {loc}',
+ checks=self.check("length([?location == '{loc}']) == length(@)", True))
+ self.cmd('resource list --resource-type {rt}',
+ checks=self.check("length([?name=='{vnet}'])", vnet_count))
+ self.cmd('resource list --name {vnet}',
+ checks=self.check("length([?name=='{vnet}'])", vnet_count))
+ self.cmd('resource list --tag cli-test',
+ checks=self.check("length([?name=='{vnet}'])", vnet_count))
+ self.cmd('resource list --tag cli-test=test',
+ checks=self.check("length([?name=='{vnet}'])", vnet_count))
+ # check for simple resource with tag
+ self.cmd('resource show -n {vnet} -g {rg} --resource-type Microsoft.Network/virtualNetworks', checks=[
+ self.check('name', '{vnet}'),
+ self.check('location', '{loc}'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('tags', {'cli-test': 'test'})
+ ])
# check for child resource
- self.cmd(
- 'resource show -n {} -g {} --namespace Microsoft.Network --parent virtualNetworks/{}'
- ' --resource-type subnets'.format(subnet_name, resource_group, vnet_name), checks=[
- JCheck('name', subnet_name),
- JCheck('resourceGroup', resource_group)])
+ self.cmd('resource show -n {subnet} -g {rg} --namespace Microsoft.Network --parent virtualNetworks/{vnet} --resource-type subnets', checks=[
+ self.check('name', '{subnet}'),
+ self.check('resourceGroup', '{rg}')
+ ])
# clear tag and verify
- self.cmd('resource tag -n {} -g {} --resource-type {} --tags'.format(vnet_name, resource_group, vnet_type))
- self.cmd('resource show -n {} -g {} --resource-type {}'
- .format(vnet_name, resource_group, vnet_type), checks=JCheck('tags', {}))
-
- # delete resource and verify
- self.cmd('resource delete -n {} -g {} --resource-type {}'.format(vnet_name, resource_group, vnet_type))
- self.cmd('resource list', checks=JCheck("length([?name=='{}'])".format(vnet_name), 0))
-
-
-class ResourceIDScenarioTest(ResourceGroupVCRTestBase):
- def test_resource_id_scenario(self):
- self.execute()
-
- def __init__(self, test_method):
- super(ResourceIDScenarioTest, self).__init__(__file__, test_method,
- resource_group='cli_test_resource_id')
- self.vnet_name = 'cli_test_resource_id_vnet'
- self.subnet_name = 'cli_test_resource_id_subnet'
-
- def set_up(self):
- super(ResourceIDScenarioTest, self).set_up()
- self.cmd('network vnet create -g {} -n {} --subnet-name {}'.format(self.resource_group,
- self.vnet_name,
- self.subnet_name))
-
- def body(self):
- if self.playback:
- subscription_id = MOCKED_SUBSCRIPTION_ID
- else:
- subscription_id = self.cmd('account list --query "[?isDefault].id" -o tsv')
+ self.cmd('resource tag -n {vnet} -g {rg} --resource-type Microsoft.Network/virtualNetworks --tags')
+ self.cmd('resource show -n {vnet} -g {rg} --resource-type Microsoft.Network/virtualNetworks',
+ checks=self.check('tags', {}))
- s = self
- vnet_resource_id = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/' \
- 'virtualNetworks/{}'.format(subscription_id,
- self.resource_group,
- self.vnet_name)
- s.cmd('resource tag --id {} --tags {}'.format(vnet_resource_id, 'tag-vnet'))
- s.cmd('resource show --id {}'.format(vnet_resource_id), checks=[
- JMESPathCheck('name', self.vnet_name),
- JMESPathCheck('resourceGroup', self.resource_group),
- JMESPathCheck('tags', {'tag-vnet': ''})
- ])
+ # delete and verify
+ self.cmd('resource delete -n {vnet} -g {rg} --resource-type {rt}')
+ self.cmd('resource list', checks=self.check("length([?name=='{vnet}'])", 0))
+
+
+class ResourceIDScenarioTest(ScenarioTest):
+
+ @ResourceGroupPreparer(name_prefix='cli_test_resource_id')
+ def test_resource_id_scenario(self, resource_group):
- subnet_resource_id = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/' \
- 'virtualNetworks/{}/subnets/{}'.format(subscription_id,
- self.resource_group,
- self.vnet_name,
- self.subnet_name)
- s.cmd('resource show --id {}'.format(subnet_resource_id), checks=[
- JMESPathCheck('name', self.subnet_name),
- JMESPathCheck('resourceGroup', self.resource_group),
- JMESPathCheck('properties.addressPrefix', '10.0.0.0/24')
+ self.kwargs.update({
+ 'vnet': 'cli_test_resource_id_vnet',
+ 'subnet': 'cli_test_resource_id_subnet'
+ })
+
+ self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name {subnet}')
+
+ self.kwargs['sub'] = self.get_subscription_id()
+
+ self.kwargs['vnet_id'] = '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworks/{vnet}'.format(
+ **self.kwargs)
+ self.cmd('resource tag --id {vnet_id} --tags tag-vnet')
+ self.cmd('resource show --id {vnet_id}', checks=[
+ self.check('name', '{vnet}'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('tags', {'tag-vnet': ''})
])
- s.cmd('resource update --id {} --set properties.addressPrefix=10.0.0.0/22'.format(
- subnet_resource_id), checks=[
- JMESPathCheck('properties.addressPrefix', '10.0.0.0/22')
+ self.kwargs['subnet_id'] = '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworks/{vnet}/subnets/{subnet}'.format(
+ **self.kwargs)
+ self.cmd('resource show --id {subnet_id}', checks=[
+ self.check('name', '{subnet}'),
+ self.check('resourceGroup', '{rg}'),
+ self.check('properties.addressPrefix', '10.0.0.0/24')
])
- s.cmd('resource delete --id {}'.format(subnet_resource_id), checks=NoneCheck())
- s.cmd('resource delete --id {}'.format(vnet_resource_id), checks=NoneCheck())
+ self.cmd('resource update --id {subnet_id} --set properties.addressPrefix=10.0.0.0/22',
+ checks=self.check('properties.addressPrefix', '10.0.0.0/22'))
+ self.cmd('resource delete --id {subnet_id}', checks=self.is_empty())
+ self.cmd('resource delete --id {vnet_id}', checks=self.is_empty())
-class ResourceCreateScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(ResourceCreateScenarioTest, self).__init__(__file__, test_method,
- resource_group='cli_test_resource_create')
- def test_resource_create(self):
- self.execute()
+class ResourceCreateScenarioTest(ScenarioTest):
- def body(self):
- appservice_plan = 'cli_res_create_plan'
- webapp = 'clirescreateweb'
+ @ResourceGroupPreparer(name_prefix='cli_test_resource_create')
+ def test_resource_create(self, resource_group, resource_group_location):
- self.cmd('resource create -g {} -n {} --resource-type Microsoft.web/serverFarms '
- '--is-full-object --properties "{{\\"location\\":\\"{}\\",\\"sku\\":{{\\"name\\":'
- '\\"B1\\",\\"tier\\":\\"BASIC\\"}}}}"'.format(self.resource_group,
- appservice_plan,
- self.location),
- checks=[JMESPathCheck('name', appservice_plan)])
+ self.kwargs.update({
+ 'plan': 'cli_res_create_plan',
+ 'app': 'clirescreateweb',
+ 'loc': resource_group_location
+ })
- result = self.cmd(
- 'resource create -g {} -n {} --resource-type Microsoft.web/sites --properties '
- '"{{\\"serverFarmId\\":\\"{}\\"}}"'.format(self.resource_group,
- webapp,
- appservice_plan),
- checks=[JMESPathCheck('name', webapp)])
+ self.cmd('resource create -g {rg} -n {plan} --resource-type Microsoft.web/serverFarms --is-full-object --properties "{{\\"location\\":\\"{loc}\\",\\"sku\\":{{\\"name\\":\\"B1\\",\\"tier\\":\\"BASIC\\"}}}}"',
+ checks=self.check('name', '{plan}'))
- app_settings_id = result['id'] + '/config/appsettings'
- self.cmd('resource create --id {} --properties "{{\\"key2\\":\\"value12\\"}}"'.format(
- app_settings_id), checks=[JMESPathCheck('properties.key2', 'value12')])
+ result = self.cmd('resource create -g {rg} -n {app} --resource-type Microsoft.web/sites --properties "{{\\"serverFarmId\\":\\"{plan}\\"}}"',
+ checks=self.check('name', '{app}')).get_output_in_json()
+ self.kwargs['app_settings_id'] = result['id'] + '/config/appsettings'
+ self.cmd('resource create --id {app_settings_id} --properties "{{\\"key1\\":\\"value12\\"}}"',
+ checks=[self.check('properties.key2', 'value12')])
-class TagScenarioTest(VCRTestBase):
- def test_tag_scenario(self):
- self.execute()
- def __init__(self, test_method):
- self.tag_name = 'travistesttag'
- super(TagScenarioTest, self).__init__(__file__, test_method)
+class TagScenarioTest(ScenarioTest):
- def set_up(self):
- tn = self.tag_name
- tags = self.cmd('tag list --query "[?tagName == \'{}\'].values[].tagValue"'.format(tn))
- for tag in tags:
- self.cmd('tag remove-value -n {} --value {}'.format(tn, tag))
- self.cmd('tag delete -n {}'.format(tn))
+ def test_tag_scenario(self):
- def body(self):
- s = self
- tn = s.tag_name
+ self.kwargs.update({
+ 'tag': 'cli_test_tag'
+ })
- s.cmd('tag list --query "[?tagName == \'{}\']"'.format(tn), checks=NoneCheck())
- s.cmd('tag create -n {}'.format(tn), checks=[
- JMESPathCheck('tagName', tn),
- JMESPathCheck('values', []),
- JMESPathCheck('count.value', 0)
- ])
- s.cmd('tag add-value -n {} --value test'.format(tn))
- s.cmd('tag add-value -n {} --value test2'.format(tn))
- s.cmd('tag list --query "[?tagName == \'{}\']"'.format(tn), checks=[
- JMESPathCheck('[].values[].tagValue', [u'test', u'test2'])
- ])
- s.cmd('tag remove-value -n {} --value test'.format(tn))
- s.cmd('tag list --query "[?tagName == \'{}\']"'.format(tn), checks=[
- JMESPathCheck('[].values[].tagValue', [u'test2'])
- ])
- s.cmd('tag remove-value -n {} --value test2'.format(tn))
- s.cmd('tag list --query "[?tagName == \'{}\']"'.format(tn), checks=[
- JMESPathCheck('[].values[].tagValue', [])
+ tags = self.cmd('tag list --query "[?tagName == \'{tag}\'].values[].tagValue"').get_output_in_json()
+ for tag in tags:
+ self.cmd('tag remove-value -n {} --value {{tag}}'.format(tag))
+ self.cmd('tag delete -n {tag}')
+
+ self.cmd('tag list --query "[?tagName == \'{tag}\']"', checks=self.is_empty())
+ self.cmd('tag create -n {tag}', checks=[
+ self.check('tagName', '{tag}'),
+ self.check('values', []),
+ self.check('count.value', 0)
])
- s.cmd('tag delete -n {}'.format(tn))
- s.cmd('tag list --query "[?tagName == \'{}\']"'.format(self.tag_name), checks=NoneCheck())
-
-
-class ProviderRegistrationTest(VCRTestBase):
- def __init__(self, test_method):
- super(ProviderRegistrationTest, self).__init__(__file__, test_method)
+ self.cmd('tag add-value -n {tag} --value test')
+ self.cmd('tag add-value -n {tag} --value test2')
+ self.cmd('tag list --query "[?tagName == \'{tag}\']"',
+ checks=self.check('[].values[].tagValue', [u'test', u'test2']))
+ self.cmd('tag remove-value -n {tag} --value test')
+ self.cmd('tag list --query "[?tagName == \'{tag}\']"',
+ checks=self.check('[].values[].tagValue', [u'test2']))
+ self.cmd('tag remove-value -n {tag} --value test2')
+ self.cmd('tag list --query "[?tagName == \'{tag}\']"',
+ checks=self.check('[].values[].tagValue', []))
+ self.cmd('tag delete -n {tag}')
+ self.cmd('tag list --query "[?tagName == \'{tag}\']"',
+ checks=self.is_empty())
+
+
+class ProviderRegistrationTest(ScenarioTest):
def test_provider_registration(self):
- self.execute()
- def body(self):
- provider = 'TrendMicro.DeepSecurity'
- result = self.cmd('provider show -n {}'.format(provider), checks=None)
+ self.kwargs.update({'prov': 'TrendMicro.DeepSecurity'})
+
+ result = self.cmd('provider show -n {prov}').get_output_in_json()
if result['registrationState'] == 'Unregistered':
- self.cmd('provider register -n {}'.format(provider), checks=None)
- result = self.cmd('provider show -n {}'.format(provider))
+ self.cmd('provider register -n {prov}')
+ result = self.cmd('provider show -n {prov}').get_output_in_json()
self.assertTrue(result['registrationState'] in ['Registering', 'Registered'])
- self.cmd('provider unregister -n {}'.format(provider), checks=None)
- result = self.cmd('provider show -n {}'.format(provider))
+ self.cmd('provider unregister -n {prov}')
+ result = self.cmd('provider show -n {prov}').get_output_in_json()
self.assertTrue(result['registrationState'] in ['Unregistering', 'Unregistered'])
else:
- self.cmd('provider unregister -n {}'.format(provider), checks=None)
- result = self.cmd('provider show -n {}'.format(provider))
+ self.cmd('provider unregister -n {prov}')
+ result = self.cmd('provider show -n {prov}').get_output_in_json()
self.assertTrue(result['registrationState'] in ['Unregistering', 'Unregistered'])
- self.cmd('provider register -n {}'.format(provider), checks=None)
- result = self.cmd('provider show -n {}'.format(provider))
+ self.cmd('provider register -n {prov}')
+ result = self.cmd('provider show -n {prov}').get_output_in_json()
self.assertTrue(result['registrationState'] in ['Registering', 'Registered'])
-class ProviderOperationTest(VCRTestBase):
- def __init__(self, test_method):
- super(ProviderOperationTest, self).__init__(__file__, test_method)
+class ProviderOperationTest(ScenarioTest):
def test_provider_operation(self):
- self.execute()
-
- def body(self):
self.cmd('provider operation show --namespace microsoft.compute', checks=[
- JMESPathCheck('id',
- '/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute'),
- JMESPathCheck('type', 'Microsoft.Authorization/providerOperations')
+ self.check('id', '/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute'),
+ self.check('type', 'Microsoft.Authorization/providerOperations')
+ ])
+ self.cmd('provider operation show --namespace microsoft.compute --api-version 2015-07-01', checks=[
+ self.check('id', '/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute'),
+ self.check('type', 'Microsoft.Authorization/providerOperations')
])
- self.cmd('provider operation show --namespace microsoft.compute --api-version 2015-07-01',
- checks=[
- JMESPathCheck(
- 'id',
- '/providers/Microsoft.Authorization/providerOperations/Microsoft.Compute'),
- JMESPathCheck('type', 'Microsoft.Authorization/providerOperations')
- ])
class DeploymentTest(ScenarioTest):
+
@ResourceGroupPreparer(name_prefix='cli_test_deployment_lite')
def test_group_deployment_lite(self, resource_group):
# ensures that a template that is missing "parameters" or "resources" still deploys
curr_dir = os.path.dirname(os.path.realpath(__file__))
- template_file = os.path.join(curr_dir, 'test-template-lite.json').replace('\\', '\\\\')
- deployment_name = self.create_random_name('azure-cli-deployment', 30)
- self.cmd('group deployment create -g {} -n {} --template-file {}'.format(
- resource_group, deployment_name, template_file), checks=[
- JCheck('properties.provisioningState', 'Succeeded'),
- JCheck('resourceGroup', resource_group),
+ self.kwargs.update({
+ 'tf': os.path.join(curr_dir, 'test-template-lite.json').replace('\\', '\\\\'),
+ 'dn': self.create_random_name('azure-cli-deployment', 30)
+ })
+
+ self.cmd('group deployment create -g {rg} -n {dn} --template-file {tf}', checks=[
+ self.check('properties.provisioningState', 'Succeeded'),
+ self.check('resourceGroup', '{rg}')
])
@ResourceGroupPreparer(name_prefix='cli_test_deployment')
def test_group_deployment(self, resource_group):
curr_dir = os.path.dirname(os.path.realpath(__file__))
- template_file = os.path.join(curr_dir, 'test-template.json').replace('\\', '\\\\')
- parameters_file = os.path.join(curr_dir, 'test-params.json').replace('\\', '\\\\')
- object_file = os.path.join(curr_dir, 'test-object.json').replace('\\', '\\\\')
- deployment_name = 'azure-cli-deployment'
-
- subnet_id = self.cmd(
- 'network vnet create -g {} -n vnet1 --subnet-name subnet1'.format(resource_group)).get_output_in_json()[
- 'newVNet']['subnets'][0]['id']
-
- self.cmd(
- 'group deployment validate -g {} --template-file {} --parameters @"{}" --parameters subnetId="{}" --parameters backendAddressPools=@"{}"'.format(
- resource_group, template_file, parameters_file, subnet_id, object_file), checks=[
- JCheck('properties.provisioningState', 'Succeeded')
- ])
+ self.kwargs.update({
+ 'tf': os.path.join(curr_dir, 'test-template.json').replace('\\', '\\\\'),
+ 'params': os.path.join(curr_dir, 'test-params.json').replace('\\', '\\\\'),
+ 'of': os.path.join(curr_dir, 'test-object.json').replace('\\', '\\\\'),
+ 'dn': 'azure-cli-deployment'
+ })
+ self.kwargs['subnet_id'] = self.cmd('network vnet create -g {rg} -n vnet1 --subnet-name subnet1').get_output_in_json()['newVNet']['subnets'][0]['id']
+
+ self.cmd('group deployment validate -g {rg} --template-file {tf} --parameters @"{params}" --parameters subnetId="{subnet_id}" --parameters backendAddressPools=@"{of}"', checks=[
+ self.check('properties.provisioningState', 'Succeeded')
+ ])
- self.cmd(
- 'group deployment create -g {} -n {} --template-file {} --parameters @"{}" --parameters subnetId="{}" --parameters backendAddressPools=@"{}"'.format(
- resource_group, deployment_name, template_file, parameters_file, subnet_id, object_file), checks=[
- JCheck('properties.provisioningState', 'Succeeded'),
- JCheck('resourceGroup', resource_group),
- ])
- self.cmd('network lb show -g {} -n test-lb'.format(resource_group), checks=[
- JCheck('tags', {'key': 'super=value'})
+ self.cmd('group deployment create -g {rg} -n {dn} --template-file {tf} --parameters @"{params}" --parameters subnetId="{subnet_id}" --parameters backendAddressPools=@"{of}"', checks=[
+ self.check('properties.provisioningState', 'Succeeded'),
+ self.check('resourceGroup', '{rg}')
])
+ self.cmd('network lb show -g {rg} -n test-lb',
+ checks=self.check('tags', {'key': 'super=value'}))
- self.cmd('group deployment list -g {}'.format(resource_group), checks=[
- JCheck('[0].name', deployment_name),
- JCheck('[0].resourceGroup', resource_group)
+ self.cmd('group deployment list -g {rg}', checks=[
+ self.check('[0].name', '{dn}'),
+ self.check('[0].resourceGroup', '{rg}')
])
- self.cmd('group deployment show -g {} -n {}'.format(resource_group, deployment_name), checks=[
- JCheck('name', deployment_name),
- JCheck('resourceGroup', resource_group)
+ self.cmd('group deployment show -g {rg} -n {dn}', checks=[
+ self.check('name', '{dn}'),
+ self.check('resourceGroup', '{rg}')
])
- self.cmd('group deployment operation list -g {} -n {}'.format(resource_group, deployment_name), checks=[
- JCheck('length([])', 2),
- JCheck('[0].resourceGroup', resource_group)
+ self.cmd('group deployment operation list -g {rg} -n {dn}', checks=[
+ self.check('length([])', 2),
+ self.check('[0].resourceGroup', '{rg}')
])
@@ -346,491 +295,464 @@ class DeploymentLiveTest(LiveScenarioTest):
def test_group_deployment_progress(self, resource_group):
from azure.cli.testsdk.utilities import force_progress_logging
curr_dir = os.path.dirname(os.path.realpath(__file__))
- template_file = os.path.join(curr_dir, 'test-template.json').replace('\\', '\\\\')
- parameters_file = os.path.join(curr_dir, 'test-params.json').replace('\\', '\\\\')
- object_file = os.path.join(curr_dir, 'test-object.json').replace('\\', '\\\\')
- deployment_name = 'azure-cli-deployment2'
- subnet_id = self.cmd(
- 'network vnet create -g {} -n vnet1 --subnet-name subnet1'.format(resource_group)).get_output_in_json()[
- 'newVNet']['subnets'][0]['id']
+ self.kwargs.update({
+ 'tf': os.path.join(curr_dir, 'test-template.json').replace('\\', '\\\\'),
+ 'params': os.path.join(curr_dir, 'test-params.json').replace('\\', '\\\\'),
+ 'of': os.path.join(curr_dir, 'test-object.json').replace('\\', '\\\\'),
+ 'dn': 'azure-cli-deployment2'
+ })
+
+ self.kwargs['subnet_id'] = self.cmd('network vnet create -g {rg} -n vnet1 --subnet-name subnet1').get_output_in_json()['newVNet']['subnets'][0]['id']
with force_progress_logging() as test_io:
- self.cmd(
- 'group deployment create --verbose -g {} -n {} --template-file {} --parameters @"{}" --parameters subnetId="{}" --parameters backendAddressPools=@"{}"'.format(
- resource_group, deployment_name, template_file, parameters_file, subnet_id, object_file))
+ self.cmd('group deployment create --verbose -g {rg} -n {dn} --template-file {tf} --parameters @"{params}" --parameters subnetId="{subnet_id}" --parameters backendAddressPools=@"{of}"')
# very the progress
lines = test_io.getvalue().splitlines()
for l in lines:
self.assertTrue(l.split(':')[0] in ['Accepted', 'Succeeded'])
- self.assertTrue('Succeeded: {} (Microsoft.Resources/deployments)'.format(deployment_name), lines)
+ self.assertTrue('Succeeded: {} (Microsoft.Resources/deployments)'.format(self.kwargs['dn']), lines)
-class DeploymentnoWaitTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(DeploymentnoWaitTest, self).__init__(__file__, test_method,
- resource_group='azure-cli-deployment-test')
+class DeploymentNoWaitTest(ScenarioTest):
- def test_group_deployment_no_wait(self):
- self.execute()
-
- def body(self):
+ @ResourceGroupPreparer(name_prefix='cli_test_group_deployment_no_wait')
+ def test_group_deployment_no_wait(self, resource_group):
curr_dir = os.path.dirname(os.path.realpath(__file__))
- template_file = os.path.join(curr_dir, 'simple_deploy.json').replace('\\', '\\\\')
- parameters_file = os.path.join(curr_dir, 'simple_deploy_parameters.json').replace('\\',
- '\\\\')
- deployment_name = 'azure-cli-deployment'
- self.cmd('group deployment create -g {} -n {} --template-file {} --parameters @{} '
- '--no-wait'.format(self.resource_group,
- deployment_name,
- template_file,
- parameters_file),
- checks=NoneCheck())
+ self.kwargs.update({
+ 'tf': os.path.join(curr_dir, 'simple_deploy.json').replace('\\', '\\\\'),
+ 'params': os.path.join(curr_dir, 'simple_deploy_parameters.json').replace('\\', '\\\\'),
+ 'dn': 'azure-cli-deployment'
+ })
+
+ self.cmd('group deployment create -g {rg} -n {dn} --template-file {tf} --parameters @{params} --no-wait',
+ checks=self.is_empty())
- self.cmd('group deployment wait -g {} -n {} --created'.format(self.resource_group,
- deployment_name),
- checks=NoneCheck())
+ self.cmd('group deployment wait -g {rg} -n {dn} --created',
+ checks=self.is_empty())
- self.cmd('group deployment show -g {} -n {}'.format(self.resource_group, deployment_name),
- checks=[JMESPathCheck('properties.provisioningState', 'Succeeded')])
+ self.cmd('group deployment show -g {rg} -n {dn}',
+ checks=self.check('properties.provisioningState', 'Succeeded'))
class DeploymentThruUriTest(ScenarioTest):
+
@ResourceGroupPreparer(name_prefix='cli_test_deployment_uri')
def test_group_deployment_thru_uri(self, resource_group):
self.resource_group = resource_group
curr_dir = os.path.dirname(os.path.realpath(__file__))
# same copy of the sample template file under current folder, but it is uri based now
- template_uri = 'https://raw.githubusercontent.com/Azure/azure-cli/master/src/' \
- 'command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/simple_deploy.json'
- parameters_file = os.path.join(curr_dir, 'simple_deploy_parameters.json').replace('\\',
- '\\\\')
- result = self.cmd('group deployment create -g {} --template-uri {} --parameters @{}'.format(
- self.resource_group, template_uri, parameters_file), checks=[
- JCheck('properties.provisioningState', 'Succeeded'),
- JCheck('resourceGroup', self.resource_group),
- ]).get_output_in_json()
+ self.kwargs.update({
+ 'tf': 'https://raw.githubusercontent.com/Azure/azure-cli/master/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/simple_deploy.json',
+ 'params': os.path.join(curr_dir, 'simple_deploy_parameters.json').replace('\\', '\\\\')
+ })
+ self.kwargs['dn'] = self.cmd('group deployment create -g {rg} --template-uri {tf} --parameters @{params}', checks=[
+ self.check('properties.provisioningState', 'Succeeded'),
+ self.check('resourceGroup', '{rg}'),
+ ]).get_output_in_json()['name']
- deployment_name = result['name']
- result = self.cmd(
- 'group deployment show -g {} -n {}'.format(self.resource_group, deployment_name),
- checks=JCheck('name', deployment_name))
+ self.cmd('group deployment show -g {rg} -n {dn}',
+ checks=self.check('name', '{dn}'))
- self.cmd('group deployment delete -g {} -n {}'.format(self.resource_group, deployment_name))
- self.cmd('group deployment list -g {}'.format(self.resource_group), checks=NoneCheck())
+ self.cmd('group deployment delete -g {rg} -n {dn}')
+ self.cmd('group deployment list -g {rg}',
+ checks=self.is_empty())
class ResourceMoveScenarioTest(ScenarioTest):
- @ResourceGroupPreparer(name_prefix='cli_test_resource_move_dest', parameter_name='resource_group_dest')
- @ResourceGroupPreparer(name_prefix='cli_test_resource_move_source')
+ @ResourceGroupPreparer(name_prefix='cli_test_resource_move_dest', parameter_name='resource_group_dest', key='rg2')
+ @ResourceGroupPreparer(name_prefix='cli_test_resource_move_source', key='rg1')
def test_resource_move(self, resource_group, resource_group_dest):
- nsg1_name = self.create_random_name('nsg-move', 20)
- nsg2_name = self.create_random_name('nsg-move', 20)
+ self.kwargs.update({
+ 'nsg1': self.create_random_name('nsg-move', 20),
+ 'nsg2': self.create_random_name('nsg-move', 20)
+ })
- nsg1 = self.cmd('network nsg create -n {} -g {}'.format(nsg1_name, resource_group)).get_output_in_json()
- nsg2 = self.cmd('network nsg create -n {} -g {}'.format(nsg2_name, resource_group)).get_output_in_json()
+ self.kwargs['nsg1_id'] = self.cmd('network nsg create -n {nsg1} -g {rg1}').get_output_in_json()['NewNSG']['id']
+ self.kwargs['nsg2_id'] = self.cmd('network nsg create -n {nsg2} -g {rg1}').get_output_in_json()['NewNSG']['id']
- nsg1_id = nsg1['NewNSG']['id']
- nsg2_id = nsg2['NewNSG']['id']
+ self.cmd('resource move --ids {nsg1_id} {nsg2_id} --destination-group {rg2}')
- self.cmd('resource move --ids {} {} --destination-group {}'.format(nsg1_id, nsg2_id, resource_group_dest))
+ self.cmd('network nsg show -g {rg2} -n {nsg1}', checks=[
+ self.check('name', '{nsg1}')])
+ self.cmd('network nsg show -g {rg2} -n {nsg2}', checks=[
+ self.check('name', '{nsg2}')])
- self.cmd('network nsg show -g {} -n {}'.format(resource_group_dest, nsg1_name), checks=[
- JCheck('name', nsg1_name)])
- self.cmd('network nsg show -g {} -n {}'.format(resource_group_dest, nsg2_name), checks=[
- JCheck('name', nsg2_name)])
-
-class FeatureScenarioTest(VCRTestBase):
- def __init__(self, test_method):
- super(FeatureScenarioTest, self).__init__(__file__, test_method)
+class FeatureScenarioTest(ScenarioTest):
def test_feature_list(self):
- self.execute()
+ self.cmd('feature list', checks=self.check("length([?name=='Microsoft.Xrm/uxdevelopment'])", 1))
- def body(self):
- self.cmd('feature list', checks=[
- JMESPathCheck("length([?name=='Microsoft.Xrm/uxdevelopment'])", 1)
- ])
-
- self.cmd('feature list --namespace {}'.format('Microsoft.Network'), checks=[
- JMESPathCheck("length([?name=='Microsoft.Network/SkipPseudoVipGeneration'])", 1)
- ])
+ self.cmd('feature list --namespace Microsoft.Network',
+ checks=self.check("length([?name=='Microsoft.Network/SkipPseudoVipGeneration'])", 1))
class PolicyScenarioTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_policy')
def test_resource_policy(self, resource_group):
- policy_name = self.create_random_name('azure-cli-test-policy', 30)
- policy_display_name = self.create_random_name('test_policy', 20)
- policy_description = 'desc_for_test_policy_123'
curr_dir = os.path.dirname(os.path.realpath(__file__))
- rules_file = os.path.join(curr_dir, 'sample_policy_rule.json').replace('\\', '\\\\')
- params_def_file = os.path.join(curr_dir, 'sample_policy_param_def.json').replace('\\', '\\\\')
- params_file = os.path.join(curr_dir, 'sample_policy_param.json').replace('\\', '\\\\')
- mode = 'Indexed'
+
+ self.kwargs.update({
+ 'pn': self.create_random_name('azure-cli-test-policy', 30),
+ 'pdn': self.create_random_name('test_policy', 20),
+ 'desc': 'desc_for_test_policy_123',
+ 'rf': os.path.join(curr_dir, 'sample_policy_rule.json').replace('\\', '\\\\'),
+ 'pdf': os.path.join(curr_dir, 'sample_policy_param_def.json').replace('\\', '\\\\'),
+ 'params': os.path.join(curr_dir, 'sample_policy_param.json').replace('\\', '\\\\'),
+ 'mode': 'Indexed'
+ })
# create a policy
- self.cmd(
- 'policy definition create -n {} --rules {} --params {} --display-name {} --description {} --mode {}'.format(
- policy_name, rules_file, params_def_file, policy_display_name, policy_description, mode),
- checks=[
- JCheck('name', policy_name),
- JCheck('displayName', policy_display_name),
- JCheck('description', policy_description),
- JCheck('mode', mode)
- ]
- )
+ self.cmd('policy definition create -n {pn} --rules {rf} --params {pdf} --display-name {pdn} --description {desc} --mode {mode}', checks=[
+ self.check('name', '{pn}'),
+ self.check('displayName', '{pdn}'),
+ self.check('description', '{desc}'),
+ self.check('mode', '{mode}')
+ ])
# update it
- new_policy_description = policy_description + '_new'
- self.cmd('policy definition update -n {} --description {}'.format(policy_name, new_policy_description),
- checks=JCheck('description', new_policy_description))
+ self.kwargs['desc'] = self.kwargs['desc'] + '_new'
+ self.cmd('policy definition update -n {pn} --description {desc}',
+ checks=self.check('description', '{desc}'))
# list and show it
- self.cmd('policy definition list', checks=JMESPathCheck("length([?name=='{}'])".format(policy_name), 1))
- self.cmd('policy definition show -n {}'.format(policy_name), checks=[
- JCheck('name', policy_name),
- JCheck('displayName', policy_display_name)
+ self.cmd('policy definition list',
+ checks=self.check("length([?name=='{pn}'])", 1))
+ self.cmd('policy definition show -n {pn}', checks=[
+ self.check('name', '{pn}'),
+ self.check('displayName', '{pdn}')
])
# create a policy assignment on a resource group
- policy_assignment_name = self.create_random_name('azurecli-test-policy-assignment', 40)
- policy_assignment_display_name = self.create_random_name('test_assignment', 20)
- self.cmd('policy assignment create --policy {} -n {} --display-name {} -g {} --params {}'.format(
- policy_name, policy_assignment_name, policy_assignment_display_name, resource_group, params_file),
- checks=[JCheck('name', policy_assignment_name),
- JCheck('displayName', policy_assignment_display_name),
- JCheck('sku.name', 'A0'),
- JCheck('sku.tier', 'Free')])
+ self.kwargs.update({
+ 'pan': self.create_random_name('azurecli-test-policy-assignment', 40),
+ 'padn': self.create_random_name('test_assignment', 20)
+ })
+ self.cmd('policy assignment create --policy {pn} -n {pan} --display-name {padn} -g {rg} --params {params}', checks=[
+ self.check('name', '{pan}'),
+ self.check('displayName', '{padn}'),
+ self.check('sku.name', 'A0'),
+ self.check('sku.tier', 'Free')
+ ])
# create a policy assignment with not scopes and standard sku
- get_cmd = 'group show -n {}'
- rg = self.cmd(get_cmd.format(resource_group)).get_output_in_json()
- vnet_name = self.create_random_name('azurecli-test-policy-vnet', 40)
- subnet_name = self.create_random_name('azurecli-test-policy-subnet', 40)
- vnetcreatecmd = 'network vnet create -g {} -n {} --subnet-name {}'
- self.cmd(vnetcreatecmd.format(resource_group, vnet_name, subnet_name))
- notscope = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Network/virtualNetworks'.format(
- rg['id'].split("/")[2], resource_group)
- self.cmd(
- 'policy assignment create --policy {} -n {} --display-name {} -g {} --not-scopes {} --params {} --sku {}'.format(
- policy_name, policy_assignment_name, policy_assignment_display_name, resource_group, notscope,
- params_file, 'standard'),
- checks=[JCheck('name', policy_assignment_name),
- JCheck('displayName', policy_assignment_display_name),
- JCheck('sku.name', 'A1'),
- JCheck('sku.tier', 'Standard'),
- JCheck('notScopes[0]', notscope)])
+ self.kwargs.update({
+ 'vnet': self.create_random_name('azurecli-test-policy-vnet', 40),
+ 'subnet': self.create_random_name('azurecli-test-policy-subnet', 40),
+ 'sub': self.get_subscription_id()
+ })
+
+ self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name {subnet}')
+ self.kwargs['notscope'] = '/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualNetworks'.format(**self.kwargs)
+ self.cmd('policy assignment create --policy {pn} -n {pan} --display-name {padn} -g {rg} --not-scopes {notscope} --params {params} --sku standard', checks=[
+ self.check('name', '{pan}'),
+ self.check('displayName', '{padn}'),
+ self.check('sku.name', 'A1'),
+ self.check('sku.tier', 'Standard'),
+ self.check('notScopes[0]', '{notscope}')
+ ])
# create a policy assignment using a built in policy definition name
- policy_assignment_name2 = self.create_random_name('azurecli-test-policy-assignment2', 40)
- built_in_policy = self.cmd(
- 'policy definition list --query "[?policyType==\'BuiltIn\']|[0]"').get_output_in_json()
- self.cmd('policy assignment create --policy {} -n {} --display-name {} -g {}'.format(
- built_in_policy['name'], policy_assignment_name2, policy_assignment_display_name, resource_group),
- checks=[JCheck('name', policy_assignment_name2),
- JCheck('displayName', policy_assignment_display_name)])
- self.cmd('policy assignment delete -n {} -g {}'.format(policy_assignment_name2, resource_group))
+ self.kwargs['pan2'] = self.create_random_name('azurecli-test-policy-assignment2', 40)
+ self.kwargs['bip'] = self.cmd('policy definition list --query "[?policyType==\'BuiltIn\']|[0]"').get_output_in_json()['name']
+ self.cmd('policy assignment create --policy {bip} -n {pan2} --display-name {padn} -g {rg}', checks=[
+ self.check('name', '{pan2}'),
+ self.check('displayName', '{padn}')
+ ])
+ self.cmd('policy assignment delete -n {pan2} -g {rg}')
# listing at subscription level won't find the assignment made at a resource group
import jmespath
try:
- self.cmd('policy assignment list', checks=JCheck("length([?name=='{}'])".format(policy_assignment_name), 0))
+ self.cmd('policy assignment list',
+ checks=self.check("length([?name=='{pan}'])", 0))
except jmespath.exceptions.JMESPathTypeError: # ok if query fails on None result
pass
# but enable --show-all works
self.cmd('policy assignment list --disable-scope-strict-match',
- checks=JCheck("length([?name=='{}'])".format(policy_assignment_name), 1))
+ checks=self.check("length([?name=='{pan}'])", 1))
# delete the assignment
- self.cmd('policy assignment delete -n {} -g {}'.format(policy_assignment_name, resource_group))
+ self.cmd('policy assignment delete -n {pan} -g {rg}')
self.cmd('policy assignment list --disable-scope-strict-match')
# delete the policy
- self.cmd('policy definition delete -n {}'.format(policy_name))
+ self.cmd('policy definition delete -n {pn}')
time.sleep(10) # ensure the policy is gone when run live.
- self.cmd('policy definition list', checks=JCheck("length([?name=='{}'])".format(policy_name), 0))
+ self.cmd('policy definition list',
+ checks=self.check("length([?name=='{pn}'])", 0))
@ResourceGroupPreparer(name_prefix='cli_test_policy')
def test_resource_policyset(self, resource_group):
- policy_name = self.create_random_name('azure-cli-test-policy', 30)
- policy_display_name = self.create_random_name('test_policy', 20)
- policy_description = 'desc_for_test_policy_123'
- policyset_name = self.create_random_name('azure-cli-test-policyset', 30)
- policyset_display_name = self.create_random_name('test_policyset', 20)
- policyset_description = 'desc_for_test_policyset_123'
curr_dir = os.path.dirname(os.path.realpath(__file__))
- rules_file = os.path.join(curr_dir, 'sample_policy_rule.json').replace('\\', '\\\\')
- policyset_file = os.path.join(curr_dir, 'sample_policy_set.json').replace('\\', '\\\\')
- params_def_file = os.path.join(curr_dir, 'sample_policy_param_def.json').replace('\\', '\\\\')
+
+ self.kwargs.update({
+ 'pn': self.create_random_name('azure-cli-test-policy', 30),
+ 'pdn': self.create_random_name('test_policy', 20),
+ 'desc': 'desc_for_test_policy_123',
+ 'psn': self.create_random_name('azure-cli-test-policyset', 30),
+ 'psdn': self.create_random_name('test_policyset', 20),
+ 'ps_desc': 'desc_for_test_policyset_123',
+ 'rf': os.path.join(curr_dir, 'sample_policy_rule.json').replace('\\', '\\\\'),
+ 'psf': os.path.join(curr_dir, 'sample_policy_set.json').replace('\\', '\\\\'),
+ 'pdf': os.path.join(curr_dir, 'sample_policy_param_def.json').replace('\\', '\\\\')
+ })
# create a policy
- policycreatecmd = 'policy definition create -n {} --rules {} --params {} --display-name {} --description {}'
- policy = self.cmd(policycreatecmd.format(policy_name, rules_file, params_def_file, policy_display_name,
- policy_description)).get_output_in_json()
+ policy = self.cmd('policy definition create -n {pn} --rules {rf} --params {pdf} --display-name {pdn} --description {desc}').get_output_in_json()
# create a policy set
- policyset = get_file_json(policyset_file)
+ policyset = get_file_json(self.kwargs['psf'])
policyset[0]['policyDefinitionId'] = policy['id']
with open(os.path.join(curr_dir, 'sample_policy_set.json'), 'w') as outfile:
json.dump(policyset, outfile)
- self.cmd('policy set-definition create -n {} --definitions @"{}" --display-name {} --description {}'.format(
- policyset_name, policyset_file, policyset_display_name, policyset_description),
- checks=[JCheck('name', policyset_name),
- JCheck('displayName', policyset_display_name),
- JCheck('description', policyset_description)])
+ self.cmd('policy set-definition create -n {psn} --definitions @"{psf}" --display-name {psdn} --description {ps_desc}', checks=[
+ self.check('name', '{psn}'),
+ self.check('displayName', '{psdn}'),
+ self.check('description', '{ps_desc}')
+ ])
# update it
- new_policyset_description = policy_description + '_new'
- self.cmd(
- 'policy set-definition update -n {} --description {}'.format(policyset_name, new_policyset_description),
- checks=JCheck('description', new_policyset_description))
+ self.kwargs['ps_desc'] = self.kwargs['ps_desc'] + '_new'
+ self.cmd('policy set-definition update -n {psn} --description {ps_desc}',
+ checks=self.check('description', '{ps_desc}'))
# list and show it
- self.cmd('policy set-definition list', checks=JMESPathCheck("length([?name=='{}'])".format(policyset_name), 1))
- self.cmd('policy set-definition show -n {}'.format(policyset_name),
- checks=[JCheck('name', policyset_name),
- JCheck('displayName', policyset_display_name)])
+ self.cmd('policy set-definition list',
+ checks=self.check("length([?name=='{psn}'])", 1))
+ self.cmd('policy set-definition show -n {psn}', checks=[
+ self.check('name', '{psn}'),
+ self.check('displayName', '{psdn}')
+ ])
# create a policy assignment on a resource group
- policy_assignment_name = self.create_random_name('azurecli-test-policy-assignment', 40)
- policy_assignment_display_name = self.create_random_name('test_assignment', 20)
- self.cmd('policy assignment create -d {} -n {} --display-name {} -g {}'.format(
- policyset_name, policy_assignment_name, policy_assignment_display_name, resource_group),
- checks=[JCheck('name', policy_assignment_name),
- JCheck('displayName', policy_assignment_display_name),
- JCheck('sku.name', 'A0'),
- JCheck('sku.tier', 'Free')])
+ self.kwargs.update({
+ 'pan': self.create_random_name('azurecli-test-policy-assignment', 40),
+ 'padn': self.create_random_name('test_assignment', 20)
+ })
+ self.cmd('policy assignment create -d {psn} -n {pan} --display-name {padn} -g {rg}', checks=[
+ self.check('name', '{pan}'),
+ self.check('displayName', '{padn}'),
+ self.check('sku.name', 'A0'),
+ self.check('sku.tier', 'Free'),
+ ])
# delete the assignment
- self.cmd('policy assignment delete -n {} -g {}'.format(policy_assignment_name, resource_group))
+ self.cmd('policy assignment delete -n {pan} -g {rg}')
self.cmd('policy assignment list --disable-scope-strict-match')
# delete the policy set
- self.cmd('policy set-definition delete -n {}'.format(policyset_name))
+ self.cmd('policy set-definition delete -n {psn}')
time.sleep(10) # ensure the policy is gone when run live.
- self.cmd('policy set-definition list', checks=JCheck("length([?name=='{}'])".format(policyset_name), 0))
+ self.cmd('policy set-definition list',
+ checks=self.check("length([?name=='{psn}'])", 0))
def test_show_built_in_policy(self):
+ # This test actually does not work...
result = self.cmd('policy definition list --query "[?policyType==\'BuiltIn\']|[0]"').get_output_in_json()
- policy_name = result['name']
- self.cmd('policy definition show -n ' + policy_name, checks=[
- JCheck('name', policy_name)
- ])
+ self.kwargs['pn'] = result['name']
+ self.cmd('policy definition show -n {pn}',
+ checks=self.check('name', '{pn}'))
class ManagedAppDefinitionScenarioTest(ScenarioTest):
@ResourceGroupPreparer()
def test_managedappdef(self, resource_group):
- location = 'eastus2euap'
- appdef_name = self.create_random_name('testappdefname', 20)
- appdef_display_name = self.create_random_name('test_appdef', 20)
- appdef_description = 'test_appdef_123'
- packageUri = 'https:\/\/testclinew.blob.core.windows.net\/files\/vivekMAD.zip'
- auth = '5e91139a-c94b-462e-a6ff-1ee95e8aac07:8e3af657-a8ff-443c-a75c-2fe8c4bcb635'
- lock = 'None'
- # create a managedapp definition
- create_cmd = 'managedapp definition create -n {} --package-file-uri {} --display-name {} --description {} -l {} -a {} --lock-level {} -g {}'
- appdef = self.cmd(
- create_cmd.format(appdef_name, packageUri, appdef_display_name, appdef_description, location, auth, lock,
- resource_group), checks=[
- JCheck('name', appdef_name),
- JCheck('displayName', appdef_display_name),
- JCheck('description', appdef_description),
- JCheck('authorizations[0].principalId', '5e91139a-c94b-462e-a6ff-1ee95e8aac07'),
- JCheck('authorizations[0].roleDefinitionId', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635'),
- JCheck('artifacts[0].name', 'ApplianceResourceTemplate'),
- JCheck('artifacts[0].type', 'Template'),
- JCheck('artifacts[1].name', 'CreateUiDefinition'),
- JCheck('artifacts[1].type', 'Custom')
- ]).get_output_in_json()
-
- # list and show it
- list_cmd = 'managedapp definition list -g {}'
- self.cmd(list_cmd.format(resource_group), checks=[
- JCheck('[0].name', appdef_name)
- ])
+ self.kwargs.update({
+ 'loc': 'eastus2euap',
+ 'adn': self.create_random_name('testappdefname', 20),
+ 'addn': self.create_random_name('test_appdef', 20),
+ 'ad_desc': 'test_appdef_123',
+ 'uri': 'https:\/\/testclinew.blob.core.windows.net\/files\/vivekMAD.zip',
+ 'auth': '5e91139a-c94b-462e-a6ff-1ee95e8aac07:8e3af657-a8ff-443c-a75c-2fe8c4bcb635',
+ 'lock': 'None'
+ })
- show_cmd = 'managedapp definition show --ids {}'
- self.cmd(show_cmd.format(appdef['id']), checks=[
- JCheck('name', appdef_name),
- JCheck('displayName', appdef_display_name),
- JCheck('description', appdef_description),
- JCheck('authorizations[0].principalId', '5e91139a-c94b-462e-a6ff-1ee95e8aac07'),
- JCheck('authorizations[0].roleDefinitionId', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635'),
- JCheck('artifacts[0].name', 'ApplianceResourceTemplate'),
- JCheck('artifacts[0].type', 'Template'),
- JCheck('artifacts[1].name', 'CreateUiDefinition'),
- JCheck('artifacts[1].type', 'Custom')
+ # create a managedapp definition
+ self.kwargs['ad_id'] = self.cmd('managedapp definition create -n {adn} --package-file-uri {uri} --display-name {addn} --description {ad_desc} -l {loc} -a {auth} --lock-level {lock} -g {rg}', checks=[
+ self.check('name', '{adn}'),
+ self.check('displayName', '{addn}'),
+ self.check('description', '{ad_desc}'),
+ self.check('authorizations[0].principalId', '5e91139a-c94b-462e-a6ff-1ee95e8aac07'),
+ self.check('authorizations[0].roleDefinitionId', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635'),
+ self.check('artifacts[0].name', 'ApplianceResourceTemplate'),
+ self.check('artifacts[0].type', 'Template'),
+ self.check('artifacts[1].name', 'CreateUiDefinition'),
+ self.check('artifacts[1].type', 'Custom')
+ ]).get_output_in_json()['id']
+
+ self.cmd('managedapp definition list -g {rg}',
+ checks=self.check('[0].name', '{adn}'))
+
+ self.cmd('managedapp definition show --ids {ad_id}', checks=[
+ self.check('name', '{adn}'),
+ self.check('displayName', '{addn}'),
+ self.check('description', '{ad_desc}'),
+ self.check('authorizations[0].principalId', '5e91139a-c94b-462e-a6ff-1ee95e8aac07'),
+ self.check('authorizations[0].roleDefinitionId', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635'),
+ self.check('artifacts[0].name', 'ApplianceResourceTemplate'),
+ self.check('artifacts[0].type', 'Template'),
+ self.check('artifacts[1].name', 'CreateUiDefinition'),
+ self.check('artifacts[1].type', 'Custom')
])
- # delete
- self.cmd('managedapp definition delete -g {} -n {}'.format(resource_group, appdef_name))
- self.cmd('managedapp definition list -g {}'.format(resource_group), checks=NoneCheck())
+ self.cmd('managedapp definition delete -g {rg} -n {adn}')
+ self.cmd('managedapp definition list -g {rg}', checks=self.is_empty())
@ResourceGroupPreparer()
def test_managedappdef_inline(self, resource_group):
- location = 'eastus2euap'
- appdef_name = self.create_random_name('testappdefname', 20)
- appdef_display_name = self.create_random_name('test_appdef', 20)
- appdef_description = 'test_appdef_123'
- auth = '5e91139a-c94b-462e-a6ff-1ee95e8aac07:8e3af657-a8ff-443c-a75c-2fe8c4bcb635'
- lock = 'None'
curr_dir = os.path.dirname(os.path.realpath(__file__))
- createUiDef_file = os.path.join(curr_dir, 'sample_create_ui_definition.json').replace('\\', '\\\\')
- mainTemplate_file = os.path.join(curr_dir, 'sample_main_template.json').replace('\\', '\\\\')
-
- # create a managedapp definition with inline params for create-ui-definition and main-template
- create_cmd = 'managedapp definition create -n {} --create-ui-definition @"{}" --main-template @"{}" --display-name {} --description {} -l {} -a {} --lock-level {} -g {}'
- appdef = self.cmd(
- create_cmd.format(appdef_name, createUiDef_file, mainTemplate_file, appdef_display_name, appdef_description,
- location, auth, lock, resource_group), checks=[
- JCheck('name', appdef_name),
- JCheck('displayName', appdef_display_name),
- JCheck('description', appdef_description),
- JCheck('authorizations[0].principalId', '5e91139a-c94b-462e-a6ff-1ee95e8aac07'),
- JCheck('authorizations[0].roleDefinitionId', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635'),
- JCheck('artifacts[0].name', 'ApplicationResourceTemplate'),
- JCheck('artifacts[0].type', 'Template'),
- JCheck('artifacts[1].name', 'CreateUiDefinition'),
- JCheck('artifacts[1].type', 'Custom')
- ]).get_output_in_json()
- # list and show it
- list_cmd = 'managedapp definition list -g {}'
- self.cmd(list_cmd.format(resource_group), checks=[
- JCheck('[0].name', appdef_name)
- ])
+ self.kwargs.update({
+ 'loc': 'eastus2euap',
+ 'adn': self.create_random_name('testappdefname', 20),
+ 'addn': self.create_random_name('test_appdef', 20),
+ 'ad_desc': 'test_appdef_123',
+ 'auth': '5e91139a-c94b-462e-a6ff-1ee95e8aac07:8e3af657-a8ff-443c-a75c-2fe8c4bcb635',
+ 'lock': 'None',
+ 'ui_file': os.path.join(curr_dir, 'sample_create_ui_definition.json').replace('\\', '\\\\'),
+ 'main_file': os.path.join(curr_dir, 'sample_main_template.json').replace('\\', '\\\\')
+ })
- show_cmd = 'managedapp definition show --ids {}'
- self.cmd(show_cmd.format(appdef['id']), checks=[
- JCheck('name', appdef_name),
- JCheck('displayName', appdef_display_name),
- JCheck('description', appdef_description),
- JCheck('authorizations[0].principalId', '5e91139a-c94b-462e-a6ff-1ee95e8aac07'),
- JCheck('authorizations[0].roleDefinitionId', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635'),
- JCheck('artifacts[0].name', 'ApplicationResourceTemplate'),
- JCheck('artifacts[0].type', 'Template'),
- JCheck('artifacts[1].name', 'CreateUiDefinition'),
- JCheck('artifacts[1].type', 'Custom')
+ # create a managedapp definition with inline params for create-ui-definition and main-template
+ self.kwargs['ad_id'] = self.cmd('managedapp definition create -n {adn} --create-ui-definition @"{ui_file}" --main-template @"{main_file}" --display-name {addn} --description {ad_desc} -l {loc} -a {auth} --lock-level {lock} -g {rg}', checks=[
+ self.check('name', '{adn}'),
+ self.check('displayName', '{addn}'),
+ self.check('description', '{ad_desc}'),
+ self.check('authorizations[0].principalId', '5e91139a-c94b-462e-a6ff-1ee95e8aac07'),
+ self.check('authorizations[0].roleDefinitionId', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635'),
+ self.check('artifacts[0].name', 'ApplicationResourceTemplate'),
+ self.check('artifacts[0].type', 'Template'),
+ self.check('artifacts[1].name', 'CreateUiDefinition'),
+ self.check('artifacts[1].type', 'Custom')
+ ]).get_output_in_json()['id']
+
+ self.cmd('managedapp definition list -g {rg}',
+ checks=self.check('[0].name', '{adn}'))
+
+ self.cmd('managedapp definition show --ids {ad_id}', checks=[
+ self.check('name', '{adn}'),
+ self.check('displayName', '{addn}'),
+ self.check('description', '{ad_desc}'),
+ self.check('authorizations[0].principalId', '5e91139a-c94b-462e-a6ff-1ee95e8aac07'),
+ self.check('authorizations[0].roleDefinitionId', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635'),
+ self.check('artifacts[0].name', 'ApplicationResourceTemplate'),
+ self.check('artifacts[0].type', 'Template'),
+ self.check('artifacts[1].name', 'CreateUiDefinition'),
+ self.check('artifacts[1].type', 'Custom')
])
- # delete
- self.cmd('managedapp definition delete -g {} -n {}'.format(resource_group, appdef_name))
- self.cmd('managedapp definition list -g {}'.format(resource_group), checks=NoneCheck())
+ self.cmd('managedapp definition delete -g {rg} -n {adn}')
+ self.cmd('managedapp definition list -g {rg}', checks=self.is_empty())
class ManagedAppScenarioTest(ScenarioTest):
@ResourceGroupPreparer()
def test_managedapp(self, resource_group):
- location = 'westcentralus'
- appdef_name = 'testappdefname'
- appdef_display_name = 'test_appdef_123'
- appdef_description = 'test_appdef_123'
- packageUri = 'https:\/\/wud.blob.core.windows.net\/appliance\/SingleStorageAccount.zip'
- auth = '5e91139a-c94b-462e-a6ff-1ee95e8aac07:8e3af657-a8ff-443c-a75c-2fe8c4bcb635'
- lock = 'None'
- # create a managedapp definition
- create_cmd = 'managedapp definition create -n {} --package-file-uri {} --display-name {} --description {} -l {} -a {} --lock-level {} -g {}'
- managedappdef = self.cmd(create_cmd.format(appdef_name, packageUri, appdef_display_name,
- appdef_description, location, auth, lock,
- resource_group)).get_output_in_json()
+ self.kwargs.update({
+ 'loc': 'westcentralus',
+ 'adn': 'testappdefname',
+ 'addn': 'test_appdef_123',
+ 'ad_desc': 'test_appdef_123',
+ 'uri': 'https:\/\/wud.blob.core.windows.net\/appliance\/SingleStorageAccount.zip',
+ 'auth': '5e91139a-c94b-462e-a6ff-1ee95e8aac07:8e3af657-a8ff-443c-a75c-2fe8c4bcb635',
+ 'lock': 'None',
+ 'sub': self.get_subscription_id()
+ })
+
+ self.kwargs['ad_id'] = self.cmd('managedapp definition create -n {adn} --package-file-uri {uri} --display-name {addn} --description {ad_desc} -l {loc} -a {auth} --lock-level {lock} -g {rg}').get_output_in_json()['id']
# create a managedapp
- managedapp_name = 'mymanagedapp'
- managedapp_loc = 'westcentralus'
- managedapp_kind = 'servicecatalog'
- newrg = self.create_random_name('climanagedapp', 25)
- managedrg = '/subscriptions/{}/resourceGroups/{}'.format(managedappdef['id'].split("/")[2], newrg)
- create_cmd = 'managedapp create -n {} -g {} -l {} --kind {} -m {} -d {}'
- app = self.cmd(create_cmd.format(managedapp_name, resource_group, managedapp_loc, managedapp_kind, managedrg,
- managedappdef['id']), checks=[
- JCheck('name', managedapp_name),
- JCheck('type', 'Microsoft.Solutions/applications'),
- JCheck('kind', 'servicecatalog'),
- JCheck('managedResourceGroupId', managedrg)
- ]).get_output_in_json()
-
- # list and show
- list_byrg_cmd = 'managedapp list -g {}'
- self.cmd(list_byrg_cmd.format(resource_group), checks=[
- JCheck('[0].name', managedapp_name)
- ])
-
- show_cmd = 'managedapp show --ids {}'
- self.cmd(show_cmd.format(app['id']), checks=[
- JCheck('name', managedapp_name),
- JCheck('type', 'Microsoft.Solutions/applications'),
- JCheck('kind', 'servicecatalog'),
- JCheck('managedResourceGroupId', managedrg)
- ])
-
- # delete
- self.cmd('managedapp delete -g {} -n {}'.format(resource_group, managedapp_name))
- self.cmd('managedapp list -g {}'.format(resource_group), checks=NoneCheck())
+ self.kwargs.update({
+ 'man': 'mymanagedapp',
+ 'ma_loc': 'westcentralus',
+ 'ma_kind': 'servicecatalog',
+ 'ma_rg': self.create_random_name('climanagedapp', 25)
+ })
+ self.kwargs['ma_rg_id'] = '/subscriptions/{sub}/resourceGroups/{ma_rg}'.format(**self.kwargs)
+
+ self.kwargs['ma_id'] = self.cmd('managedapp create -n {man} -g {rg} -l {ma_loc} --kind {ma_kind} -m {ma_rg_id} -d {ad_id}', checks=[
+ self.check('name', '{man}'),
+ self.check('type', 'Microsoft.Solutions/applications'),
+ self.check('kind', 'servicecatalog'),
+ self.check('managedResourceGroupId', '{ma_rg_id}')
+ ]).get_output_in_json()['id']
+
+ self.cmd('managedapp list -g {rg}', checks=self.check('[0].name', '{man}'))
+
+ self.cmd('managedapp show --ids {ma_id}', checks=[
+ self.check('name', '{man}'),
+ self.check('type', 'Microsoft.Solutions/applications'),
+ self.check('kind', 'servicecatalog'),
+ self.check('managedResourceGroupId', '{ma_rg_id}')
+ ])
+
+ self.cmd('managedapp delete -g {rg} -n {man}')
+ self.cmd('managedapp list -g {rg}', checks=self.is_empty())
class CrossRGDeploymentScenarioTest(ScenarioTest):
+
@ResourceGroupPreparer(name_prefix='cli_test_cross_rg_alt', parameter_name='resource_group_cross')
@ResourceGroupPreparer(name_prefix='cli_test_cross_rg_deploy')
def test_group_deployment_crossrg(self, resource_group, resource_group_cross):
curr_dir = os.path.dirname(os.path.realpath(__file__))
- template_file = os.path.join(curr_dir, 'crossrg_deploy.json').replace('\\', '\\\\')
- deployment_name = self.create_random_name('azure-cli-crossrgdeployment', 40)
- storage_account_1 = create_random_name(prefix='crossrg')
- storage_account_2 = create_random_name(prefix='crossrg')
- self.cmd(
- 'group deployment validate -g {} --template-file {} --parameters CrossRg={} StorageAccountName1={} StorageAccountName2={}'.format(
- resource_group, template_file, resource_group_cross, storage_account_1, storage_account_2), checks=[
- JCheck('properties.provisioningState', 'Succeeded')
- ])
- self.cmd('group deployment create -g {} -n {} --template-file {} --parameters CrossRg={}'.format(
- resource_group, deployment_name, template_file, resource_group_cross), checks=[
- JCheck('properties.provisioningState', 'Succeeded'),
- JCheck('resourceGroup', resource_group),
+ self.kwargs.update({
+ 'rg1': resource_group,
+ 'rg2': resource_group_cross,
+ 'tf': os.path.join(curr_dir, 'crossrg_deploy.json').replace('\\', '\\\\'),
+ 'dn': self.create_random_name('azure-cli-crossrgdeployment', 40),
+ 'sa1': create_random_name(prefix='crossrg'),
+ 'sa2': create_random_name(prefix='crossrg')
+ })
+
+ self.cmd('group deployment validate -g {rg1} --template-file "{tf}" --parameters CrossRg={rg2} StorageAccountName1={sa1} StorageAccountName2={sa2}', checks=[
+ self.check('properties.provisioningState', 'Succeeded')
+ ])
+ self.cmd('group deployment create -g {rg1} -n {dn} --template-file "{tf}" --parameters CrossRg={rg2}', checks=[
+ self.check('properties.provisioningState', 'Succeeded'),
+ self.check('resourceGroup', '{rg1}'),
])
- self.cmd('group deployment list -g {}'.format(resource_group), checks=[
- JCheck('[0].name', deployment_name),
- JCheck('[0].resourceGroup', resource_group)
+ self.cmd('group deployment list -g {rg1}', checks=[
+ self.check('[0].name', '{dn}'),
+ self.check('[0].resourceGroup', '{rg1}')
])
- self.cmd('group deployment show -g {} -n {}'.format(resource_group, deployment_name), checks=[
- JCheck('name', deployment_name),
- JCheck('resourceGroup', resource_group)
+ self.cmd('group deployment show -g {rg1} -n {dn}', checks=[
+ self.check('name', '{dn}'),
+ self.check('resourceGroup', '{rg1}')
])
- self.cmd('group deployment operation list -g {} -n {}'.format(resource_group, deployment_name), checks=[
- JCheck('length([])', 3),
- JCheck('[0].resourceGroup', resource_group)
+ self.cmd('group deployment operation list -g {rg1} -n {dn}', checks=[
+ self.check('length([])', 3),
+ self.check('[0].resourceGroup', '{rg1}')
])
class InvokeActionTest(ScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_test_invoke_action')
def test_invoke_action(self, resource_group):
- vm_name = self.create_random_name('cli-test-vm', 30)
- username = 'ubuntu'
- password = self.create_random_name('Longpassword#1', 30)
- vm_json = self.cmd('vm create -g {} -n {} --use-unmanaged-disk --image UbuntuLTS --admin-username {} '
- '--admin-password {} --authentication-type {}'
- .format(resource_group, vm_name, username, password, 'password')).get_output_in_json()
+ self.kwargs.update({
+ 'vm': self.create_random_name('cli-test-vm', 30),
+ 'user': 'ubuntu',
+ 'pass': self.create_random_name('Longpassword#1', 30)
+ })
- vm_id = vm_json.get('id', None)
+ self.kwargs['vm_id'] = self.cmd('vm create -g {rg} -n {vm} --use-unmanaged-disk --image UbuntuLTS --admin-username {user} --admin-password {pass} --authentication-type password').get_output_in_json()['id']
- self.cmd('resource invoke-action --action powerOff --ids {}'.format(vm_id))
- self.cmd('resource invoke-action --action generalize --ids {}'.format(vm_id))
- self.cmd('resource invoke-action --action deallocate --ids {}'.format(vm_id))
+ self.cmd('resource invoke-action --action powerOff --ids {vm_id}')
+ self.cmd('resource invoke-action --action generalize --ids {vm_id}')
+ self.cmd('resource invoke-action --action deallocate --ids {vm_id}')
- request_body = '{\\"vhdPrefix\\":\\"myPrefix\\",\\"destinationContainerName\\":\\"container\\",' \
- '\\"overwriteVhds\\":\\"true\\"}'
+ request_body = '{\\"vhdPrefix\\":\\"myPrefix\\",\\"destinationContainerName\\":\\"container\\",\\"overwriteVhds\\":\\"true\\"}'
- self.cmd('resource invoke-action --action capture --ids {} --request-body {}'.format(vm_id, request_body))
+ self.cmd('resource invoke-action --action capture --ids {} --request-body {}'.format(self.kwargs['vm_id'], request_body))
if __name__ == '__main__':
diff --git a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_resource_validators.py b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_resource_validators.py
index de7a57d003f..3cb56f77d22 100644
--- a/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_resource_validators.py
+++ b/src/command_modules/azure-cli-resource/azure/cli/command_modules/resource/tests/test_resource_validators.py
@@ -8,7 +8,7 @@
import mock
from six import StringIO
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.resource._validators import (
_validate_deployment_name,
validate_lock_parameters,
@@ -19,7 +19,7 @@ class NamespaceObject:
pass
-class Test_resource_validators(unittest.TestCase):
+class TestResourceValidators(unittest.TestCase):
def setUp(self):
self.io = StringIO()
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/__init__.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/__init__.py
index b689d29dc8f..acbb9426eff 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/__init__.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/__init__.py
@@ -3,12 +3,28 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+
import azure.cli.command_modules.role._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.role._params # pylint: disable=redefined-outer-name, unused-variable
+class RoleCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ from azure.cli.core.sdk.util import CliCommandType
+ role_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.role.custom#{}')
+ super(RoleCommandsLoader, self).__init__(cli_ctx=cli_ctx, custom_command_type=role_custom)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(RoleCommandsLoader, self).load_command_table(args)
+ from azure.cli.command_modules.role.commands import load_command_table
+ load_command_table(self, args)
+ return self.command_table
+ def load_arguments(self, command):
+ super(RoleCommandsLoader, self).load_arguments(command)
+ from azure.cli.command_modules.role._params import load_arguments
+ load_arguments(self, command)
-def load_commands():
- import azure.cli.command_modules.role.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = RoleCommandsLoader
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_client_factory.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_client_factory.py
index f51f751cfdd..a6dee3da20a 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_client_factory.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_client_factory.py
@@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
-def _auth_client_factory(scope=None):
+def _auth_client_factory(cli_ctx, scope=None):
import re
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.authorization import AuthorizationManagementClient
@@ -13,18 +13,17 @@ def _auth_client_factory(scope=None):
matched = re.match('/subscriptions/(?P[^/]*)/', scope)
if matched:
subscription_id = matched.groupdict()['subscription']
- return get_mgmt_service_client(AuthorizationManagementClient, subscription_id=subscription_id)
+ return get_mgmt_service_client(cli_ctx, AuthorizationManagementClient, subscription_id=subscription_id)
-def _graph_client_factory(**_):
- from azure.cli.core._profile import Profile, CLOUD
+def _graph_client_factory(cli_ctx, **_):
+ from azure.cli.core._profile import Profile
from azure.cli.core.commands.client_factory import configure_common_settings
from azure.graphrbac import GraphRbacManagementClient
- profile = Profile()
+ profile = Profile(cli_ctx)
cred, _, tenant_id = profile.get_login_credentials(
- resource=CLOUD.endpoints.active_directory_graph_resource_id)
- client = GraphRbacManagementClient(cred,
- tenant_id,
- base_url=CLOUD.endpoints.active_directory_graph_resource_id)
- configure_common_settings(client)
+ resource=cli_ctx.cloud.endpoints.active_directory_graph_resource_id)
+ client = GraphRbacManagementClient(cred, tenant_id,
+ base_url=cli_ctx.cloud.endpoints.active_directory_graph_resource_id)
+ configure_common_settings(cli_ctx, client)
return client
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_help.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_help.py
index 22acd5f0bb7..136b8fd8bd1 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_help.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps # pylint: disable=unused-import
+from knack.help_files import helps # pylint: disable=unused-import
helps['ad sp create-for-rbac'] = """
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_params.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_params.py
index 461ccb94d20..b67a05b6ce6 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_params.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_params.py
@@ -4,70 +4,104 @@
# --------------------------------------------------------------------------------------------
# pylint: disable=line-too-long
-from azure.cli.core.commands import CliArgumentType
-from azure.cli.core.commands import register_cli_argument
-from azure.cli.core.commands.parameters import enum_choice_list
+from azure.cli.core.commands.parameters import get_enum_type, get_three_state_flag
+
+from knack.arguments import CLIArgumentType
+
from .custom import get_role_definition_name_completion_list
from ._validators import validate_group, validate_member_id, validate_cert, VARIANT_GROUP_ID_ARGS
-register_cli_argument('ad app', 'app_id', help='application id')
-register_cli_argument('ad app', 'application_object_id', options_list=('--object-id',))
-register_cli_argument('ad app', 'display_name', help='the display name of the application')
-register_cli_argument('ad app', 'homepage', help='the url where users can sign in and use your app.')
-register_cli_argument('ad app', 'identifier', options_list=('--id',), help='identifier uri, application id, or object id')
-register_cli_argument('ad app', 'identifier_uris', nargs='+', help='space separated unique URIs that Azure AD can use for this app.')
-register_cli_argument('ad app', 'reply_urls', nargs='+', help='space separated URIs to which Azure AD will redirect in response to an OAuth 2.0 request. The value does not need to be a physical endpoint, but must be a valid URI.')
-register_cli_argument('ad app', 'start_date', help="Date or datetime at which credentials become valid(e.g. '2017-01-01T01:00:00+00:00' or '2017-01-01'). Default value is current time")
-register_cli_argument('ad app', 'end_date', help="Date or datetime after which credentials expire(e.g. '2017-12-31T11:59:59+00:00' or '2017-12-31'). Default value is one year after current time")
-register_cli_argument('ad app', 'available_to_other_tenants', action='store_true', help='the application can be used from any Azure AD tenants')
-register_cli_argument('ad app', 'key_value', help='the value for the key credentials associated with the application')
-# TODO: Update these with **enum_choice_list(...) when SDK supports proper enums
-register_cli_argument('ad app', 'key_type', default='AsymmetricX509Cert', help='the type of the key credentials associated with the application', **enum_choice_list(['AsymmetricX509Cert', 'Password', 'Symmetric']))
-register_cli_argument('ad app', 'key_usage', default='Verify', help='the usage of the key credentials associated with the application.', **enum_choice_list(['Sign', 'Verify']))
-
-name_arg_type = CliArgumentType(options_list=('--name', '-n'), metavar='NAME')
-
-register_cli_argument('ad sp', 'identifier', options_list=('--id',), help='service principal name, or object id')
-register_cli_argument('ad sp create', 'identifier', options_list=('--id',), help='identifier uri, application id, or object id of the associated application')
-register_cli_argument('ad sp create-for-rbac', 'scopes', nargs='+')
-register_cli_argument('ad sp create-for-rbac', 'role', completer=get_role_definition_name_completion_list)
-register_cli_argument('ad sp create-for-rbac', 'skip_assignment', action='store_true', help='do not create default assignment')
-register_cli_argument('ad sp create-for-rbac', 'show_auth_for_sdk', options_list='--sdk-auth', action='store_true', help='output result in compatible with Azure SDK auth file')
-
-for item in ['create-for-rbac', 'reset-credentials']:
- register_cli_argument('ad sp {}'.format(item), 'name', name_arg_type)
- register_cli_argument('ad sp {}'.format(item), 'cert', arg_group='Credential', validator=validate_cert)
- register_cli_argument('ad sp {}'.format(item), 'password', options_list=('--password', '-p'), arg_group='Credential')
- register_cli_argument('ad sp {}'.format(item), 'years', type=int, default=None, arg_group='Credential')
- register_cli_argument('ad sp {}'.format(item), 'create_cert', action='store_true', arg_group='Credential')
- register_cli_argument('ad sp {}'.format(item), 'keyvault', arg_group='Credential')
-
-register_cli_argument('ad', 'display_name', help='object\'s display name or its prefix')
-register_cli_argument('ad', 'identifier_uri', help='graph application identifier, must be in uri format')
-register_cli_argument('ad', 'spn', help='service principal name')
-register_cli_argument('ad', 'upn', help='user principal name, e.g. john.doe@contoso.com')
-register_cli_argument('ad', 'query_filter', options_list=('--filter',), help='OData filter')
-register_cli_argument('ad user', 'mail_nickname', help='mail alias. Defaults to user principal name')
-register_cli_argument('ad user', 'force_change_password_next_login', action='store_true')
-
-group_help_msg = "group's object id or display name(prefix also works if there is a unique match)"
-for arg in VARIANT_GROUP_ID_ARGS:
- register_cli_argument('ad group', arg, options_list=('--group', '-g'), validator=validate_group, help=group_help_msg)
-
-register_cli_argument('ad group get-member-groups', 'security_enabled_only', action='store_true', default=False, required=False)
-member_id_help_msg = 'The object ID of the contact, group, user, or service principal'
-register_cli_argument('ad group member add', 'url', options_list='--member-id', validator=validate_member_id, help=member_id_help_msg)
-register_cli_argument('ad group member', 'member_object_id', options_list='--member-id', help=member_id_help_msg)
-
-register_cli_argument('role', 'scope', help='scope at which the role assignment or definition applies to, e.g., /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333, /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333/resourceGroups/myGroup, or /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333/resourceGroups/myGroup/providers/Microsoft.Compute/virtualMachines/myVM')
-register_cli_argument('role assignment', 'role_assignment_name', options_list=('--name', '-n'))
-register_cli_argument('role assignment', 'role', help='role name or id', completer=get_role_definition_name_completion_list)
-register_cli_argument('role assignment', 'show_all', options_list=('--all',), action='store_true', help='show all assignments under the current subscription')
-register_cli_argument('role assignment', 'include_inherited', action='store_true', help='include assignments applied on parent scopes')
-register_cli_argument('role assignment', 'assignee', help='represent a user, group, or service principal. supported format: object id, user sign-in name, or service principal name')
-register_cli_argument('role assignment', 'ids', nargs='+', help='space separated role assignment ids')
-register_cli_argument('role definition', 'role_definition_id', options_list=('--name', '-n'), help='the role definition name')
-register_cli_argument('role', 'resource_group_name', options_list=('--resource-group', '-g'), help='use it only if the role or assignment was added at the level of a resource group')
-register_cli_argument('role definition', 'custom_role_only', action='store_true', help='custom roles only(vs. build-in ones)')
-register_cli_argument('role definition', 'role_definition', help="json formatted content which defines the new role.")
-register_cli_argument('role definition', 'name', arg_type=name_arg_type, completer=get_role_definition_name_completion_list, help="the role's name")
+
+name_arg_type = CLIArgumentType(options_list=('--name', '-n'), metavar='NAME')
+
+
+# pylint: disable=too-many-statements
+def load_arguments(self, _):
+ with self.argument_context('ad app') as c:
+ c.argument('app_id', help='application id')
+ c.argument('application_object_id', options_list=('--object-id',))
+ c.argument('display_name', help='the display name of the application')
+ c.argument('homepage', help='the url where users can sign in and use your app.')
+ c.argument('identifier', options_list=['--id'], help='identifier uri, application id, or object id')
+ c.argument('identifier_uris', nargs='+', help='space separated unique URIs that Azure AD can use for this app.')
+ c.argument('reply_urls', nargs='+', help='space separated URIs to which Azure AD will redirect in response to an OAuth 2.0 request. The value does not need to be a physical endpoint, but must be a valid URI.')
+ c.argument('start_date', help="Date or datetime at which credentials become valid(e.g. '2017-01-01T01:00:00+00:00' or '2017-01-01'). Default value is current time")
+ c.argument('end_date', help="Date or datetime after which credentials expire(e.g. '2017-12-31T11:59:59+00:00' or '2017-12-31'). Default value is one year after current time")
+ c.argument('available_to_other_tenants', help='the application can be used from any Azure AD tenants', arg_type=get_three_state_flag())
+ c.argument('key_value', help='the value for the key credentials associated with the application')
+ # TODO: Update these with **enum_choice_list(...) when SDK supports proper enums
+ c.argument('key_type', help='the type of the key credentials associated with the application', arg_type=get_enum_type(['AsymmetricX509Cert', 'Password', 'Symmetric'], default='AsymmetricX509Cert'))
+ c.argument('key_usage', help='the usage of the key credentials associated with the application.', arg_type=get_enum_type(['Sign', 'Verify'], default='Verify'))
+
+ with self.argument_context('ad sp') as c:
+ c.argument('identifier', options_list=['--id'], help='service principal name, or object id')
+
+ with self.argument_context('ad sp create') as c:
+ c.argument('identifier', options_list=['--id'], help='identifier uri, application id, or object id of the associated application')
+
+ with self.argument_context('ad sp create-for-rbac') as c:
+ c.argument('scopes', nargs='+')
+ c.argument('role', completer=get_role_definition_name_completion_list)
+ c.argument('skip_assignment', arg_type=get_three_state_flag(), help='do not create default assignment')
+ c.argument('show_auth_for_sdk', options_list='--sdk-auth', help='output result in compatible with Azure SDK auth file', arg_type=get_three_state_flag())
+
+ for item in ['create-for-rbac', 'reset-credentials']:
+ with self.argument_context('ad sp {}'.format(item)) as c:
+ c.argument('name', name_arg_type)
+ c.argument('cert', arg_group='Credential', validator=validate_cert)
+ c.argument('password', options_list=['--password', '-p'], arg_group='Credential')
+ c.argument('years', type=int, default=None, arg_group='Credential')
+ c.argument('create_cert', action='store_true', arg_group='Credential')
+ c.argument('keyvault', arg_group='Credential')
+
+ with self.argument_context('ad') as c:
+ c.argument('display_name', help='object\'s display name or its prefix')
+ c.argument('identifier_uri', help='graph application identifier, must be in uri format')
+ c.argument('spn', help='service principal name')
+ c.argument('upn', help='user principal name, e.g. john.doe@contoso.com')
+ c.argument('query_filter', options_list=['--filter'], help='OData filter')
+
+ with self.argument_context('ad user') as c:
+ c.argument('mail_nickname', help='mail alias. Defaults to user principal name')
+ c.argument('force_change_password_next_login', arg_type=get_three_state_flag())
+
+ group_help_msg = "group's object id or display name(prefix also works if there is a unique match)"
+ with self.argument_context('ad group') as c:
+ for arg in VARIANT_GROUP_ID_ARGS:
+ c.argument(arg, options_list=['--group', '-g'], validator=validate_group, help=group_help_msg)
+
+ with self.argument_context('ad group show') as c:
+ c.extra('cmd')
+
+ member_id_help_msg = 'The object ID of the contact, group, user, or service principal'
+ with self.argument_context('ad group get-member-groups') as c:
+ c.argument('security_enabled_only', arg_type=get_three_state_flag(), default=False, required=False)
+ c.extra('cmd')
+
+ with self.argument_context('ad group member add') as c:
+ c.argument('url', options_list='--member-id', validator=validate_member_id, help=member_id_help_msg)
+
+ for item in ['member add', 'member check', 'member list', 'member remove', 'delete']:
+ with self.argument_context('ad group {}'.format(item)) as c:
+ c.extra('cmd')
+
+ with self.argument_context('ad group member') as c:
+ c.argument('member_object_id', options_list='--member-id', help=member_id_help_msg)
+
+ with self.argument_context('role') as c:
+ c.argument('scope', help='scope at which the role assignment or definition applies to, e.g., /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333, /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333/resourceGroups/myGroup, or /subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333/resourceGroups/myGroup/providers/Microsoft.Compute/virtualMachines/myVM')
+ c.argument('resource_group_name', options_list=['--resource-group', '-g'], help='use it only if the role or assignment was added at the level of a resource group')
+
+ with self.argument_context('role assignment') as c:
+ c.argument('role_assignment_name', options_list=['--name', '-n'])
+ c.argument('role', help='role name or id', completer=get_role_definition_name_completion_list)
+ c.argument('show_all', options_list=['--all'], action='store_true', help='show all assignments under the current subscription')
+ c.argument('include_inherited', action='store_true', help='include assignments applied on parent scopes')
+ c.argument('assignee', help='represent a user, group, or service principal. supported format: object id, user sign-in name, or service principal name')
+ c.argument('ids', nargs='+', help='space separated role assignment ids')
+
+ with self.argument_context('role definition') as c:
+ c.argument('role_definition_id', options_list=['--name', '-n'], help='the role definition name')
+ c.argument('custom_role_only', arg_type=get_three_state_flag(), help='custom roles only(vs. build-in ones)')
+ c.argument('role_definition', help="json formatted content which defines the new role.")
+ c.argument('name', arg_type=name_arg_type, completer=get_role_definition_name_completion_list, help="the role's name")
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_validators.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_validators.py
index 36dfcfa5277..af4990dfc77 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_validators.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/_validators.py
@@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
import uuid
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from ._client_factory import _graph_client_factory
VARIANT_GROUP_ID_ARGS = ['object_id', 'group_id', 'group_object_id']
@@ -17,7 +17,7 @@ def validate_group(namespace):
try:
uuid.UUID(value)
except ValueError:
- client = _graph_client_factory()
+ client = _graph_client_factory(namespace.cmd.cli_ctx)
sub_filters = []
sub_filters.append("startswith(displayName,'{}')".format(value))
sub_filters.append("displayName eq '{}'".format(value))
@@ -32,12 +32,13 @@ def validate_group(namespace):
def validate_member_id(namespace):
- from azure.cli.core._profile import Profile, CLOUD
+ from azure.cli.core._profile import Profile
+ cli_ctx = namespace.cmd.cli_ctx
try:
uuid.UUID(namespace.url)
- profile = Profile()
+ profile = Profile(cli_ctx)
_, _, tenant_id = profile.get_login_credentials()
- graph_url = CLOUD.endpoints.active_directory_graph_resource_id
+ graph_url = cli_ctx.cloud.endpoints.active_directory_graph_resource_id
namespace.url = '{}{}/directoryObjects/{}'.format(graph_url, tenant_id,
namespace.url)
except ValueError:
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/commands.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/commands.py
index 8cb4d3f2ede..5406e33323a 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/commands.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/commands.py
@@ -6,8 +6,9 @@
from collections import OrderedDict
-from azure.cli.core.commands import cli_command
-from azure.cli.core.profiles import supported_api_version, PROFILE_TYPE
+from azure.cli.core.profiles import PROFILE_TYPE
+from azure.cli.core.sdk.util import CliCommandType
+
from azure.cli.core.util import empty_on_404
from ._client_factory import (_auth_client_factory, _graph_client_factory)
@@ -29,100 +30,83 @@ def get_role_definition_op(operation_name):
'#RoleDefinitionsOperations.{}'.format(operation_name)
-def get_role_definitions(_):
- return _auth_client_factory().role_definitions
+def get_role_definitions(cli_ctx, _):
+ return _auth_client_factory(cli_ctx, ).role_definitions
+
+
+def get_graph_client_applications(cli_ctx, _):
+ return _graph_client_factory(cli_ctx).applications
+
+def get_graph_client_service_principals(cli_ctx, _):
+ return _graph_client_factory(cli_ctx).service_principals
-def get_graph_client_applications(_):
- return _graph_client_factory().applications
+def get_graph_client_users(cli_ctx, _):
+ return _graph_client_factory(cli_ctx).users
-def get_graph_client_service_principals(_):
- return _graph_client_factory().service_principals
+def get_graph_client_groups(cli_ctx, _):
+ return _graph_client_factory(cli_ctx).groups
-def get_graph_client_users(_):
- return _graph_client_factory().users
+# pylint: disable=line-too-long
+def load_command_table(self, _):
-def get_graph_client_groups(_):
- return _graph_client_factory().groups
+ role_users_sdk = CliCommandType(
+ operations_tmpl='azure.graphrbac.operations.users_operations#UsersOperations.{}',
+ client_factory=get_graph_client_users
+ )
+ role_group_sdk = CliCommandType(
+ operations_tmpl='azure.graphrbac.operations.groups_operations#GroupsOperations.{}',
+ client_factory=get_graph_client_groups
+ )
-cli_command(__name__, 'role definition list',
- 'azure.cli.command_modules.role.custom#list_role_definitions',
- table_transformer=transform_definition_list)
-cli_command(__name__, 'role definition delete',
- 'azure.cli.command_modules.role.custom#delete_role_definition')
-cli_command(__name__, 'role definition create',
- 'azure.cli.command_modules.role.custom#create_role_definition')
-cli_command(__name__, 'role definition update',
- 'azure.cli.command_modules.role.custom#update_role_definition')
+ with self.command_group('role definition') as g:
+ g.custom_command('list', 'list_role_definitions', table_transformer=transform_definition_list)
+ g.custom_command('delete', 'delete_role_definition')
+ g.custom_command('create', 'create_role_definition')
+ g.custom_command('update', 'update_role_definition')
-cli_command(__name__, 'role assignment delete',
- 'azure.cli.command_modules.role.custom#delete_role_assignments')
-cli_command(__name__, 'role assignment list',
- 'azure.cli.command_modules.role.custom#list_role_assignments',
- table_transformer=transform_assignment_list)
-cli_command(__name__, 'role assignment create',
- 'azure.cli.command_modules.role.custom#create_role_assignment')
+ with self.command_group('role assignment') as g:
+ g.custom_command('delete', 'delete_role_assignments')
+ g.custom_command('list', 'list_role_assignments', table_transformer=transform_assignment_list)
+ g.custom_command('create', 'create_role_assignment')
-if not supported_api_version(PROFILE_TYPE, max_api='2017-03-09-profile'):
- cli_command(__name__, 'ad app create', 'azure.cli.command_modules.role.custom#create_application',
- get_graph_client_applications)
- cli_command(__name__, 'ad app delete', 'azure.cli.command_modules.role.custom#delete_application',
- get_graph_client_applications)
- cli_command(__name__, 'ad app list', 'azure.cli.command_modules.role.custom#list_apps',
- get_graph_client_applications)
- cli_command(__name__, 'ad app show', 'azure.cli.command_modules.role.custom#show_application',
- get_graph_client_applications, exception_handler=empty_on_404)
- cli_command(__name__, 'ad app update', 'azure.cli.command_modules.role.custom#update_application',
- get_graph_client_applications)
+ with self.command_group('ad app', client_factory=get_graph_client_applications, resource_type=PROFILE_TYPE, min_api='2017-03-10') as g:
+ g.custom_command('create', 'create_application')
+ g.custom_command('delete', 'delete_application')
+ g.custom_command('list', 'list_apps')
+ g.custom_command('show', 'show_application', exception_handler=empty_on_404)
+ g.custom_command('update', 'update_application')
- cli_command(__name__, 'ad sp create',
- 'azure.cli.command_modules.role.custom#create_service_principal')
- cli_command(__name__, 'ad sp delete',
- 'azure.cli.command_modules.role.custom#delete_service_principal')
- cli_command(__name__, 'ad sp list', 'azure.cli.command_modules.role.custom#list_sps',
- get_graph_client_service_principals)
- cli_command(__name__, 'ad sp show', 'azure.cli.command_modules.role.custom#show_service_principal',
- get_graph_client_service_principals, exception_handler=empty_on_404)
+ with self.command_group('ad sp', resource_type=PROFILE_TYPE, min_api='2017-03-10') as g:
+ g.custom_command('create', 'create_service_principal')
+ g.custom_command('delete', 'delete_service_principal')
+ g.custom_command('list', 'list_sps', client_factory=get_graph_client_service_principals)
+ g.custom_command('show', 'show_service_principal', client_factory=get_graph_client_service_principals, exception_handler=empty_on_404)
# RBAC related
- cli_command(__name__, 'ad sp create-for-rbac',
- 'azure.cli.command_modules.role.custom#create_service_principal_for_rbac')
- cli_command(__name__, 'ad sp reset-credentials',
- 'azure.cli.command_modules.role.custom#reset_service_principal_credential')
-
- cli_command(__name__, 'ad user delete',
- 'azure.graphrbac.operations.users_operations#UsersOperations.delete',
- get_graph_client_users)
- cli_command(__name__, 'ad user show',
- 'azure.graphrbac.operations.users_operations#UsersOperations.get',
- get_graph_client_users,
- exception_handler=empty_on_404)
- cli_command(__name__, 'ad user list', 'azure.cli.command_modules.role.custom#list_users',
- get_graph_client_users)
- cli_command(__name__, 'ad user create', 'azure.cli.command_modules.role.custom#create_user',
- get_graph_client_users)
-
- group_path = 'azure.graphrbac.operations.groups_operations#GroupsOperations.{}'
- cli_command(__name__, 'ad group create', group_path.format('create'), get_graph_client_groups)
- cli_command(__name__, 'ad group delete', group_path.format('delete'), get_graph_client_groups)
- cli_command(__name__, 'ad group show', group_path.format('get'), get_graph_client_groups,
- exception_handler=empty_on_404)
- cli_command(__name__, 'ad group list',
- 'azure.cli.command_modules.role.custom#list_groups',
- get_graph_client_groups)
-
- cli_command(__name__, 'ad group get-member-groups', group_path.format('get_member_groups'),
- get_graph_client_groups)
-
- cli_command(__name__, 'ad group member list', group_path.format('get_group_members'),
- get_graph_client_groups)
- cli_command(__name__, 'ad group member add', group_path.format('add_member'),
- get_graph_client_groups)
- cli_command(__name__, 'ad group member remove', group_path.format('remove_member'),
- get_graph_client_groups)
- cli_command(__name__, 'ad group member check', group_path.format('is_member_of'),
- get_graph_client_groups)
+ with self.command_group('ad sp') as g:
+ g.custom_command('create-for-rbac', 'create_service_principal_for_rbac')
+ g.custom_command('reset-credentials', 'reset_service_principal_credential')
+
+ with self.command_group('ad user', role_users_sdk) as g:
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_users', client_factory=get_graph_client_users)
+ g.custom_command('create', 'create_user', client_factory=get_graph_client_users, doc_string_source='azure.graphrbac.models#UserCreateParameters')
+
+ with self.command_group('ad group', role_group_sdk) as g:
+ g.command('create', 'create')
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('get-member-groups', 'get_member_groups')
+ g.custom_command('list', 'list_groups', client_factory=get_graph_client_groups)
+
+ with self.command_group('ad group member', role_group_sdk) as g:
+ g.command('list', 'get_group_members')
+ g.command('add', 'add_member')
+ g.command('remove', 'remove_member')
+ g.command('check', 'is_member_of')
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/custom.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/custom.py
index f196f46b924..cde682a5816 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/custom.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/custom.py
@@ -12,8 +12,7 @@
from dateutil.relativedelta import relativedelta
import dateutil.parser
-from azure.cli.core.util import CLIError, todict, get_file_json, shell_safe_json_parse
-from azure.cli.core import get_az_logger
+from azure.cli.core.util import get_file_json, shell_safe_json_parse
from azure.mgmt.authorization.models import (RoleAssignmentProperties, Permission, RoleDefinition,
RoleDefinitionProperties)
@@ -26,36 +25,39 @@
PasswordProfile,
ServicePrincipalCreateParameters)
+from knack.log import get_logger
+from knack.util import CLIError, todict
+
from ._client_factory import _auth_client_factory, _graph_client_factory
-logger = get_az_logger(__name__)
+logger = get_logger(__name__)
_CUSTOM_RULE = 'CustomRole'
-def list_role_definitions(name=None, resource_group_name=None, scope=None,
+def list_role_definitions(cmd, name=None, resource_group_name=None, scope=None,
custom_role_only=False):
- definitions_client = _auth_client_factory(scope).role_definitions
+ definitions_client = _auth_client_factory(cmd.cli_ctx, scope).role_definitions
scope = _build_role_scope(resource_group_name, scope,
definitions_client.config.subscription_id)
return _search_role_definitions(definitions_client, name, scope, custom_role_only)
-def get_role_definition_name_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- definitions = list_role_definitions()
+def get_role_definition_name_completion_list(cmd, prefix, **kwargs): # pylint: disable=unused-argument
+ definitions = list_role_definitions(cmd)
return [x.properties.role_name for x in list(definitions)]
-def create_role_definition(role_definition):
- return _create_update_role_definition(role_definition, for_update=False)
+def create_role_definition(cmd, role_definition):
+ return _create_update_role_definition(cmd.cli_ctx, role_definition, for_update=False)
-def update_role_definition(role_definition):
- return _create_update_role_definition(role_definition, for_update=True)
+def update_role_definition(cmd, role_definition):
+ return _create_update_role_definition(cmd.cli_ctx, role_definition, for_update=True)
-def _create_update_role_definition(role_definition, for_update):
- definitions_client = _auth_client_factory().role_definitions
+def _create_update_role_definition(cli_ctx, role_definition, for_update):
+ definitions_client = _auth_client_factory(cli_ctx).role_definitions
if os.path.exists(role_definition):
role_definition = get_file_json(role_definition)
else:
@@ -102,9 +104,9 @@ def _create_update_role_definition(role_definition, for_update):
role_definition=definition)
-def delete_role_definition(name, resource_group_name=None, scope=None,
+def delete_role_definition(cmd, name, resource_group_name=None, scope=None,
custom_role_only=False):
- definitions_client = _auth_client_factory(scope).role_definitions
+ definitions_client = _auth_client_factory(cmd.cli_ctx, scope).role_definitions
scope = _build_role_scope(resource_group_name, scope,
definitions_client.config.subscription_id)
roles = _search_role_definitions(definitions_client, name, scope, custom_role_only)
@@ -121,13 +123,13 @@ def _search_role_definitions(definitions_client, name, scope, custom_role_only=F
return roles
-def create_role_assignment(role, assignee, resource_group_name=None, scope=None):
- return _create_role_assignment(role, assignee, resource_group_name, scope)
+def create_role_assignment(cmd, role, assignee, resource_group_name=None, scope=None):
+ return _create_role_assignment(cmd.cli_ctx, role, assignee, resource_group_name, scope)
-def _create_role_assignment(role, assignee, resource_group_name=None, scope=None,
+def _create_role_assignment(cli_ctx, role, assignee, resource_group_name=None, scope=None,
resolve_assignee=True):
- factory = _auth_client_factory(scope)
+ factory = _auth_client_factory(cli_ctx, scope)
assignments_client = factory.role_assignments
definitions_client = factory.role_definitions
@@ -135,7 +137,7 @@ def _create_role_assignment(role, assignee, resource_group_name=None, scope=None
assignments_client.config.subscription_id)
role_id = _resolve_role_id(role, scope, definitions_client)
- object_id = _resolve_object_id(assignee) if resolve_assignee else assignee
+ object_id = _resolve_object_id(cli_ctx, assignee) if resolve_assignee else assignee
properties = RoleAssignmentProperties(role_id, object_id)
assignment_name = uuid.uuid4()
custom_headers = None
@@ -143,15 +145,15 @@ def _create_role_assignment(role, assignee, resource_group_name=None, scope=None
custom_headers=custom_headers)
-def list_role_assignments(assignee=None, role=None, resource_group_name=None,
+def list_role_assignments(cmd, assignee=None, role=None, resource_group_name=None,
scope=None, include_inherited=False,
show_all=False, include_groups=False):
'''
:param include_groups: include extra assignments to the groups of which the user is a
member(transitively). Supported only for a user principal.
'''
- graph_client = _graph_client_factory()
- factory = _auth_client_factory(scope)
+ graph_client = _graph_client_factory(cmd.cli_ctx)
+ factory = _auth_client_factory(cmd.cli_ctx, scope)
assignments_client = factory.role_assignments
definitions_client = factory.role_definitions
@@ -163,7 +165,7 @@ def list_role_assignments(assignee=None, role=None, resource_group_name=None,
scope = _build_role_scope(resource_group_name, scope,
definitions_client.config.subscription_id)
- assignments = _search_role_assignments(assignments_client, definitions_client,
+ assignments = _search_role_assignments(cmd.cli_ctx, assignments_client, definitions_client,
scope, assignee, role,
include_inherited, include_groups)
@@ -203,9 +205,9 @@ def _get_displayable_name(graph_object):
return graph_object.display_name or ''
-def delete_role_assignments(ids=None, assignee=None, role=None,
+def delete_role_assignments(cmd, ids=None, assignee=None, role=None,
resource_group_name=None, scope=None, include_inherited=False):
- factory = _auth_client_factory(scope)
+ factory = _auth_client_factory(cmd.cli_ctx, scope)
assignments_client = factory.role_assignments
definitions_client = factory.role_definitions
ids = ids or []
@@ -218,7 +220,7 @@ def delete_role_assignments(ids=None, assignee=None, role=None,
scope = _build_role_scope(resource_group_name, scope,
assignments_client.config.subscription_id)
- assignments = _search_role_assignments(assignments_client, definitions_client,
+ assignments = _search_role_assignments(cmd.cli_ctx, assignments_client, definitions_client,
scope, assignee, role, include_inherited,
include_groups=False)
@@ -229,11 +231,11 @@ def delete_role_assignments(ids=None, assignee=None, role=None,
raise CLIError('No matched assignments were found to delete')
-def _search_role_assignments(assignments_client, definitions_client,
+def _search_role_assignments(cli_ctx, assignments_client, definitions_client,
scope, assignee, role, include_inherited, include_groups):
assignee_object_id = None
if assignee:
- assignee_object_id = _resolve_object_id(assignee)
+ assignee_object_id = _resolve_object_id(cli_ctx, assignee)
# combining filters is unsupported, so we pick the best, and do limited maunal filtering
if assignee_object_id:
@@ -350,9 +352,6 @@ def create_user(client, user_principal_name, display_name, password,
return client.create(param)
-create_user.__doc__ = UserCreateParameters.__doc__
-
-
def list_groups(client, display_name=None, query_filter=None):
'''
list groups in the directory
@@ -450,12 +449,12 @@ def _build_application_creds(password=None, key_value=None, key_type=None,
return (password_creds, key_creds)
-def create_service_principal(identifier):
- return _create_service_principal(identifier)
+def create_service_principal(cmd, identifier):
+ return _create_service_principal(cmd.cli_ctx, identifier)
-def _create_service_principal(identifier, resolve_app=True):
- client = _graph_client_factory()
+def _create_service_principal(cli_ctx, identifier, resolve_app=True):
+ client = _graph_client_factory(cli_ctx)
if resolve_app:
try:
@@ -479,8 +478,8 @@ def show_service_principal(client, identifier):
return client.get(object_id)
-def delete_service_principal(identifier):
- client = _graph_client_factory()
+def delete_service_principal(cmd, identifier):
+ client = _graph_client_factory(cmd.cli_ctx)
sp = client.service_principals.get(_resolve_service_principal(client.service_principals, identifier))
app_object_id = None
@@ -491,10 +490,10 @@ def delete_service_principal(identifier):
if result:
app_object_id = result[0].object_id
- assignments = list_role_assignments(assignee=identifier, show_all=True)
+ assignments = list_role_assignments(cmd, assignee=identifier, show_all=True)
if assignments:
logger.warning('Removing role assignments')
- delete_role_assignments([a['id'] for a in assignments])
+ delete_role_assignments(cmd, [a['id'] for a in assignments])
if app_object_id: # delete the application, and AAD service will automatically clean up the SP
client.applications.delete(app_object_id)
@@ -514,7 +513,7 @@ def _resolve_service_principal(client, identifier):
raise CLIError("service principal '{}' doesn't exist".format(identifier))
-def _process_service_principal_creds(years, app_start_date, app_end_date, cert, create_cert,
+def _process_service_principal_creds(cli_ctx, years, app_start_date, app_end_date, cert, create_cert,
password, keyvault):
if not any((cert, create_cert, password, keyvault)):
@@ -542,14 +541,12 @@ def _process_service_principal_creds(years, app_start_date, app_end_date, cert,
elif create_cert and keyvault:
# 5 - Create self-signed cert in KeyVault
public_cert_string, cert_file, cert_start_date, cert_end_date = \
- _create_self_signed_cert_with_keyvault(
- years, keyvault, cert)
+ _create_self_signed_cert_with_keyvault(cli_ctx, years, keyvault, cert)
elif keyvault:
import base64
- from azure.cli.core._profile import CLOUD
# 6 - Use existing cert from KeyVault
- kv_client = _get_keyvault_client()
- vault_base = 'https://{}{}/'.format(keyvault, CLOUD.suffixes.keyvault_dns)
+ kv_client = _get_keyvault_client(cli_ctx)
+ vault_base = 'https://{}{}/'.format(keyvault, cli_ctx.cloud.suffixes.keyvault_dns)
cert_obj = kv_client.get_certificate(vault_base, cert, '')
public_cert_string = base64.b64encode(cert_obj.cer).decode('utf-8') # pylint: disable=no-member
cert_start_date = cert_obj.attributes.not_before # pylint: disable=no-member
@@ -578,15 +575,15 @@ def _validate_app_dates(app_start_date, app_end_date, cert_start_date, cert_end_
def create_service_principal_for_rbac(
# pylint:disable=too-many-statements,too-many-locals, too-many-branches
- name=None, password=None, years=None,
+ cmd, name=None, password=None, years=None,
create_cert=False, cert=None,
scopes=None, role='Contributor',
show_auth_for_sdk=None, skip_assignment=False, keyvault=None):
import time
import pytz
- graph_client = _graph_client_factory()
- role_client = _auth_client_factory().role_assignments
+ graph_client = _graph_client_factory(cmd.cli_ctx)
+ role_client = _auth_client_factory(cmd.cli_ctx).role_assignments
scopes = scopes or ['/subscriptions/' + role_client.config.subscription_id]
years = years or 1
sp_oid = None
@@ -612,7 +609,7 @@ def create_service_principal_for_rbac(
name = 'http://' + app_display_name # just a valid uri, no need to exist
password, public_cert_string, cert_file, cert_start_date, cert_end_date = \
- _process_service_principal_creds(years, app_start_date, app_end_date, cert, create_cert,
+ _process_service_principal_creds(cmd.cli_ctx, years, app_start_date, app_end_date, cert, create_cert,
password, keyvault)
app_start_date, app_end_date, cert_start_date, cert_end_date = \
@@ -632,7 +629,7 @@ def create_service_principal_for_rbac(
# retry till server replication is done
for l in range(0, _RETRY_TIMES):
try:
- aad_sp = _create_service_principal(app_id, resolve_app=False)
+ aad_sp = _create_service_principal(cmd.cli_ctx, app_id, resolve_app=False)
break
except Exception as ex: # pylint: disable=broad-except
if l < _RETRY_TIMES and (
@@ -652,7 +649,7 @@ def create_service_principal_for_rbac(
for scope in scopes:
for l in range(0, _RETRY_TIMES):
try:
- _create_role_assignment(role, sp_oid, None, scope, resolve_assignee=False)
+ _create_role_assignment(cmd.cli_ctx, role, sp_oid, None, scope, resolve_assignee=False)
break
except Exception as ex:
if l < _RETRY_TIMES and ' does not exist in the directory ' in str(ex):
@@ -671,7 +668,7 @@ def create_service_principal_for_rbac(
if show_auth_for_sdk:
import json
from azure.cli.core._profile import Profile
- profile = Profile()
+ profile = Profile(cmd.cli_ctx)
result = profile.get_sp_auth_info(scopes[0].split('/')[2] if scopes else None,
app_id, password, cert_file)
# sdk-auth file should be in json format all the time, hence the print
@@ -693,12 +690,12 @@ def create_service_principal_for_rbac(
return result
-def _get_keyvault_client():
+def _get_keyvault_client(cli_ctx):
from azure.cli.core._profile import Profile
from azure.keyvault import KeyVaultClient, KeyVaultAuthentication
def _get_token(server, resource, scope): # pylint: disable=unused-argument
- return Profile().get_login_credentials(resource)[0]._token_retriever() # pylint: disable=protected-access
+ return Profile(cli_ctx).get_login_credentials(resource)[0]._token_retriever() # pylint: disable=protected-access
return KeyVaultClient(KeyVaultAuthentication(_get_token))
@@ -754,12 +751,11 @@ def _create_self_signed_cert(start_date, end_date): # pylint: disable=too-many-
return (cert_string, creds_file, cert_start_date, cert_end_date)
-def _create_self_signed_cert_with_keyvault(years, keyvault, keyvault_cert_name): # pylint: disable=too-many-locals
- from azure.cli.core._profile import CLOUD
+def _create_self_signed_cert_with_keyvault(cli_ctx, years, keyvault, keyvault_cert_name): # pylint: disable=too-many-locals
import base64
import time
- kv_client = _get_keyvault_client()
+ kv_client = _get_keyvault_client(cli_ctx)
cert_policy = {
'issuer_parameters': {
'name': 'Self'
@@ -794,7 +790,7 @@ def _create_self_signed_cert_with_keyvault(years, keyvault, keyvault_cert_name):
'validity_in_months': ((years * 12) + 1)
}
}
- vault_base_url = 'https://{}{}/'.format(keyvault, CLOUD.suffixes.keyvault_dns)
+ vault_base_url = 'https://{}{}/'.format(keyvault, cli_ctx.cloud.suffixes.keyvault_dns)
kv_client.create_certificate(vault_base_url, keyvault_cert_name, cert_policy)
while kv_client.get_certificate_operation(vault_base_url, keyvault_cert_name).status != 'completed': # pylint: disable=no-member, line-too-long
time.sleep(5)
@@ -845,10 +841,10 @@ def _get_public(x509):
return stripped
-def reset_service_principal_credential(name, password=None, create_cert=False,
+def reset_service_principal_credential(cmd, name, password=None, create_cert=False,
cert=None, years=None, keyvault=None):
import pytz
- client = _graph_client_factory()
+ client = _graph_client_factory(cmd.cli_ctx)
# pylint: disable=no-member
@@ -873,7 +869,7 @@ def reset_service_principal_credential(name, password=None, create_cert=False,
cert_file = None
password, public_cert_string, cert_file, cert_start_date, cert_end_date = \
- _process_service_principal_creds(years, app_start_date, app_end_date, cert, create_cert,
+ _process_service_principal_creds(cmd.cli_ctx, years, app_start_date, app_end_date, cert, create_cert,
password, keyvault)
app_start_date, app_end_date, cert_start_date, cert_end_date = \
@@ -919,8 +915,8 @@ def reset_service_principal_credential(name, password=None, create_cert=False,
return result
-def _resolve_object_id(assignee):
- client = _graph_client_factory()
+def _resolve_object_id(cli_ctx, assignee):
+ client = _graph_client_factory(cli_ctx)
result = None
if assignee.find('@') >= 0: # looks like a user principal name
result = list(client.users.list(filter="userPrincipalName eq '{}'".format(assignee)))
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/recordings/latest/test_application_set_scenario.yaml b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/recordings/latest/test_application_set_scenario.yaml
index 02639de5ba3..6e47cd31930 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/recordings/latest/test_application_set_scenario.yaml
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/recordings/latest/test_application_set_scenario.yaml
@@ -1,434 +1,431 @@
interactions:
- request:
- body: !!binary |
- eyJob21lcGFnZSI6ICJodHRwOi8vYXp1cmVjbGl0ZXN0LWdyYXBoIiwgImlkZW50aWZpZXJVcmlz
- IjogWyJodHRwOi8vYXp1cmVjbGl0ZXN0LWdyYXBoIl0sICJhdmFpbGFibGVUb090aGVyVGVuYW50
- cyI6IGZhbHNlLCAiZGlzcGxheU5hbWUiOiAiYXp1cmVjbGl0ZXN0In0=
+ body: '{"displayName": "azureclitest", "homepage": "http://azureclitest-graph",
+ "availableToOtherTenants": false, "identifierUris": ["http://azureclitest-graph"]}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['155']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f604c53a-aa21-44d5-a41f-c1ef0b5304bd","deletionTimestamp":null,"addIns":[],"appId":"12cc67db-2071-4101-b908-ae6b955ab956","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"46416a21-a9d7-406c-9047-54856ab73c87","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"864f7e4d-4ec1-488f-966d-58b8aeb152e6","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
the application to access azureclitest on behalf of the signed-in user.","adminConsentDisplayName":"Access
- azureclitest","id":"b2d53313-d484-494f-8838-3624e479088a","isEnabled":true,"type":"User","userConsentDescription":"Allow
+ azureclitest","id":"47917a2f-5062-4ad0-9804-8079c35b628f","isEnabled":true,"type":"User","userConsentDescription":"Allow
the application to access azureclitest on your behalf.","userConsentDisplayName":"Access
- azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null}'}
+ azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"tokenEncryptionKeyId":null}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1307']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:55 GMT']
- Duration: ['3224814']
- Expires: ['-1']
- Location: ['https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/directoryObjects/f604c53a-aa21-44d5-a41f-c1ef0b5304bd/Microsoft.DirectoryServices.Application']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [wUAYkBKal6oqagFY7aouGCtQCtmejpC9YPiTOfHJ8us=]
- ocp-aad-session-key: [aVjQbtTa7qiwknQk5TwxlzHHosTWRs1GsTqsNmqMJBHZIBGK5pxsUsljQ45OUtivzm0FXv9hT5Y6ZrhsH3mI0e-fwKAUxRfmJR0CgiDD8T5-hPExGATF1mV31lz2DdI-eMRLypAR4w4w9viS94-RAw.a2298BNWx5msYPZR6U7S_YZypZMBcYjyrBzUma9mRhw]
- request-id: [7b3f1441-d4b1-4acf-8d1a-046830cd1b50]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1383']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:09 GMT']
+ duration: ['3237092']
+ expires: ['-1']
+ location: ['https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/46416a21-a9d7-406c-9047-54856ab73c87/Microsoft.DirectoryServices.Application']
+ ocp-aad-diagnostics-server-name: [7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=]
+ ocp-aad-session-key: [h7xHZ0qbX51v-kaz9pAohAkkBS6344esCLZP3bI2z6FlPgGxOA8ZlDuec8C-sGJubgMz2dqz6u2hwgvhIMrYkffYixRn5JdN0mrcJci-fIYU6ephZOwZLOrw0lINBV9uVasjHl_qg9lTzPnOgMvrYsz60vZDVL8kuFM1VXhrR6ZxnVLLxEfBRl5wxtE2S3ePOSfu2QipmS3CZIRDR-bdqA.M8xfBhdYOEKGroxoRz0W2SQHDcSMb8rAabXlkf7V_qc]
+ pragma: [no-cache]
+ request-id: [f02bedb5-9d95-4621-a677-c26dc8985fc2]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: GET
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fazureclitest-graph%27%29&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f604c53a-aa21-44d5-a41f-c1ef0b5304bd","deletionTimestamp":null,"addIns":[],"appId":"12cc67db-2071-4101-b908-ae6b955ab956","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"46416a21-a9d7-406c-9047-54856ab73c87","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"864f7e4d-4ec1-488f-966d-58b8aeb152e6","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
the application to access azureclitest on behalf of the signed-in user.","adminConsentDisplayName":"Access
- azureclitest","id":"b2d53313-d484-494f-8838-3624e479088a","isEnabled":true,"type":"User","userConsentDescription":"Allow
+ azureclitest","id":"47917a2f-5062-4ad0-9804-8079c35b628f","isEnabled":true,"type":"User","userConsentDescription":"Allow
the application to access azureclitest on your behalf.","userConsentDisplayName":"Access
- azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null}]}'}
+ azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"tokenEncryptionKeyId":null}]}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1310']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:54 GMT']
- Duration: ['1279672']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [fq8X8skvMWfZKi9Rtj3ENzuIn4t3hZAIS6B3m5bk4xE=]
- ocp-aad-session-key: [dFMM9HlSHfVn_U26R3lSlzhKlJCS8pbiflfVJJv7LCYFkcfx02O1BAwajGsRBCU3LkxtvXSbdQZsoo_HcLuL_bZPWHneMH-mt7CfCrwuGtNz_-LlGpJvOSYRmGMJu7t5-KI4--_xt1TL6uW934ffLw.kMNvWjy1lSzc0F0fZbqCsyLG8QmlDYX_PE1Tonu1VFM]
- request-id: [a9fa6f24-54c4-42a6-9773-8dbe46d3d4e3]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1386']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:08 GMT']
+ duration: ['547726']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [IUVRir15mj3RJgv6keBLLEgvPkjWh/IXR/QE+pxMpf0=]
+ ocp-aad-session-key: [DDZoDhlDq3j0ePp362rUG1Fzn5JtRxhnJm0F2WFL4ddCZ-cSSf0CdnoXS-dXvUbl673Lt8m9V6wvWp998Ap2fDMEBgMk__p0q26_-VpDiYhpJm6TBGC3JGFctp5Mq8uDAEznYzsVh6PyqALhwMSe7gwOhInSJj4SUF2wiUV_tNLCZQpiKlZj_DsCU3BGtpz6iruUvgQbs_Vee3ucEKw2Mg.PGQVtiYhbZ6OBPF7C34XApvk3KjThBWU7-WW3WmP2Sg]
+ pragma: [no-cache]
+ request-id: [d732bb36-80d7-4394-b56b-cbc2cea3f1df]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f604c53a-aa21-44d5-a41f-c1ef0b5304bd?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/46416a21-a9d7-406c-9047-54856ab73c87?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f604c53a-aa21-44d5-a41f-c1ef0b5304bd","deletionTimestamp":null,"addIns":[],"appId":"12cc67db-2071-4101-b908-ae6b955ab956","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"46416a21-a9d7-406c-9047-54856ab73c87","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"864f7e4d-4ec1-488f-966d-58b8aeb152e6","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
the application to access azureclitest on behalf of the signed-in user.","adminConsentDisplayName":"Access
- azureclitest","id":"b2d53313-d484-494f-8838-3624e479088a","isEnabled":true,"type":"User","userConsentDescription":"Allow
+ azureclitest","id":"47917a2f-5062-4ad0-9804-8079c35b628f","isEnabled":true,"type":"User","userConsentDescription":"Allow
the application to access azureclitest on your behalf.","userConsentDisplayName":"Access
- azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null}'}
+ azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"tokenEncryptionKeyId":null}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1307']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:55 GMT']
- Duration: ['1382902']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [hioYpthBQWASoV+bOwj8vXPuZJ+NE6E5bvd044sSUBw=]
- ocp-aad-session-key: [5RKjlu2EjZ7qFdbkQJXhamWTu6Ti8P7iKCXKEEytNRuUjtR3Rz2iFcB19CLmbyid6yDkAY20OLDgadugS2BHQiPPvR6gd_gS4JjGHuvX8_TBvI0S48FqElpRCiM0TD1ySSVEhaOK93OcRsEEJjILyg.ko-dcwb7kiiljYmz3Ki6SY1O-YS-maK80vUHAFYt684]
- request-id: [cf767ad6-8d21-46b9-af36-b04283f80133]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1383']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:09 GMT']
+ duration: ['622631']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [nwoPDPBe8J1qM7KlA3xNHurxCxJXOtsHl8UwAYIE67M=]
+ ocp-aad-session-key: [GG1WYa3dUJCRKiZAWoOdIsye1JzXyR7Uo3OKmC9L9B74LE1IcciTT5gj3hHxjFGahoHa0GqCv4LdDmf7R_z8xbYEcpA8DOBqZnxC3E1HNwJ1Fib5XdZmBumKqVbH6yDII1AJorijZ5RIv1_x96vrG7TWri8dj2LDNXF7pCdXWZFJbLn0zx67yChE8sgSTlv1sz1veo0arIHPeBLwrnYVYA.6MedUjEhvU0qtLrxh0s5x5-5uPDKWPdMoq6m1R3PelY]
+ pragma: [no-cache]
+ request-id: [5133d29d-0dbc-48e6-bd33-12560e5f9c2e]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: GET
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=startswith%28displayName%2C%27azureclitest%27%29&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f604c53a-aa21-44d5-a41f-c1ef0b5304bd","deletionTimestamp":null,"addIns":[],"appId":"12cc67db-2071-4101-b908-ae6b955ab956","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"46416a21-a9d7-406c-9047-54856ab73c87","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"864f7e4d-4ec1-488f-966d-58b8aeb152e6","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
the application to access azureclitest on behalf of the signed-in user.","adminConsentDisplayName":"Access
- azureclitest","id":"b2d53313-d484-494f-8838-3624e479088a","isEnabled":true,"type":"User","userConsentDescription":"Allow
+ azureclitest","id":"47917a2f-5062-4ad0-9804-8079c35b628f","isEnabled":true,"type":"User","userConsentDescription":"Allow
the application to access azureclitest on your behalf.","userConsentDisplayName":"Access
- azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null}]}'}
+ azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"tokenEncryptionKeyId":null}]}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1310']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:54 GMT']
- Duration: ['1117629']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [q4i7LesK+Fuk9QjFV+CB3iE/U15rLb+sF1h8Mu5wm+0=]
- ocp-aad-session-key: [zZKHn5C3qcZ9-HaAWh6Mes0OilKnvvDsvRoMuGQj2WA--utjXaxqmuRSAblKgRtVS1_hj8gkV0Ryj9Au9ABEEq2GUHZfYzduoJxjt2gNngUBbwFiipuH6v5tJIRJeTLHKv3_WW_e_lRZWgtKqha4Dg._eF2XlCnSS-oamxCCjSDz5HBz9xCIwb3cibasMLVtDM]
- request-id: [5e165869-4133-45c7-b10f-5099bc6dcb20]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1386']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:09 GMT']
+ duration: ['562195']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [B0qYUu2wmC42QTQTMANMQgBOAt7CqRYECuEiH/QxP2w=]
+ ocp-aad-session-key: [0ZOqPfDFDO3mEqoBSGEEveWgE0-224N-sfNzxYpsggd1RxDLp0-B5I-g_mJWCzCuR75r4SNurkw9Z8qj0tCFrV1PU5u5S0Ch7sA5l-xJKBj5gQIA-NUJMT6LZl7NtCeCpI0cG6OeZHL5wPrdPU8rPfJVtzCcHa1s2LQ9ZHctEANWH1ghHhOW3eVHPcSk7fnqXsjQ2Gk3_Y_rCP3BYQs-Tg.htM7BpypkQf1RHUDVVVRFM67735rNi7OBcWlV_IGitU]
+ pragma: [no-cache]
+ request-id: [631c240c-01a0-4527-8f83-9d9f766b7c36]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: GET
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fazureclitest-graph%27%29&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f604c53a-aa21-44d5-a41f-c1ef0b5304bd","deletionTimestamp":null,"addIns":[],"appId":"12cc67db-2071-4101-b908-ae6b955ab956","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"46416a21-a9d7-406c-9047-54856ab73c87","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"864f7e4d-4ec1-488f-966d-58b8aeb152e6","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
the application to access azureclitest on behalf of the signed-in user.","adminConsentDisplayName":"Access
- azureclitest","id":"b2d53313-d484-494f-8838-3624e479088a","isEnabled":true,"type":"User","userConsentDescription":"Allow
+ azureclitest","id":"47917a2f-5062-4ad0-9804-8079c35b628f","isEnabled":true,"type":"User","userConsentDescription":"Allow
the application to access azureclitest on your behalf.","userConsentDisplayName":"Access
- azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null}]}'}
+ azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"tokenEncryptionKeyId":null}]}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1310']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:57 GMT']
- Duration: ['1349740']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [ZAfQFnTpLAZxC31oR++AqJK6G+dpE0cnVhUpdX+Y0Dg=]
- ocp-aad-session-key: [7io8SahOZhHiTdvKF1zD_EAlafMwmwHC0gLsPO7O1JWeiR_G59QlOM_VbNxIBILGoNafNDrunLA7uTmBAuOky6D58HJ6ISzgTlYgFfjAhvMH1qeJuqyUob69hPVMo7HjwQz7yy2bGP6KaApUoqAIzQ.2DXTrUL3r7XEROXCaPDa5ezLlOWbgCrPa2IBS8U5zkQ]
- request-id: [899838fa-815d-4c4f-afa6-e8c4ae4f7eb3]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1386']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:11 GMT']
+ duration: ['1451865']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [4QNX61j6pooq22+BFVvaz7k51+Cai/QsoVwfLYwcLzM=]
+ ocp-aad-session-key: [nJ_j77uj1zgkj6_zKZ8NyMeNV5sdFvAvLimOBEFtBIzadmHfqeXJOYy2_BmbeMtXgyWfAmBaNTFIRQReNytmkhGw5_zjpWCcds-GqQYmxmE8hwQ5eomry96XYsdR0MgJ7rOJkyM6gqzoOgqY29TTdXaJxza2GNdxNNUmhSrFe0sSpKUNvKkNYkPTec7V0X0IysePPi68-ks8B2Qxsuilxw.mp_O5HGUqrg3fpaXd6iJwEtJ3BPBd_qT3PMmCCaWbKQ]
+ pragma: [no-cache]
+ request-id: [95c729e2-233d-458c-8aba-df5c8f3dcb5e]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
- body: !!binary |
- eyJyZXBseVVybHMiOiBbImh0dHA6Ly9henVyZWNsaXRlc3QtcmVwbHl1cmkiXX0=
+ body: '{"replyUrls": ["http://azureclitest-replyuri"]}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app update]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['47']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: PATCH
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f604c53a-aa21-44d5-a41f-c1ef0b5304bd?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/46416a21-a9d7-406c-9047-54856ab73c87?api-version=1.6
response:
body: {string: ''}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- DataServiceVersion: [1.0;]
- Date: ['Mon, 08 Aug 2016 18:20:56 GMT']
- Duration: ['2319495']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [EooG1jyWKcOTR0/iW/ufHN+jPlKw0a7XnYl1/cdk0aA=]
- ocp-aad-session-key: [KSitKzl0lvgHoaxPpHrzr7_NxqNTrOj3wnyt8OaSUwIWmh0WKwbZQJUCSb6Rlu94vLzG9qFgR8X8UnGN5PfjZBbNS8u1TGEMs7ef_n4oy5wfmLR26jHSyYwqgePcXheYskKRbcu5VA1St0oE0z-tNA.AibcmEGfphb4xQlJIyvWNQFyFT9ui0IjyVZZA99tmls]
- request-id: [7bb2fe3e-0fb3-4fdd-9009-540b5f5289c4]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ dataserviceversion: [1.0;]
+ date: ['Thu, 09 Nov 2017 00:47:10 GMT']
+ duration: ['2688179']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=]
+ ocp-aad-session-key: [E2PKW8TSvUmOczNA1Ey0uINcYfAD19qI3TWCAGh5PczEgnnqvjY7X_YDYVdJISarSKk3Jo8ceMApvSrtpBRVH7pmYB3O4MnZlfA-Uvl4i_a9AwbMxe9uQTbQecpmvnrnGGgTWnlEGJacOYOOc8xQ_YDQiXIgBM1OubiOVaOa9lF81Pk3RWzLIvHya5M5rZ3qrCMXOL4wM9BRoLImlpoQXQ.aybz9lRNFXYphiR7AAVXoFo4_z4eqsuKqUjmxs-KgTc]
+ pragma: [no-cache]
+ request-id: [45f6f7b2-ce5a-4e6c-9575-646c6b8fad0b]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 204, message: No Content}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: GET
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fazureclitest-graph%27%29&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f604c53a-aa21-44d5-a41f-c1ef0b5304bd","deletionTimestamp":null,"addIns":[],"appId":"12cc67db-2071-4101-b908-ae6b955ab956","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"46416a21-a9d7-406c-9047-54856ab73c87","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"864f7e4d-4ec1-488f-966d-58b8aeb152e6","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
the application to access azureclitest on behalf of the signed-in user.","adminConsentDisplayName":"Access
- azureclitest","id":"b2d53313-d484-494f-8838-3624e479088a","isEnabled":true,"type":"User","userConsentDescription":"Allow
+ azureclitest","id":"47917a2f-5062-4ad0-9804-8079c35b628f","isEnabled":true,"type":"User","userConsentDescription":"Allow
the application to access azureclitest on your behalf.","userConsentDisplayName":"Access
- azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":["http://azureclitest-replyuri"],"requiredResourceAccess":[],"samlMetadataUrl":null}]}'}
+ azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":["http://azureclitest-replyuri"],"requiredResourceAccess":[],"samlMetadataUrl":null,"tokenEncryptionKeyId":null}]}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1340']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:58 GMT']
- Duration: ['1602823']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [ziul/EJ8d7Mt967WHZCAf2Nrk0kJtsDec1DemBxlc/0=]
- ocp-aad-session-key: [54s61bst58-Xj-gSRvd0IRITCKqvBwnh-XsRv-16Z5_NhZKDYBMr6hU4ozm_WUBHa7AGgwErOljjsqKJmH0-wvcrl_NEH1LW_U2-PMo7uxh0HXaaPBUsp75nNNyMVguD8c-x81HDCAFp_E023r1V9Q.7KYZpaPgmfgph98mLJl8JcZRf61kngtQRZqyz7dVaTU]
- request-id: [85ed9a01-c341-4cfd-a3f7-980c0118e223]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1416']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:11 GMT']
+ duration: ['579859']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=]
+ ocp-aad-session-key: [9bC5-gEm5lONFWtGvNZehkndwMjyE4t5A_vMs9YuSKwgg2V8iuI7a52mJWwqEPw_v4-Ceh3t9DJEKEn0c12U6YOdyx7bkpCJZ6aYxlte65NA5UlyX5v6Rze7FfwrZV6JMxQhH6Mdlxgn9xM3qXHNxFSoTrfdS6uJIkh1ceE4lIXszIg1m272IFIszxaHkuvcQoBVlkAFlBK9Eygu6KpadQ.Tquw7bNtqKCfw8mRsuPOXZaJsyM2mSknqIPz7rUCm7I]
+ pragma: [no-cache]
+ request-id: [a3606e9b-9af3-4fe9-9d6c-13b36fafc1f7]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f604c53a-aa21-44d5-a41f-c1ef0b5304bd?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/46416a21-a9d7-406c-9047-54856ab73c87?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f604c53a-aa21-44d5-a41f-c1ef0b5304bd","deletionTimestamp":null,"addIns":[],"appId":"12cc67db-2071-4101-b908-ae6b955ab956","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"46416a21-a9d7-406c-9047-54856ab73c87","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"864f7e4d-4ec1-488f-966d-58b8aeb152e6","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
the application to access azureclitest on behalf of the signed-in user.","adminConsentDisplayName":"Access
- azureclitest","id":"b2d53313-d484-494f-8838-3624e479088a","isEnabled":true,"type":"User","userConsentDescription":"Allow
+ azureclitest","id":"47917a2f-5062-4ad0-9804-8079c35b628f","isEnabled":true,"type":"User","userConsentDescription":"Allow
the application to access azureclitest on your behalf.","userConsentDisplayName":"Access
- azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":["http://azureclitest-replyuri"],"requiredResourceAccess":[],"samlMetadataUrl":null}'}
+ azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":["http://azureclitest-replyuri"],"requiredResourceAccess":[],"samlMetadataUrl":null,"tokenEncryptionKeyId":null}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1337']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:56 GMT']
- Duration: ['1743028']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [gVe9/FM4oqqnojytneR8sUurfqQA9QW5mYrgVR1bKQo=]
- ocp-aad-session-key: [X1T_VvZBEcZDZtj6oDWIz7ozsEFOwVWsq966AlcEBFywPMuUPEDPU1RzhGBKPEe00dIpxqtnG1vdK_wg68-cRWUdIMiteLLU4tD6850njcqjqSln87Xd3udz76QRitug8t0m3bFxT9C6Cb45RwBL5Q.k-O9yEPewoZicH-M35ZMmCTGxrlBSqjuv1HIruRsSDU]
- request-id: [20daaf00-a366-4fc1-9c8e-027a1e2c862e]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1413']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:12 GMT']
+ duration: ['4454760']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [BaB3WxKv10F6SRbcyUMdh0XVScYY0Xa000df60XurZQ=]
+ ocp-aad-session-key: [1EGIjeulkleNOgTJCLlzGb5vqsWa_I6z7aatRMJ4LU0CxrU_sRU6jsaJ1UmRdpDad9Wc-Lwic1nS_vdfqWfHkr5dOGDPS2sII4TFTc0tC5jEa_PfJFCS7zp6NXY6vYBsVAyIQHfgp4rIyrn0bw4fC0KMV5B-AEntn1vsL4trcmMMasQ1pPwxvTsj5U5_2PG0cbJtHokEIF89w1Y_n9SWMQ.LLtlFjjXbTihuE4mCzNX17-D2E7ytJtmXNnv6aDq5h8]
+ pragma: [no-cache]
+ request-id: [b4494ed9-32dd-4fa2-855a-13ae11397ee6]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: GET
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fazureclitest-graph%27%29&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"f604c53a-aa21-44d5-a41f-c1ef0b5304bd","deletionTimestamp":null,"addIns":[],"appId":"12cc67db-2071-4101-b908-ae6b955ab956","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"46416a21-a9d7-406c-9047-54856ab73c87","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"864f7e4d-4ec1-488f-966d-58b8aeb152e6","appRoles":[],"availableToOtherTenants":false,"displayName":"azureclitest","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://azureclitest-graph","identifierUris":["http://azureclitest-graph"],"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow
the application to access azureclitest on behalf of the signed-in user.","adminConsentDisplayName":"Access
- azureclitest","id":"b2d53313-d484-494f-8838-3624e479088a","isEnabled":true,"type":"User","userConsentDescription":"Allow
+ azureclitest","id":"47917a2f-5062-4ad0-9804-8079c35b628f","isEnabled":true,"type":"User","userConsentDescription":"Allow
the application to access azureclitest on your behalf.","userConsentDisplayName":"Access
- azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":["http://azureclitest-replyuri"],"requiredResourceAccess":[],"samlMetadataUrl":null}]}'}
+ azureclitest","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"passwordCredentials":[],"publicClient":null,"recordConsentConditions":null,"replyUrls":["http://azureclitest-replyuri"],"requiredResourceAccess":[],"samlMetadataUrl":null,"tokenEncryptionKeyId":null}]}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1340']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:57 GMT']
- Duration: ['1283679']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [YUK+J20olSbW7h16IsUzW0tnSG7t4ZMZbqldNpWQQT4=]
- ocp-aad-session-key: [ZWj5kt-Hi5nlN2k2GC-MZlaynlzIImU3rdOS3HWAY4_A8dnVhxcvXbE9QX1GmOHI1QEcXhNYwNp22JTj_ketbx8zdl7wj50cS8pGiOqBiVZPxi9S9PBRvVzDn7sW11eCodS0TKsKOr999nrBkmzohQ.1aFgj477GTCoSEROVvAddYDOceOp0jLgJpVk4h9c3rA]
- request-id: [b81c39ca-f956-4fa2-8337-89557714f2ef]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1416']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:13 GMT']
+ duration: ['559597']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=]
+ ocp-aad-session-key: [YlI3wY4wn9ghYqQdlG0VA2rpuP1Ke01ZuFVpDm692PgxebP1hnJLAH4zYFzvLvxXFhjqEUADwt6sQeixq8CY4aw5_TiiqHiQ3zKvb38w1NLL6XwP2iaqq0QDI55g15OSPWQyZQ_EfXhDuPm8UfJphQ1A21doFHBeLHN_bXk878hJaj5fF_Ss5d4biN_3JoxjMliljcqVjFShxcJv6oj95Q.5FMTKV6TrQPdJg_bG_b9h9N7Cunwh_ZR-0y4Rs_gTAc]
+ pragma: [no-cache]
+ request-id: [aaaaad4f-8503-4413-b390-198a0493e460]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: DELETE
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/f604c53a-aa21-44d5-a41f-c1ef0b5304bd?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/46416a21-a9d7-406c-9047-54856ab73c87?api-version=1.6
response:
body: {string: ''}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- DataServiceVersion: [1.0;]
- Date: ['Mon, 08 Aug 2016 18:20:57 GMT']
- Duration: ['1713883']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [wUAYkBKal6oqagFY7aouGCtQCtmejpC9YPiTOfHJ8us=]
- ocp-aad-session-key: [lYogtgJhm2c1FDJocA-_ywqN0lwduKO7I8XamFPZUApSh82x-lU-VqlOm85zgYaJFYpcnC1oddUFgiqre7kP35ZLgX1m2gIoxDLi_Zkh2g9b0xpBcpmTywkdyuM2Oa7iUEjD2cpl3gTL6fQ9D0VJaw.uUZ7GChhsPEDssyV8pkYF5gDft2ArIqYTgqLSgueMII]
- request-id: [f8c12e9c-f75f-45a0-b35d-2b0f68e9abfe]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ dataserviceversion: [1.0;]
+ date: ['Thu, 09 Nov 2017 00:47:14 GMT']
+ duration: ['10929435']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [ZvKWcqoSx4tK8aDiFI7C5E7IjSS35e7InPgjy4hCD48=]
+ ocp-aad-session-key: [1-DPWuQj_HE7h21-iADJRH9dmNoHUTEJwvSvTwZF5mTl97lGYf61hzl1ytJFJXfRSmpS8dTfv0kQxES36sQb33sdKpO_PICEXumjZOwzEn-Zdy5AEqvrjyKDaTFl2DcXyWdpl1M_wJwhFenY-zU7FpMQ1KO8SDEbnxTt8Qu5_clWoKfeigKVUfYAB_Sh8-w3ymdXp5oAR-6JkoSGwTLJRw.eV-r9Y3CbgcoZIdegfA5MljprzK9mzxe0G6Zq5wuK0w]
+ pragma: [no-cache]
+ request-id: [9b5a7e98-ed41-4fe5-9416-cddb3b0aca6c]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 204, message: No Content}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad app list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.0 (Windows-10.0.14393) requests/2.9.1 msrest/0.4.0 msrest_azure/0.4.1
- graphrbacmanagementclient/0.30.0rc5 Azure-SDK-For-Python AZURECLI/0.0.1.dev0]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [d8a98ff8-5d94-11e6-9059-64510658e3b3]
method: GET
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fazureclitest-graph%27%29&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[]}'}
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Application","value":[]}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['161']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Mon, 08 Aug 2016 18:20:57 GMT']
- Duration: ['1375283']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [kAyVw042/2zu9oGzllfqIbPkl7150lhvF+62NQu4XyQ=]
- ocp-aad-session-key: [jzlRO4irosAJXbGpEincMGJPoFa0WUTPMzXxt4jXIA1gv1zmYvqnNATP6bHJrXgVJ-_5X8t__b4BzXlnan-h-z5uXhL0qSlEZzzHC7huJkSYmSC3XyJea_gCvguF-oWnhxYXnZQkMA7xOrSbnxAZjg.PzMjfvwI5a37WRk9ou-EjYXSDhQ562P82LGuhfftKR0]
- request-id: [2ec39e80-4da2-40c7-adfe-407225f0cdb9]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['161']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:16 GMT']
+ duration: ['866683']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [5BBtH58glal76DPl+ASyPHMwG0liNn9ZIk9MbtD/h8c=]
+ ocp-aad-session-key: [S0iWGOofjOqkcFC7F6FyvmbaZhlYQcYexRBu3Sx-urAj0kpWBlUQWiXmdTvd5cJC7f8bvA77v0P4zP2rRVCsC2MFFgNAU5o_8bOx73SX5TzXC4UhYR21CGhOX4BAN8jrzMb1jwzk8shuAmfN5ohd8kjC9Xv-7u9iR4hkNE1RqFmYOXEJVC0Zqcl77fxPykLB_c8AGRTdTXPo-CrdTbA37w.4ULtolync9XvAooKzVOCJCthM_RFXs0511NqfFAX1Os]
+ pragma: [no-cache]
+ request-id: [7d25eecc-96b8-4718-a2e7-20e0a2c79f2c]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
version: 1
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/recordings/latest/test_graph_group_scenario.yaml b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/recordings/latest/test_graph_group_scenario.yaml
index 32526721541..e7cf81a7980 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/recordings/latest/test_graph_group_scenario.yaml
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/recordings/latest/test_graph_group_scenario.yaml
@@ -1,1048 +1,1584 @@
interactions:
- request:
- body: '{"passwordProfile": {"forceChangePasswordNextLogin": false, "password":
- "Test1234!!"}, "accountEnabled": true, "userPrincipalName": "deleteme1@AzureSDKTeam.onmicrosoft.com",
- "mailNickname": "deleteme1", "displayName": "deleteme1"}'
+ body: '{"accountEnabled": true, "passwordProfile": {"password": "Test1234!!",
+ "forceChangePasswordNextLogin": false}, "displayName": "deleteme1", "userPrincipalName":
+ "deleteme1@AzureSDKTeam.onmicrosoft.com", "mailNickname": "deleteme1"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad user create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['230']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.User/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"41109d4c-94f8-4308-a702-0a6f541d16a4","deletionTimestamp":null,"accountEnabled":true,"signInNames":[],"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"country":null,"creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1","facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme1","mobile":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2017-04-21T02:34:51.7535386Z","showInAddressList":null,"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"usageLocation":null,"userPrincipalName":"deleteme1@AzureSDKTeam.onmicrosoft.com","userType":"Member"}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1216']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:50 GMT']
- Duration: ['8671347']
- Expires: ['-1']
- Location: ['https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/directoryObjects/41109d4c-94f8-4308-a702-0a6f541d16a4/Microsoft.DirectoryServices.User']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [WJ9iNj7ky7Q0raKkGm6593SGt4ZAaZkDQgVPLNeXP0c=]
- ocp-aad-session-key: [jpR7XXuX_T1kxSIkqFOB52jihfMTnn9SH4VWMOFXyp0ZNiFqhwsUnGl9wn5W-i3hqVx0J62RXwirgueJgLB7qRY_ZrmB5UZud2phlU0NZcVvhFOgMjFVJThd1KC61mYY5N6N537jdMmLDDe2_RIDEKhMkPKPw-JnPn_nCbLSWnIG-vqlchEdaqCdFEvyQgkdP4yedcwRXuAbmqp4jujqfQ.M32PAKgiR6c_upGTEedeqJUTCKT98l29GfNeezk8wW4]
- request-id: [42b9d2f6-90dc-456e-aff0-1711d90eeaed]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.User/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"9c855e2d-149f-444f-ac8b-4ad0283e59b0","deletionTimestamp":null,"accountEnabled":true,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"country":null,"creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme1","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2017-11-09T00:47:52.2148963Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme1@AzureSDKTeam.onmicrosoft.com","userType":"Member"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1289']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:53 GMT']
+ duration: ['11356601']
+ expires: ['-1']
+ location: ['https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/9c855e2d-149f-444f-ac8b-4ad0283e59b0/Microsoft.DirectoryServices.User']
+ ocp-aad-diagnostics-server-name: [h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=]
+ ocp-aad-session-key: [UumYwpmDAptiJh8geN7Z54dZH5UXP__Uf8Uint8JfHRrhmlvNnFZDHyhb-hiILEenwpaJhDfDDTL91sSYW7ykFaH2hpS8WcQrmWhBnPcFSHWzcIFN1gvtKTAe22b5y0TxiTQxhK9Djxp4U7CAFn4HuO1fEExC40BqbwBGmx4i1p8YSwBZsG-kqUs07A-wjv4wG4MB-VoEm4Qp-4T7U2VrQ.peLy8UNlzZrspBdC4g1iBs7jnFghTJY2sF7azMUDfhI]
+ pragma: [no-cache]
+ request-id: [d83c4c8e-b829-44a7-9054-bbd980ea9e20]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"passwordProfile": {"forceChangePasswordNextLogin": false, "password":
- "Test1234!!"}, "accountEnabled": true, "userPrincipalName": "deleteme2@AzureSDKTeam.onmicrosoft.com",
- "mailNickname": "deleteme2", "displayName": "deleteme2"}'
+ body: '{"accountEnabled": true, "passwordProfile": {"password": "Test1234!!",
+ "forceChangePasswordNextLogin": false}, "displayName": "deleteme2", "userPrincipalName":
+ "deleteme2@AzureSDKTeam.onmicrosoft.com", "mailNickname": "deleteme2"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad user create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['230']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.User/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"649c0cdc-2f45-4f78-b1d9-f555756dedba","deletionTimestamp":null,"accountEnabled":true,"signInNames":[],"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"country":null,"creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme2","facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme2","mobile":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2017-04-21T02:34:52.5000485Z","showInAddressList":null,"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"usageLocation":null,"userPrincipalName":"deleteme2@AzureSDKTeam.onmicrosoft.com","userType":"Member"}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['1216']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:53 GMT']
- Duration: ['8892284']
- Expires: ['-1']
- Location: ['https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/directoryObjects/649c0cdc-2f45-4f78-b1d9-f555756dedba/Microsoft.DirectoryServices.User']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [u3zz2DALsiEmtzDI1/lFfQ0UcLsw4WkTvQJPQAl1nu0=]
- ocp-aad-session-key: [f0dEeZJswiKEs92Lt9GL5-gLCN0jfABXm0H0UrGYDbLoIs1s9Unws4ropIkTTPi1k8dbWjdcn2f-K9WkvLjsuiFwqtDyqYVBbABZYoGcs0cQ7Xo2h-kCKGjn13kbIfLLbcMs_RfGHsGewZ2cVvBZ1KbjcBKlfr4nEbWcfcM27tL7-EIP1vD_02lCmR0TZzQbtp0VFMdz83xs741c15862w.60JMcr9O_9PccmmONTfbG1v4nt-abfjZE6V41dTdMHM]
- request-id: [707086d5-fa4b-4c2a-bf73-e294b49af987]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.User/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"d310c653-bde6-4343-82d1-a8cbdb0508b3","deletionTimestamp":null,"accountEnabled":true,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"country":null,"creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme2","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme2","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2017-11-09T00:47:53.8423944Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme2@AzureSDKTeam.onmicrosoft.com","userType":"Member"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['1289']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:54 GMT']
+ duration: ['13618958']
+ expires: ['-1']
+ location: ['https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/d310c653-bde6-4343-82d1-a8cbdb0508b3/Microsoft.DirectoryServices.User']
+ ocp-aad-diagnostics-server-name: [iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=]
+ ocp-aad-session-key: [8dBHhBYjOqN3Y5WYZXnSSU5hEWXsdqmY4qiJ5OtiDh24xUCvhvAvVXjMwbgxoTS0cI7Vb_eSym1_PgnIerntNilBt9ikl16ne_uZLp_IFK7j6NsDJ8L-4ANl9jeXZjH-m5lpFWDvBD0cJQ41pgt0kbKtok-dO5No-ut-m72oyMqAOTdzjlrE6tWHUFlspO_ZHNPVX-dSPzCejFk3BiXgRQ.rSq-0y4Wml2H62QxQkZl6PIvqt_4JjGoIUHXpzk0toY]
+ pragma: [no-cache]
+ request-id: [78c92c86-3809-42e6-908e-1aa84b1e02d1]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 201, message: Created}
- request:
- body: '{"securityEnabled": true, "mailEnabled": false, "mailNickname": "deleteme_g",
- "displayName": "deleteme_g"}'
+ body: '{"displayName": "deleteme_g", "securityEnabled": true, "mailNickname":
+ "deleteme_g", "mailEnabled": false}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group create]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['106']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['552']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:53 GMT']
- Duration: ['2380019']
- Expires: ['-1']
- Location: ['https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/directoryObjects/b511b706-141f-48e5-a700-7015860dbb04/Microsoft.DirectoryServices.Group']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [NQzzohdyto5u0aXRdIyWmvWAgmuTAftnKRMh6cwShWo=]
- ocp-aad-session-key: [GJRbngTR61d56iJMPzyG31LFKOekl2lCiAF_4guv3uTEJM0pTp1IYSXej2vgjzZSZr_wc_QSSG2GjGPcvHSz6PHgpFZmyQKBORagTwJf6Sgnb5Cjq1ARhihaDfMoLp2Nwp3UKTdz4UmNlo48Act_66uoyRctddJV4xDNfX-_ib-u3psokOIAHlwOJaPCtt1a9lQZz3vYDNalIBgj2PgYlA.oysqr2-y3Dlx0zLdT6uZXhz1yUSnwGH8jKUIgr_3Exg]
- request-id: [d7b18b60-8e95-4124-a278-e11110db1fdb]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['641']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:54 GMT']
+ duration: ['1728068']
+ expires: ['-1']
+ location: ['https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/c20d5671-53bd-4af3-a26a-02a459fee7af/Microsoft.DirectoryServices.Group']
+ ocp-aad-diagnostics-server-name: [ICgUT9PQICZWJwyJ2TfLVPihZ1e5QC5sUtJQrEsT2pA=]
+ ocp-aad-session-key: [Tfpd351-04rXOEJWqMyOV6RP4-ioimUwO9-ojJdSQeOCXL_CXTB8TvONaEpUSuRHWpveiBF-Ugx-fU-CJRDp6lhxfs8RJ9BKVN6E1mPEE-NXKT4hRfbtF6uqdnLhBBnKsarOvjkfZBE8gj0JjSJ4Je5WUp3xM4BEHJR3_OnsuZ6z6t4Y7MriS4IcXHtZDzKz3rKYwXZMRfehNQQCYYpDJg.gQhp3c426iuHR15n2Z7SZ5MGBkiNy_NmeElVm512gUo]
+ pragma: [no-cache]
+ request-id: [e5b24e50-00db-40e4-9b74-53d4a2b436c1]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member add]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:53 GMT']
- Duration: ['613565']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [4GoW7S4gK6ZADtJZ7anfPxmmIML2y1bLgHB/c5EmhGY=]
- ocp-aad-session-key: [lVsL2ZNIVd6_koFCuZYBVypsOnwVi5RhktUhdU4EOGiAAogYhHtSeHArVlX-7J8V10S0K9VoDpn6J5ea_hgJcPbIjRBnF4jV6D5ignl8wpDUtDNricnghCITwDfGvtKDnbVhp_QlOmzpYEmTp89GzRvC6Hbt3qTqOk8GCCLG8qLC7dQhBO3UhtB8muEE4Zmu1__yXL1MO2LmRryH1XCw8A.nhxhzPCkXl7HVSP-Pg4r1wzJz42LCmtEjBeRUPQMxkE]
- request-id: [649d075d-95f3-45d8-a462-91d4057163ea]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:56 GMT']
+ duration: ['531057']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [UUsoRVZx52dAfTb5wv/hhWzDqbmsJKcNRViHoL4/1IY=]
+ ocp-aad-session-key: [2YHhU9lAQVgsUk_iMfbzfDcmAvbPMtmT44KO8I7ypZxSqgN1Kse2PJMMKsEpjZxGaHMH0rwMb4xfR4GaFFfUekcSonJDjfxp0h6S1A_AEye3JuZXBaCldhDAdFS0VUH2u_SsvLdoU18-8UVyY4fgR1wekg6OO9pzLyRcKBKf7nFmxnmoaMSFCPHRl8Fg9tIFrRJBqRu7mlCJCwTDGAQrcQ.gXk0qcD2j_8L63ZPglIQA0AcTOp2JY21_ied82yyG3c]
+ pragma: [no-cache]
+ request-id: [3289e932-d26b-4d67-bd65-16ee86f312bc]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"url": "https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/directoryObjects/41109d4c-94f8-4308-a702-0a6f541d16a4"}'
+ body: '{"url": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/9c855e2d-149f-444f-ac8b-4ad0283e59b0"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member add]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['127']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/b511b706-141f-48e5-a700-7015860dbb04/$links/members?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/c20d5671-53bd-4af3-a26a-02a459fee7af/$links/members?api-version=1.6
response:
body: {string: ''}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- DataServiceVersion: [1.0;]
- Date: ['Fri, 21 Apr 2017 02:34:53 GMT']
- Duration: ['1463966']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [p2VNFLoaL7S6Sl7mYZqZdKbM00cEf5mOy6vYy8NtAMg=]
- ocp-aad-session-key: [Mc2Rjck_-jBXj-Da58jstd6v38mDi8GHdb2HNhm0rmJVN4CnooTHUAOMHHzq-fnbQ6URRFeYUV7EUwhf4nkA4SiNG4SWiwU8APAhVn8jrJs_xUXrjvo1Z1gu3Xnv0YWX0rTpX3eeV4WhXYbJWg2cYChAzF3ebXuW8YbR5tNl59MAKKM9w5ROdxY7s9BTm4UdJOQ7aWIr3H007p_RZaly7Q.WeG2JMDgIMMM0KjLnGgvWRoJz3GGEcTU-iOiCtPgYcU]
- request-id: [691a8ac3-715c-4eb1-9d64-993356b5ac53]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ dataserviceversion: [1.0;]
+ date: ['Thu, 09 Nov 2017 00:47:55 GMT']
+ duration: ['1890070']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [IUVRir15mj3RJgv6keBLLEgvPkjWh/IXR/QE+pxMpf0=]
+ ocp-aad-session-key: [d2UDP2EF2FazgWUeoP2wJ9k2sTBUbejR_bLeEK-8_szjZDDjyMXvqfCM11BiS5tWTRjN2GxPIC0NKGler-0Ancpxa_TBbBcWFmE4E1rJOszvYOmE8Jf6wj5Dmx8Wyi7f43L2gFuydyyB_Z78_MAIqQvukKlMm9KM115pp6_ScQQNFw6TF1onX4SiVRMueS4W0_1zAaHtB5SGR9x1Zqh3nw.dwgs0HT2pRFunsfXWXQOjiFH1w00bRrHhfsRaywYRYw]
+ pragma: [no-cache]
+ request-id: [a8f8a1cd-663c-4bca-bdf6-12ef6eaf6394]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 204, message: No Content}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member add]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:51 GMT']
- Duration: ['633708']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [TJ/xKag4M2mTYYn3oFmzro7Z2/Yt3ZkfYZ6omhAf2Kg=]
- ocp-aad-session-key: [tgzoU9JUnwbYTWQcIfGbFU9A5W7_pdTcN0MBB9GgzZuOJh7dQmg5gx7ACvLmuf5YX96wBimFsnGbYtimx3Ue8KEOK6sCqxOqjn_c2ftwkiNKYhY2sqkV17KEou3pL0GJtiIRJwIWjdBS65lflkOVW1C6eRFPm-8ga8R7ufl1zYkMCeTXhPesVuQwQ4Qrg08XJ3g6tmeN82T6hgg3tA7VFA.QOc5DkKbo5rfi87-6n1xJSgJ_TOkNRnKZXh3b2Vebsc]
- request-id: [e7ce4ca2-f289-431d-9489-f972e8c2b93c]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:58 GMT']
+ duration: ['610049']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=]
+ ocp-aad-session-key: [_02ShUuOeV1JwijnHM1IfgDFJnq52S-Nl4f2sUBMq6vSJR4Xyzgz1wTwQcjWMNKMzXgWl4m_rdDMMx58zCQv-CDIHWORYZZl5XhIcQelOA7ddAdMgat40Siv_FL2EaxrijPDwbf45E-Zg9kbUoPGeQQU3CHF0pdI5KI-UMLZ2cbvUGV2HdYcxwQyAt57dLp8_tl5StcB5Wsh8U6f4_wNCA.o7KcF-txr4G7uwcHoo0Y4h8JHcDESI09d1yUZuoNwYM]
+ pragma: [no-cache]
+ request-id: [ea6ff6c9-acb0-4f37-9f31-c95c2fdb4021]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"url": "https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/directoryObjects/649c0cdc-2f45-4f78-b1d9-f555756dedba"}'
+ body: '{"url": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/d310c653-bde6-4343-82d1-a8cbdb0508b3"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member add]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['127']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/b511b706-141f-48e5-a700-7015860dbb04/$links/members?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/c20d5671-53bd-4af3-a26a-02a459fee7af/$links/members?api-version=1.6
response:
body: {string: ''}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- DataServiceVersion: [1.0;]
- Date: ['Fri, 21 Apr 2017 02:34:55 GMT']
- Duration: ['2588595']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [O47BPeqbxW4dIh1dbaaiyT5Lss9ZWY0UVhN/+FnW4PY=]
- ocp-aad-session-key: [KgIPVZbeF1-PL2sO3Kq1GECy_eOyO76-rtcBT5GQPHLLl7N1ZokI5rqNitIKraWaBreIZ3jXYLgzlHMUQNMtwzrndGu-_uhPi5S9ZfS4Fs8yv2OcXMz2j_pFKMbDtFI9E0vGk4Sr9yAbKBOJnTgGak-yRYYo8UFB7TId3itnKuZWXEyTJq4L6UciG-kb8eyP_u1enjZivXzDqcCVVGY8cg.r_TJVu8lMP-4xXIuuhve7oo8HbA-AHdX7kHcI6zklY4]
- request-id: [f7c039e8-5f75-4478-8606-dc0997ef1780]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ dataserviceversion: [1.0;]
+ date: ['Thu, 09 Nov 2017 00:47:58 GMT']
+ duration: ['1663742']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [SU5fdDwsCqc7z2lm5DqXdq4BDcpBb/7KVd8B1LQCIVs=]
+ ocp-aad-session-key: [15JXz0uXEpTF_ylFFzeP9DNW2e2WyLyLBfPq7nOHsGVERrc8H2owvCi6LY3Gbcp8eDfgRewUfx7AEyqDoboRKbmdqWVfnO54HVx-IPqGfMTBN59pgoT-2BH3ICSNNjhQoCsAEEofdjT6Abdt67QIGZSe2K-eP7o_QrFV7jQXz8ODcR-VEWxGorRUAFpkFWAEnXjPA2ojTuoMFyxa4I1i2A.tQhMypMMrYUy3ibigA-WUre8AAuPvWGMNwod3DbKdGE]
+ pragma: [no-cache]
+ request-id: [dee1f9e8-cdd3-426d-a9e0-2c24d1b1c180]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 204, message: No Content}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group show]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: GET
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
+ response:
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:57 GMT']
+ duration: ['530826']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [Llgy9/ab0slLzBlr4d1Q8lNJvx6g8YZ9cwM/rai9BcE=]
+ ocp-aad-session-key: [_mKseLFuM0cxcXAnBgfrGJV8qmKew-dqwiwAFvVZbqeiJI4rv3QNfhGAL98qTwgx86_OfN6APYjGh10NRvXL7M_cJWGVFcGgC2pYGZdWpWs4IJw6EKvPMZfElsuQ_WiUWlktla_VHS8i4TyloATdAbWP6lEYJRv87vhIfwMPMpn4C-9YGBLX6Y11I0bXbAInGl4jT2cAPxKgHCqKjUTRyw.ARDCcXlsA_QsKk_17KZEmGII5O5lmSdzi9VO31-0CeI]
+ pragma: [no-cache]
+ request-id: [5079242f-86f3-46d4-8bc6-8686ce85f687]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/c20d5671-53bd-4af3-a26a-02a459fee7af?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:52 GMT']
- Duration: ['967824']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [cze88VSQ6HNztT9BK1BBqepYViZ+GvMC7osQIs0Tj5w=]
- ocp-aad-session-key: [-5j5Ahwc7IMTKpWeF-kh3_QD14JFDesEmh8WUaXsIe5DPRG0PLSt_hO9LNUVYwOruRczAEPAbYxyb6u1A660EkqUCguZnZ80Dr4BMjyCZX7W0I3oK9kg8X0_KQMBLo7fP0vOZfLt0Mb1WTU9nM4atfC0fpO0sDzZUiXssuMWO0RD0BOxK1gWtd_pszIHl9CRKaPqHVQ05EFKP62TVDXveg.iJ8127LwB9Up_Urrj0xvV-NV7k3u0wZDDSvuuRd36Rc]
- request-id: [0afe37e2-23a2-426d-844b-3f514ecd2a71]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['641']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:47:58 GMT']
+ duration: ['531603']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [B0qYUu2wmC42QTQTMANMQgBOAt7CqRYECuEiH/QxP2w=]
+ ocp-aad-session-key: [xoYpygMBxBjruKFAWkwWlqhRHldvEQdVRJuGgQ9C1_KMA_W3q3t5zDSQRK-B90wksnwmtCx7YIaW55uzWSF1i_vMC1sn7H9Npb_48AWLmxeCS2On_v9ddVKYW1fQDQM4teLSK8Fy7hDalXiigHGD-6wpSwmWhMSmgKBvm0wKFLxHiQDcrED2EGePuA5xva-2g7mt_1aoMkPnmiyLtOTE9w.2vNYQcVs_ZeE0hwjuHosUvJ5ICVnrGYgZ91kPNMMBnk]
+ pragma: [no-cache]
+ request-id: [64c2b740-8862-4fdf-bfb9-6edd2cc2bae1]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/b511b706-141f-48e5-a700-7015860dbb04?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['552']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:53 GMT']
- Duration: ['532282']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [bKebP66qgjbXsGkb8RKjEOK0Di4Z+mUFNK2uc4Kp3R8=]
- ocp-aad-session-key: [DKS6X08Gzb4T4ohSw7NjrENjB-mLnbMLkOko1uC7zV5c7m2iakb2NG-ShAfDb-E1Rr-DwCq2FxxbowwD6Wwdr_TpzYWtJgULrB_ubgyAYbVkczf3Ycia8L0WyxKMXjk1HH3MbXXgZguiRXa6xSeVZcKS5_3UQE45TmCtVtNp9UzxMGBndJqmoDLrD429ppoJhlfA6jDJ1ok_dvSLgrWtoQ.Igsp3oo_oqgVSiCn5TWYqSXIghR4S2l2ghfvtMiaKQM]
- request-id: [ef46cf12-ae59-4187-8170-eca9b76a29d9]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:00 GMT']
+ duration: ['528684']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [O3zUwAi8QzcuoWXYo3P9BPa+vEau9l2qX1zs2MJrpKg=]
+ ocp-aad-session-key: [gJGUDKdqu3ps9X3nkNsUVYlVi4lgmnJRDEgdYIz_jwiDcuY-62ZwDb5kSICxvAvxLwQ0ElIIC05KQX-Q_Z_363ATXAeofpWhJQwgTCFcuODIpgIuZ1q7vOB20eW5-ujO5ktcUHhMJ1wjINt47poMyjp7jIZ_fgDH6cSt0dkSf-BGhEE9pA7nvi8_hZ-DvNXl5Zxb5KW_NwxNg2vRcMA16g.2X3tmL3N089SOOUVmDk54AzKLt7PrET5mRovww66v1w]
+ pragma: [no-cache]
+ request-id: [2ee47102-62cf-410f-8e6a-47522268b465]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group show]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/b511b706-141f-48e5-a700-7015860dbb04?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/c20d5671-53bd-4af3-a26a-02a459fee7af?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['552']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:56 GMT']
- Duration: ['591932']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [GWBF+FqKrwi9lJ0Nz2UosGLK6d7IORKv9drCwOzHa0Q=]
- ocp-aad-session-key: [YDIS_R4fAoyGIX0WhWxYFw1FDWyLY1HsyiMA3x6aTFyMyvnE637IV3Lz7H8clHb12vOw01PBH-sOscshSTjL11HPmJIDlwOcvBuRtOXvuZSWUyp4V8_jO4VdTIuK5zbjThFZS15oAV2ujYB_ND36x2GP4NkAmz6BeE8nVhwyPh15XqqbwVVgOjcKwRvcTV1QqkKezvHgqKy1DLkMbw2D_g.WHyFdJ3G1HsN6XQ9FsTfBpbcbd1q_QgBaLtqFYBIFug]
- request-id: [0da9d692-6a81-469d-8202-ccb68bf23e9f]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group/@Element","odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['641']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:01 GMT']
+ duration: ['1127719']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [Wvx7TZ/eEDk0k41ajYvQwgwehU+KM5tQhOMjjNrsD6E=]
+ ocp-aad-session-key: [_CLPdCvySM10US1EWHcLYy5jDKseMu2PL_GKuEm7r_L_76Rcm8_fyO_MmWaGnR4nREf4i6M1GPC-Sl54RscND1P5kV3uNfTOEouGCEBL__VG6QhuR4fgRupMNAswoZnwz4mD42pktckjrRy7Hs7C7uhbJxqdarb88bC96FWvD7Uocftt9e8uLhGrdBporY79plzbHMu2AQf2-cq9vRgysg.rgFgnyUDnn733a6ETzTxeGONXe523jI1Yw985gcSprI]
+ pragma: [no-cache]
+ request-id: [a1ad13c6-aaeb-46e8-b8a8-99dc002ad302]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:54 GMT']
- Duration: ['636208']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [nG3hKVoq5XXuUdcuvSQIIaqQRGfFv8ulezCBqMPQCRQ=]
- ocp-aad-session-key: [_hasrBAPYrcMyTqk7-JKvJ4RF_E-Q_0dnzcSp-N7p0WApD5pO_i0HzI0DCGesNwEcHm4k6o5g6n6uKj8xSDMCk7FnzOfWFt5CJlkdWphgf_AD2STxTEuyHFoLw9RTjN_zmklZHDhiMKtRDl1eMKUzMHgGucn0yh5jV1qpoYA3qeSjWVkPcm2tinQG3OLMk5XXEugvwGrczZfee0XgUDvOQ.pCR1otnzCj8LPTz0-pOtvCKF9lU7DmNKmNUOjR_kUsk]
- request-id: [fb2902c6-d7b6-43be-86e5-f5c308ed2a07]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:00 GMT']
+ duration: ['576078']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=]
+ ocp-aad-session-key: [Zi3L4HdL0cRDpQUQ7lgM3gp1YnaTWWmo9KK9IooDmDE3GIhEx6Y9bRB-x1VYOMbN9NrlloaJijSaemqC7nkL2H-n6tyfTv49FkQ8ljp-eX0EBYAzx-FQzgYBZoLWeCS7GqPmOjVaXAt8ut92NeCLDXEJS8ZSz9puXyJCvq0MZySrRdzLA5aPYWPScXho2hbyISBPI7GzqYNw7jiobsV38Q.6SVtMj7HOMxFIjSBB3lxudOnCb7fXisEUJHptgK_K9Y]
+ pragma: [no-cache]
+ request-id: [780a2120-25e5-401e-94cc-53d86184c368]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group get-member-groups]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:55 GMT']
- Duration: ['602504']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [xU4JSRnBDDuUT0qZaU7x6kfvEIokIxo5omNgFl2G0G4=]
- ocp-aad-session-key: [OTQMxLHuUsIgc3ZFQJfpfavOnhw_OX1uMKuj3-9lXQgemAd6Tl_qVYvMxqJd1eOK5BiMQqfpqktUM4hlumWo_1oEF1PiA_X0EGhEkiq1Wos7YLfDDtLhSGyJq8FtaltULVlTfSmnGD2Y56-KxCvrL5NenemOd5zCAJpt3QIWu4xJtUAcEXF3O4CkAGEXQNY6FqEIHnAAcY1LQgtp7YgAaA.Hk_VuLh7XR6rRAn66nmruKCFAtxoaCI04ld9oeZ1uzI]
- request-id: [d6450c5b-c7ee-4a5a-96bb-5f2156e9ebfd]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:02 GMT']
+ duration: ['1525707']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [5BBtH58glal76DPl+ASyPHMwG0liNn9ZIk9MbtD/h8c=]
+ ocp-aad-session-key: [wY6CSzFmQRwaCAYN_PTkpb3rahlXA0Mg1wYytKNd2voGC0GeqloFd3rfcboBbddpfrG2NUO_SW3QS0fjS5T4ptqKNrsZnNWOIrLINkLex9PxuE9t3JuIm9td1D-VOZHSeG2N3htvzm0b7crGTpNTHei01RnYEBRU9xqxSzOA6MlFJDQveQECAvn4AaxUJzDB3vghI2xtT0eogQMQbfg7gQ.MpFJkTGumpbkhwpcOD740xCc0l7m_7lpxZQskIbpM1I]
+ pragma: [no-cache]
+ request-id: [0321cd86-0768-4cdf-82e4-0d7f2370e51d]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: '{"securityEnabledOnly": false}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group get-member-groups]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['30']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/b511b706-141f-48e5-a700-7015860dbb04/getMemberGroups?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/c20d5671-53bd-4af3-a26a-02a459fee7af/getMemberGroups?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#Collection(Edm.String)","value":[]}'}
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Edm.String)","value":[]}'}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['127']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:57 GMT']
- Duration: ['860475']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [2mzsumD7v4laEobzcd1BLO71t/RyrMmpEcVHR0ySBgI=]
- ocp-aad-session-key: [CSlAkP3jSRRDYfT6gT36QzmwtPMLYLL1LgowcGHVZ4RFpymPbEI9Qd2HGpjuLrTZ2HC0iHL4vF1nYL_5CX_4ucK_wR8wobcCom93gvO9vH_qbu46h7sUSJoqtyPc7l0prau_VRTMenswmCWPnwpmHfcxzLeE5MkRZAjwWFFT1wozXKZRe90LJgkpfhCdWvdf95CbQZyIlkVZsKHc7WKgpw.KohCAEDmIrkgl533DVtAMiM36kmniAQPMrN5_Q5eupg]
- request-id: [59972335-0452-498f-aac4-1e884a21f767]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['127']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:02 GMT']
+ duration: ['802932']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=]
+ ocp-aad-session-key: [H90mK8ENhHZ1V-o4Gut5XCeUpVjk0A6rhQ8dgy8OpkzUmbtRqCyDI99oJL9mfFqQ98fewUO4gG3cd5YJTQLj3z7w34fNCWdbF9uUhLq4cfgm6d1Z43xqi1EBXD8szd7aoao7qTQwRcnH_4-XurcZsOeNS6RtGxWZd1W99VrYKSN62Ou9EeqZSrGjG0wpK-oemjIs7PlJWrBRhekuHXlKhg.BSbem_oRoDd-bkjLo0zUuTUhGVpadynFq_fJH_UIkhM]
+ pragma: [no-cache]
+ request-id: [59a51542-5ef2-4b2f-a4b7-91e8fba6c554]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member check]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:55 GMT']
- Duration: ['669783']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [v4ImhedTSMLcBqRGrUg4p+YYyJPNNYsWlqCUOR8+Elg=]
- ocp-aad-session-key: [fKytxFLzaKADa9Bj5TrZUEHhLwxnse5FP-NjTz6VUot1t9uEEqCAeNB5WzLnJGg9M8suutqxkx9Xdpd8BcZn0gTwo2W0Zv5NAdOdW-jWTYUuq6NShKhVkMocF4_ympjuMl91J8bwd71aVZcgy3bYlXOD-exyOqD0EgjiNr49dsBmsfcGXmfnDdtJP5Z3VSdkpt9EerqPWIGNoANAMk9q6A.CoXW9B-GDT0SMGocGBhmNouBV5eNzZYlIzuOz4N_jpg]
- request-id: [209df732-f113-4a39-8949-953eefadd24e]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:04 GMT']
+ duration: ['1321038']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=]
+ ocp-aad-session-key: [2gnNddf1AlW9ETAGM5nyyI5dbFKXIBFvPNCgfCVXPgambE_gwa_dkbJuy0zt_-2rXrPohw7mmQ1Y_99ZtYubpIVlFIwNovK3uG526F9D3dLMeWZHoZMg1C7ej_NGlqfKC3nyLH6TsrYgdHRGj16m9KkI5vf1nNklSHGHQNtzwNDH3DN7zMwciAr0ltfjUM8AIF0P7PO5UZSU0Gd6Ll421Q.40t-27-ZA-qJ5gY2G9kxt5tW0ZidnAmZ98UEiRrbGxU]
+ pragma: [no-cache]
+ request-id: [d329d95c-4013-4152-9a90-601c827c2155]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"groupId": "b511b706-141f-48e5-a700-7015860dbb04", "memberId": "41109d4c-94f8-4308-a702-0a6f541d16a4"}'
+ body: '{"groupId": "c20d5671-53bd-4af3-a26a-02a459fee7af", "memberId": "9c855e2d-149f-444f-ac8b-4ad0283e59b0"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member check]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['103']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/isMemberOf?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#Edm.Boolean","value":true}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['118']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:54 GMT']
- Duration: ['810984']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [0lQ4vCmckKCyRLoL4AoEX4aKPw4qTo7BdYx2Pv/0osg=]
- ocp-aad-session-key: [_JpCop26AtTqhzRT-f7kL870Cu-5buOlVaE8K2g8_Rd2jWW0iNt7stu5Iks2HBZngb442bG8iY0qXd-_L7GP-Uskag_kslAHZ9_AjfhxTZN7Sf3jECQVY0-ptyTGtzuH8Kwn8eSXNlXYujbMzaGY-SDGsKe6PAcvqdRCAvIMdPTY_JbiA8zMoLC8W38mru5qJZL3UZzx7KkMtA_v4GHAAg.dqfTW22-j6WG-x5hDsmTEDe4GivwGJnEQbTtwrRvWxA]
- request-id: [2e0c0686-9861-4efd-b05a-117df3c4b83c]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Edm.Boolean","value":true}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['118']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:05 GMT']
+ duration: ['4325550']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [s1h9g+7tMsW4wU/rKe36/J3fhFslXHwAiAI2ZsDti5I=]
+ ocp-aad-session-key: [3TLDiMYRNg3MQifOAvne5tKIhgqt1FP5ooaVjwwnMfwqwiHk7yTLohA8HvVujvY2yy0QmsRyU4-oBQicFNtUpMKv-dOwLkOrfYZ6r5kPBvFp_Rsmt5xex9paSuhTesi4E4zJhXfzEpdtURx8qJOnADoxnf3-dIoxwxYFRMWTl1rgFWNA-wognYNQMAh8-YFsDrcqfNxZpfZ1GN8apOMmqw.utKqrlVW_1E7uvOwaJYuxXNUYm10TS9zDEOFnwKOSQM]
+ pragma: [no-cache]
+ request-id: [dff5ec7e-a2de-45cb-9b5b-be5316d6ff36]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member check]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:57 GMT']
- Duration: ['657067']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [pl1kFb+g22xnnvGQgyu9q8Kv53mcwJTK0gXSbnmQHzY=]
- ocp-aad-session-key: [D_nZv7BCyyH6hlTvgKbDTE9IazhxY-nkG1TuujzN3aIMX7Bd3iDvXMexnWqfxoqTZ-L-B80C5RPPCzHumjjdt0Pfc_g_dqyS_w-i6-kou6l74Zcf8URH_MldqFcP5qbxAm4HqVfDQnCeGX69Fmu2y02B7X37AZX-d-xoPPriC-CRq_6Q_of5IXQ016ZxTN_WWJbjw60cVV-nSaT7kkExew.EwnlKxADC8uYpvoJLAyjx2X5ah-tUT3CvsXDLLb3urU]
- request-id: [ad92ec24-7416-4f12-8ddb-904ba9b727c2]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:05 GMT']
+ duration: ['2311316']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=]
+ ocp-aad-session-key: [hY0weKXTl5GH0Q-9yMDu74DNqkxJPaT-CcVlWhssl-tqg9e-JhF-5dg35fOP4k05fPQPS4gwIULC2vIAQB4TNeqyuPYasVp3T5D_bfmTosEeWe8TTIgMANrOaqzOXC1KCWJ14Ylf0y6NLZR0gl5ZbJ68zo4Af_wFeVjysFpB6vhOnEgNrN3lvV6pCr_6OLW61dXT_VZlGRw-UsPBFO_49g.b0ybaymXdkVIcJUz65EKraaO8SBGqZOWSWx1vi3nF3g]
+ pragma: [no-cache]
+ request-id: [55083a32-46fa-407d-b358-ec303711f7bf]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"groupId": "b511b706-141f-48e5-a700-7015860dbb04", "memberId": "649c0cdc-2f45-4f78-b1d9-f555756dedba"}'
+ body: '{"groupId": "c20d5671-53bd-4af3-a26a-02a459fee7af", "memberId": "d310c653-bde6-4343-82d1-a8cbdb0508b3"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member check]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['103']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/isMemberOf?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#Edm.Boolean","value":true}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['118']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:58 GMT']
- Duration: ['1363446']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [zBnO1zgN2HN/dAMzOnN35k2SLefJt7CbCenk7Vv7NR0=]
- ocp-aad-session-key: [-TiuX6eJNiZR5sLdWaZrYhs1vdOlVQPbB7WGntmO-Ih8Sy-tgqZ231YAiFWoQ2vCeYr1pq3B5UGCuGhedAGVmCQOQqBTBRwP2TQklHXsYpMykYL5MkRcOhAe_hoYiwaFbCUt-3nRBTIgPl2Kr_fPelty82eT09gMO62-wEWE6kGZRqTLH_pC0xkLsLX547Kz12pSvACjjpIeCwyntegALw.Jg6m9-Tptl_sHwTs-qSTZjYkowuz5wne44awV_BfMv8]
- request-id: [b0e3ec2f-6e1d-4a01-94af-fc1f3631f9e1]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Edm.Boolean","value":true}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['118']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:06 GMT']
+ duration: ['716855']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [SU5fdDwsCqc7z2lm5DqXdq4BDcpBb/7KVd8B1LQCIVs=]
+ ocp-aad-session-key: [rod-RZcLULv4N_VrsdMo0yMhwByDQbYJQXo-WITrej_syomjXYxhY4y_2WwpHeI-C6BDIabAl6RzTZGETpHp9_letrJmdQ9-9jVyG_1m4esUdh_TCSiqTBlw4KaSDk1gKi5sc87E35W57QjfXjSsd79_4M1hKYIZwhGDsCLYDaYGrTISVP-DwdEhY79d1OCZEosJYo-1Tfuk8Phk1V2nuA.483RHt4TRA0Dl3CSxVmElfSDg7YY8OaYJ4HEbLmp_vA]
+ pragma: [no-cache]
+ request-id: [0aa648cd-c70b-4393-822d-9ebf476d6874]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:56 GMT']
- Duration: ['503530']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [WJ9iNj7ky7Q0raKkGm6593SGt4ZAaZkDQgVPLNeXP0c=]
- ocp-aad-session-key: [s4MzuxF7PdUctiURqSCyFM4YarHwm4Xu5NDwpXdGD5My5mOBj_10DJCTTiy9AoPB4yK-XLVblTzodQjoUCNqRrGmN7kWzDaBABnY07YXqM4yos8WfnagpjNKUOFwojko2DKzCRyozLN7zkI83OPUW0gpumTT756eA3CWeg9uzLPg1rDaDSEKfqWZQDZSnqHBpKTvuElFgi_zI9mZfjSqSQ.r6CVQarU5-XzxmQNj--scdG-3Js9D3MbCZE_kJmbriE]
- request-id: [231fc766-9c95-4a42-a7af-5f3d513f9b4c]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:07 GMT']
+ duration: ['501642']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [Llgy9/ab0slLzBlr4d1Q8lNJvx6g8YZ9cwM/rai9BcE=]
+ ocp-aad-session-key: [j0cM8EbK50FeREyl5Z3vhZY0bvBw4nokaG8LqBxhokrUT1I2tbDJ5HFbniWk24MOWUqVrSiKLFYHKarbuAJ8xrsRGkrZWELhZtED4TcI3s7eOdidutSsdrs0v8tsGQ9OgvzdYz21RuhbpKEDA-ZeCOpuKmn57AlAibezmxbYsyEaHpwPrlSN8slR6KPGAww6UJfQp7YSB7Dw6sileES2Qw.wlHQiz5AZoLZSb0tCPXanwFm-uGykI592P0qh1vgdb4]
+ pragma: [no-cache]
+ request-id: [caf23bfb-7da8-4f03-8649-b5f87103f0db]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member list]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/b511b706-141f-48e5-a700-7015860dbb04/members?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/c20d5671-53bd-4af3-a26a-02a459fee7af/members?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"41109d4c-94f8-4308-a702-0a6f541d16a4","deletionTimestamp":null,"accountEnabled":true,"signInNames":[],"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"country":null,"creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1","facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme1","mobile":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2017-04-21T02:34:51Z","showInAddressList":null,"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"usageLocation":null,"userPrincipalName":"deleteme1@AzureSDKTeam.onmicrosoft.com","userType":"Member"},{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"649c0cdc-2f45-4f78-b1d9-f555756dedba","deletionTimestamp":null,"accountEnabled":true,"signInNames":[],"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"country":null,"creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme2","facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme2","mobile":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2017-04-21T02:34:52Z","showInAddressList":null,"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"usageLocation":null,"userPrincipalName":"deleteme2@AzureSDKTeam.onmicrosoft.com","userType":"Member"}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['2236']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:58 GMT']
- Duration: ['830347']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [JI7Ca0Wtacsn3e2Y1FRjFO8qh6f3DNYttzXsIANsgIA=]
- ocp-aad-session-key: [MyKWg_I_7XGy3aU0fv7IykF3JWU1LUc76ZrFlJDEvtngI9fjM9DxLbid04bmhYoZBAvaqjFJaKjxrlGFcS0NelPbaxVPvznRSXuK7NcWM-IkpLYC8luNgPfTljTa1pp5k5HiAqVf92DeIoUa_wymsCnUzIxUiKghvZEatWPw9MJBgHQ-lnZabqBHu1w0txkA3UJqmExlJDkBg0TQmZWS2Q.gpY5bTlXcwfHZilpCGbJQz-Ylxl0IhfTIxagx5dUeqg]
- request-id: [f4acfc1e-6b2f-4a79-a502-03cd8f5801d2]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"9c855e2d-149f-444f-ac8b-4ad0283e59b0","deletionTimestamp":null,"accountEnabled":true,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"country":null,"creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme1","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme1","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2017-11-09T00:47:52Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme1@AzureSDKTeam.onmicrosoft.com","userType":"Member"},{"odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"d310c653-bde6-4343-82d1-a8cbdb0508b3","deletionTimestamp":null,"accountEnabled":true,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"country":null,"creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"deleteme2","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme2","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2017-11-09T00:47:53Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"usageLocation":null,"userIdentities":[],"userPrincipalName":"deleteme2@AzureSDKTeam.onmicrosoft.com","userType":"Member"}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['2382']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:06 GMT']
+ duration: ['1105004']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [IUVRir15mj3RJgv6keBLLEgvPkjWh/IXR/QE+pxMpf0=]
+ ocp-aad-session-key: [nBF_ck17JGrIMBWjnc27PyYhWNUERzN_h5zEnTIWawkMn4497gKJuTacdg1oEBhY9HeILZ_c0uRMlQDTAOiWp-yzt4rFBL1iqPxbcrof9Wrv37yV78by_6qDxXRkq_hxThiOIgmslJcYgzBfJqGi4xxuHGW1VqngbpR7ITnxnrL8b14bTqNHJUNCwlo9R__xY2YLjkW2XkaCXKVjSUAlEw.ANkavDNRWCQY5PUza1nEf7j0eE9d2YF4B6JMgJu0z5k]
+ pragma: [no-cache]
+ request-id: [8a22b968-3952-4049-8719-83db5aee1b0d]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member remove]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:56 GMT']
- Duration: ['506900']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [O47BPeqbxW4dIh1dbaaiyT5Lss9ZWY0UVhN/+FnW4PY=]
- ocp-aad-session-key: [z3lSHGlTSyWGBXraRiHc-kHSCzKy0CuH27o-v5Pwjd4NwNooZ8I_jmixBVTiX7R6x8sS0E9PL-ob1hIfN18dGzZestDbSPnaCmKn_4yjDCXWf_dh9_KfzB4OeIKyFiCwr5NcQU_FdngQuzO8rIgAaj5LK_KVRtwkeYMBlL-2EQxL1iDyGC7bF4t0rFxg-NVW_Y2i9mf-lPcJaLLprYsp1g.zOxy-ZzKq9pq0K03tQs5zxP8SKJy7WhxY8OkRrXu8bE]
- request-id: [f1df41ee-cd2b-47c2-a7a4-26ab3d4ea6ce]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:08 GMT']
+ duration: ['698213']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=]
+ ocp-aad-session-key: [Tsah_Klz2P-wkPG4wzEo4j3CzbgQtCrJh4ytcDwwD_B9fiep_pmrfb-KppUsMUC1FKNY0xy6dl5J9DczdLoLJ0hv7yDbZNXR8mAJlOFM_xOiTX9TbonFmLsO7XB7uimh3iFqHVaI5x1Dwj_dNjnii-l4fSIp02sIBL6lYeobHoIlNY2dE3G2pSNVn3n8vmuzlGaYT2mK9vMm2gJixq08xA.2J4piaGKaT_28s_xloAqrKdeyyL_M3j3mRCfbuJv6yg]
+ pragma: [no-cache]
+ request-id: [fa7d5943-ef9c-4402-8aba-297d1b01b1ab]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member remove]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: DELETE
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/b511b706-141f-48e5-a700-7015860dbb04/$links/members/41109d4c-94f8-4308-a702-0a6f541d16a4?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/c20d5671-53bd-4af3-a26a-02a459fee7af/$links/members/9c855e2d-149f-444f-ac8b-4ad0283e59b0?api-version=1.6
response:
body: {string: ''}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- DataServiceVersion: [1.0;]
- Date: ['Fri, 21 Apr 2017 02:34:56 GMT']
- Duration: ['2264001']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [Gn/SyFs1dI76n3DdqL7J62Lgmc/wMbIjPyRQ+vCls0k=]
- ocp-aad-session-key: [isZqfNhyBGpSID-iupVpM_ceSzx5HasaP6wT7cUFjc3dCRd5lXE7q6NOyFu3X6TdoL46o3pCXbouBhVkFww7EuyeivddBZrlDoW8157LvM5fc3EgDsbWa1fJien5MrYKog38AmLG-vKsiBShDkYm7bY2wX1dM053D7EldRlq23ogZyWLuTufr1AwWqw6IwAfVHCTmSyYdiDqcM2EaHp7uA.MdO06y-NG9KQaVpO4ZZQx5UZErNAGqsaIheOrl2WkK8]
- request-id: [c95e201a-2ef2-4d3e-8c4c-289d67778d25]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ dataserviceversion: [1.0;]
+ date: ['Thu, 09 Nov 2017 00:48:07 GMT']
+ duration: ['7541930']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [yt6nptJbg5NcMoRd8olQmRyf1xoaQrW5AVjlweyozdM=]
+ ocp-aad-session-key: [WfkDXesv2zt5AZWMHo_REXw8vTwYAx5v41tNKkVXEowaQ2e78QlSqCsoGaGnqnkHpS5Cw6H7qmn-Grd3_E0D0CGCmKF3Cq_1lNinQMFBTLkRJ6-EiiNkhwPfyUaGb81MX0kHnu2Fp053EtTDD371yIiKQgPFW3s5-YGLEdnQXeoevQqbnWl7TlYAupJFPnWhtdX1gsMvUTyoCuwvZE6UNQ.nbpZhtc844M6IK1rnIY9F3k5FnPUfavwPgt0zwb3Y1M]
+ pragma: [no-cache]
+ request-id: [df2bf489-9f0a-4d09-a81a-069cf708f434]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 204, message: No Content}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member check]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:56 GMT']
- Duration: ['902544']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [JI7Ca0Wtacsn3e2Y1FRjFO8qh6f3DNYttzXsIANsgIA=]
- ocp-aad-session-key: [Ixi9Zw0nnJ_cLexDXVKMMyDHI12GEB7Bqe6jHvOJto-z3SrIRxrBmmL2C2e7Ei0JYvrKblOJQyxcEM10Ko6Tux1bJizCcnOgaGfbwoUArfpn4L5i5npLxYycpIvC9ccou4aZwEGBgTGrpU6ikpTtq7EHnwZuauUIhOWgw5YxKsoF8h_ALWrwV78X5jLy_XG_96DnNf_Tf2-YUm-TkXWXMw.ZWBUBsEQ0fvQGQLF_nUNzojvb7Ipzl_tmXCmDH0npWQ]
- request-id: [23dc0b65-1128-421b-8e22-115ac2a482fd]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:10 GMT']
+ duration: ['1040420']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [qzvxOBLVxmQxplHB5+b6WmoZShjpkheHyKFblsUWoSM=]
+ ocp-aad-session-key: [yPsgFhVnKsiSPyLes8oI7LBYMKNmkfRiEiYNyBUUlznaSB1AkECphcQqkW8WkLOFY61VfxmMqis-Sx6d_JUpVG2YLyvPUVgdLxV682UwR_3ni7Zjr90JA13c3LQ0N0Ve4hNg6BenY5IVRlmcQN_Dg8drbEC0J3B0cxTl_HSSwbCD_xJ1p_P4pcMGKxJL-aG6hnsYUswcVAwmcOtUj2QlIA.bYSWPSpqR2X06FkZa5oN5sfThh4VvB6U8MXZwLm_L-U]
+ pragma: [no-cache]
+ request-id: [7f93f8aa-39ce-4ee2-9168-b4f1a50921fc]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
- body: '{"groupId": "b511b706-141f-48e5-a700-7015860dbb04", "memberId": "41109d4c-94f8-4308-a702-0a6f541d16a4"}'
+ body: '{"groupId": "c20d5671-53bd-4af3-a26a-02a459fee7af", "memberId": "9c855e2d-149f-444f-ac8b-4ad0283e59b0"}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group member check]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['103']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/isMemberOf?api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#Edm.Boolean","value":false}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['119']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:58 GMT']
- Duration: ['930994']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [iyH1L5ZSeWH83EP1icIOAwr148oY/OGtb+Pw+quNhWk=]
- ocp-aad-session-key: [saU0G3jLDN3q38j_e89BHbOJSXIG3CVkdt7Wzj52cGrFX_KKTJv3sCwz_bDEdZnCi76bYCIGqFaM6ruj-zlJSp67G3nr1qJ-4_vOdVvtj6Mz3rE9v5MF61aRVPLevQCXCER_cCG_-9geT4yiKlsZ0SzyEgwC3PnnTIm30HJHoNYXoqTTyVm2ak-m_JdxzufWwOvB37r7dSN5Eknri5Z9Jg.uOFMAEkCGQ8MG7fjBTzaDP_d32TUwjLPLSYErDY4x00]
- request-id: [00e0dbe2-a8d1-46d0-b626-d3dfedcf2ec1]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Edm.Boolean","value":false}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['119']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:11 GMT']
+ duration: ['736034']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=]
+ ocp-aad-session-key: [HLTKJAl3XnLN09t5K0JEJ7TTmTB_35zmZDLOkYFxwvd1ce5Xzy1jHbi-2qQnIb9T14QbGP2OPp82a_jXAGTlLLh6eCBv5joPhCK9UOnovucjhyVcgiwci7y6Q1hTmfz6urwtXR_m4iSHHo-_wdUcanjFQFa_RgLx5pNeN9KGQa-0qLym-BxynnttARjJT5h8MKhco3PnH1wVL2fEETQuPg.1dKnYQ1BwXCaKXSjb4w6wqjHNkTI1lS9umsw7JckKGk]
+ pragma: [no-cache]
+ request-id: [0e336ea8-6d29-483d-8b4b-96ef49893f14]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=startswith%28displayName%2C%27deleteme_g%27%29%20or%20displayName%20eq%20%27deleteme_g%27&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b511b706-141f-48e5-a700-7015860dbb04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['555']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:59 GMT']
- Duration: ['534658']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [JI7Ca0Wtacsn3e2Y1FRjFO8qh6f3DNYttzXsIANsgIA=]
- ocp-aad-session-key: [LLv91GFqIBDylaY8nCzsIu6ncyPFpFrDgwSG5WbQ6uaZziEtmR7JQCx7IHENvL0dC2pinnGg_rj3OpLKlW0HwIFosf_3nAVT83SjKP6HVF84kO2ggLil7PUMAgOr6QhVLuWxxzuqzmT_IeHnROOHR4HvuF7sw4fGyktpP-pGW3SKpHzjRmHdX1ot2Lv9Y35VQ9hVAwYKMzVMr2msGZ2SFw.Wzrkhf5M2eSmF3zPf8n-dtwLe1x9hXpSmHJRqSJt4p4]
- request-id: [1eb02221-6565-4bd8-9e69-8260b570f66f]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20d5671-53bd-4af3-a26a-02a459fee7af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"deleteme_g","lastDirSyncTime":null,"mail":null,"mailNickname":"deleteme_g","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['644']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:12 GMT']
+ duration: ['520351']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=]
+ ocp-aad-session-key: [jLxp6AfzAKjQL2jvJA30XICCylU5y6eEZAbSaui18c91wK2LTAS2KQC8vGjnvYIbUvJz3xO0f4pCuyQl2dryHlevdQwOxY8H2AhWVJie2XREO9LF-7d8DkKPADCNXrA5OGAtE40Je80W3yiS555gsWSraR0pcg5yk2rKgxpLLfGsx1bY5G1Bk3rDJr3v5Ri1Fu0QC4RQE3e6noYMCrWFSg.flwp15FAlDTWsGOaar5TW9DJhDrPDHqfM2BmjdLdiBw]
+ pragma: [no-cache]
+ request-id: [17d1c1ae-75b4-4450-a037-9c74268fd675]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: DELETE
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/b511b706-141f-48e5-a700-7015860dbb04?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups/c20d5671-53bd-4af3-a26a-02a459fee7af?api-version=1.6
response:
body: {string: ''}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- DataServiceVersion: [1.0;]
- Date: ['Fri, 21 Apr 2017 02:34:59 GMT']
- Duration: ['1432029']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [kuyxkXWpuMdFkyXupIcvORPNJ/cSc7C7Qv+yP0H/SL8=]
- ocp-aad-session-key: [5r2cXJ4JlXL82zHO6N1eHSUTyf3gOowRwmmNcHP6io1291uQMjaFaSsBWVfvY04uFFhEqScMhiNyWuhF8DSty1LbfZulags2SjweEr93IPhdd2osXW5VF1gQEKruYOdwCLfyEI4RMk-CgkmgFAep4ED7FQI1CT-etHGenE2rawllPxncHXpunP3DvbMsSUys7dAyWaVFDChC9FfxQNzDew.c1-LftJXGu5ega3zTPx8GcZab8-viwiyOdm0nsBqKl0]
- request-id: [a0a2c6e8-50d0-4950-b862-709348956edf]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ dataserviceversion: [1.0;]
+ date: ['Thu, 09 Nov 2017 00:48:12 GMT']
+ duration: ['1366672']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=]
+ ocp-aad-session-key: [Beg9kKPMAD4K7pC1MAnzxKP7LfjgXwmFMUgdnt31oQFMqZFRUR3nfhxT4hCPoPXo5Jii1wOZM-lGExILpr3txO5_fPF5BXTWMDE2_nQN3lyQxrjjJBEe18UJrdxDjWJN8KFFmM13J-JBh4bDn_PgFLPauQiRNBJYr_n6d-3Emq0J5BsDow58VdKh9NkzSISxYc6H4zQvHC3e5Z1yTTsx9Q.Ab82ULi1X41b_j5DVOdQOsLekpiMB4WlcJ9oxxjDJnw]
+ pragma: [no-cache]
+ request-id: [60d2a24c-188c-44b6-86cf-b43659fd8b27]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 204, message: No Content}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad group list]
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: GET
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?$filter=&api-version=1.6
+ response:
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"011bcaf5-8179-4f0c-b3b0-7e42a54393d3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbc291814c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbc291814c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0139afde-63f4-4c4c-907e-9d1bbbd8c430","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ fd337966c5185278","lastDirSyncTime":null,"mail":null,"mailNickname":"group2fd337966c5185278","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"016dc7e9-b670-418c-9739-95310bde3e00","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc4e493807","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc4e493807","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"019fded2-1515-4ba0-af1b-86953b0d33f1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupca6226897","lastDirSyncTime":null,"mail":null,"mailNickname":"groupca6226897","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"01cd8604-5f8c-4b1a-808e-78cb53348b42","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group0e226618f","lastDirSyncTime":null,"mail":null,"mailNickname":"group0e226618f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"02155df5-aa48-4ec6-8288-ddc369623947","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group37f36946f","lastDirSyncTime":null,"mail":null,"mailNickname":"group37f36946f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"02242fd2-f6a1-4ab9-a3ce-4df5b473aac5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group34994456c","lastDirSyncTime":null,"mail":null,"mailNickname":"group34994456c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"02c4acf5-5d1d-4037-bacc-43289bf7401c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa6d29028d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa6d29028d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0358ad92-6c3d-45dc-9a89-e481b3559c23","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ dcd073477d6afb84","lastDirSyncTime":null,"mail":null,"mailNickname":"group2dcd073477d6afb84","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"03b91929-def6-4069-ac55-0b63f040e7ea","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group94361416f","lastDirSyncTime":null,"mail":null,"mailNickname":"group94361416f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"03c94a32-fe6e-4391-875d-4cc8fe283484","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb0561195e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb0561195e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"03f9e0e7-3056-4a4e-b90e-397e605a5935","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4a072970fefefdda","lastDirSyncTime":null,"mail":null,"mailNickname":"group24a072970fefefdda","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"04062997-4b93-4b2c-82f8-19984ebbd839","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 62499329d0eadf07","lastDirSyncTime":null,"mail":null,"mailNickname":"group162499329d0eadf07","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"04722e05-f999-4fc6-b6f7-3de8eb33beb4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 359381602233e79e","lastDirSyncTime":null,"mail":null,"mailNickname":"group2359381602233e79e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"047af4d9-6eb6-4a3d-a06a-9510341aeea7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 47c22325d64c79f7","lastDirSyncTime":null,"mail":null,"mailNickname":"group247c22325d64c79f7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"04a1bb8f-02d0-4958-8637-c7daf1399c58","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group74a906287","lastDirSyncTime":null,"mail":null,"mailNickname":"group74a906287","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"04c14628-891d-40f6-a4c8-70b1d4a1f05f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group73a406719","lastDirSyncTime":null,"mail":null,"mailNickname":"group73a406719","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"04e60fae-5ade-4509-9a81-5fc025580062","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 8f796596c0e1a241","lastDirSyncTime":null,"mail":null,"mailNickname":"group28f796596c0e1a241","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"052f0e94-c7b3-4b35-a32c-d5a2c619270c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ bfd923515ce312e9","lastDirSyncTime":null,"mail":null,"mailNickname":"group1bfd923515ce312e9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"06055c8c-75fa-4b14-a1bf-b692b1a765cd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 460062428ddab5d6","lastDirSyncTime":null,"mail":null,"mailNickname":"group2460062428ddab5d6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"06f7c91a-a1be-4b51-8778-8d2d9ab61da4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf1317447e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf1317447e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"07090704-09b1-4e40-9816-54f7a8d053b1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupfff692311","lastDirSyncTime":null,"mail":null,"mailNickname":"groupfff692311","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"07404f27-7898-4080-821c-ab9e6866190b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7aa50242c","lastDirSyncTime":null,"mail":null,"mailNickname":"group7aa50242c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"07de931b-eb3b-45f4-ac6b-5bdf8a1ac654","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group136456034","lastDirSyncTime":null,"mail":null,"mailNickname":"group136456034","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"07df5abd-ce19-45c9-9fa9-8d637f9c79bf","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group82830684465b6485","lastDirSyncTime":null,"mail":null,"mailNickname":"group82830684465b6485","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"08c37d5f-7a30-4e69-990c-a87201b03ef0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ed0489869975c3e0","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ed0489869975c3e0","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0988334f-a6fb-4161-b30b-e378a289078b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"java-azure-group-23","lastDirSyncTime":null,"mail":null,"mailNickname":"java","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"09d3570b-29cd-4279-9add-a2c707bac4ca","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group892485494","lastDirSyncTime":null,"mail":null,"mailNickname":"group892485494","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"09fe67a7-6a68-4912-aacc-35c60171eb5d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ff739774241450f3","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ff739774241450f3","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0a9ec0e5-fa42-4b51-887d-ba25269e9bff","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupad2151635","lastDirSyncTime":null,"mail":null,"mailNickname":"groupad2151635","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0a9f3f46-ad4b-4257-a3fb-d5d339e7244e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa10764564","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa10764564","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0b24a207-1e40-4924-ba71-5396aa35ca31","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group91950303a","lastDirSyncTime":null,"mail":null,"mailNickname":"group91950303a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0b30c907-fc41-44c2-8a1c-4c7a48008839","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc2e18670e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc2e18670e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0b74a3f8-cdf6-418b-9cc9-828e15d53cfe","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7c873743a70512db","lastDirSyncTime":null,"mail":null,"mailNickname":"group17c873743a70512db","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0b8ec03a-b249-4414-8b95-fa2d5238f2b4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a1e77362dee8f97d","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a1e77362dee8f97d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0b9a3a15-dcc6-4b5f-935c-c8e15c81a8aa","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupeef288323","lastDirSyncTime":null,"mail":null,"mailNickname":"groupeef288323","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0bcef6a8-a30c-495d-95d8-b2139c1f5133","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 49f16396463ae769","lastDirSyncTime":null,"mail":null,"mailNickname":"group149f16396463ae769","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0bf1ad47-b4e7-4d1a-8f60-1be51c6a4bbe","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupffa203681","lastDirSyncTime":null,"mail":null,"mailNickname":"groupffa203681","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0c030056-3d8f-46ca-a9a5-124ac1e1f6c1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group23180753abf54be2","lastDirSyncTime":null,"mail":null,"mailNickname":"group23180753abf54be2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0c1c2456-e352-4468-9486-beed2f717a91","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group98931551c","lastDirSyncTime":null,"mail":null,"mailNickname":"group98931551c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0cb2a5d0-c2af-49aa-ac59-b629c0735637","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group15a7915716f224ef","lastDirSyncTime":null,"mail":null,"mailNickname":"group15a7915716f224ef","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0eb8e9cd-26dd-47ce-bbf1-6bd70b6ef258","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group326061686","lastDirSyncTime":null,"mail":null,"mailNickname":"group326061686","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0ed5f818-f016-4b9a-84c8-c3aa8c640575","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ec726177bff35d6b","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ec726177bff35d6b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0f806a0e-0203-4a0c-9e3f-e90028ecfb5b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd3e45547b","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd3e45547b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0fc64767-899c-471d-92be-65f380e0985a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ec5842487066314b","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ec5842487066314b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"0fe5ec1f-1a5e-4e7f-ac20-adf43dd7a0f2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 26e842077de47fdb","lastDirSyncTime":null,"mail":null,"mailNickname":"group126e842077de47fdb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1051763d-bf2e-4275-b323-24c8e06c22f7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupdf5905225","lastDirSyncTime":null,"mail":null,"mailNickname":"groupdf5905225","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"110c60bd-b5e5-4b94-a857-c93688959215","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group65d05740b","lastDirSyncTime":null,"mail":null,"mailNickname":"group65d05740b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"117dcbed-5594-4b0c-8563-f7e7ce732629","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf92609889","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf92609889","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1184bf70-3233-48b9-a516-dc563fb2fa52","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ bb502334798c23d8","lastDirSyncTime":null,"mail":null,"mailNickname":"group1bb502334798c23d8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"11edf070-7a2e-4c6e-aa73-0119f3c0bd42","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb13447931","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb13447931","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1200d8b5-77e1-46d5-b1ac-0fbaa4f8f202","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ce8917780abc1c14","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ce8917780abc1c14","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1296f17e-eb77-4fae-8886-1af1fd1a4854","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupcd7108878","lastDirSyncTime":null,"mail":null,"mailNickname":"groupcd7108878","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"12d1cd02-9e45-4549-8fe6-1b21e7703702","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group70749786ad951af0","lastDirSyncTime":null,"mail":null,"mailNickname":"group70749786ad951af0","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"137b5f25-69c0-4cf9-9a87-c3f73474a944","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7e403765d","lastDirSyncTime":null,"mail":null,"mailNickname":"group7e403765d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"13aab591-c711-41a6-9fc7-02f6d3e81533","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 0d790331d6e750e6","lastDirSyncTime":null,"mail":null,"mailNickname":"group20d790331d6e750e6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"148add26-9019-48e0-8cc5-0dad3e6d40c2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd9354692d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd9354692d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"148bfa90-4d2f-421f-af90-c6d805d37b4d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupeba436588","lastDirSyncTime":null,"mail":null,"mailNickname":"groupeba436588","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"14936fb2-19f0-4ec8-acb3-d60096f10366","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group63e25022d","lastDirSyncTime":null,"mail":null,"mailNickname":"group63e25022d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"14b903f2-5a95-4eac-b233-2e12a005e5fd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group340520316","lastDirSyncTime":null,"mail":null,"mailNickname":"group340520316","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"14c5f9d1-fe86-428c-878a-724d3a48bd6c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group109698876","lastDirSyncTime":null,"mail":null,"mailNickname":"group109698876","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"14f6d120-a60f-4808-a650-5a5159584a50","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group13072097b","lastDirSyncTime":null,"mail":null,"mailNickname":"group13072097b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1503fefd-3feb-4546-b96d-837d2f504424","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe4b588222","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe4b588222","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"153aa242-874d-432f-8805-0e9340926330","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf9185324c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf9185324c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"156cb991-208b-42db-aba6-8b42a9b75c94","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2f94390659214d71","lastDirSyncTime":null,"mail":null,"mailNickname":"group12f94390659214d71","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"15d2e35b-a8c7-457c-8b8d-c2c4b2c870c0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group91946291c","lastDirSyncTime":null,"mail":null,"mailNickname":"group91946291c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1644c54c-9f72-473e-aa5f-e0af87ca246c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group637295166","lastDirSyncTime":null,"mail":null,"mailNickname":"group637295166","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"16d96c98-07f1-4e85-82f3-567b33be40be","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupee827367a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupee827367a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"16f191af-5b09-461b-994c-e529e877ab96","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d088023925489aab","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d088023925489aab","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"171a7a9e-de57-4940-8efe-1c6c0eff13c6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group5a5788756238d36f","lastDirSyncTime":null,"mail":null,"mailNickname":"group5a5788756238d36f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"173cad73-6d64-42e8-859e-1689ec685797","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a4d96292def019b7","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a4d96292def019b7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"17459ffd-ba66-4ffa-b59a-86bd059f2e7c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1d434773c","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d434773c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1788a9b5-179f-4618-8bce-b9c7f36dc648","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a9853352bc41aabe","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a9853352bc41aabe","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"179bf93e-38b7-4902-adda-74f48cda96e4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd92615413","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd92615413","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"17e4c5cc-0a27-4f5a-ba16-e4cdc21c1b54","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb4989516c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb4989516c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1877c882-b9ee-4d1b-b941-8b6a18975d8f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group154501333","lastDirSyncTime":null,"mail":null,"mailNickname":"group154501333","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"187e8151-3f53-431d-8c6c-84e548d073f4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 47a90350ef435ffc","lastDirSyncTime":null,"mail":null,"mailNickname":"group247a90350ef435ffc","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"18aa8bb0-0935-448a-a5ef-49119e8e43a6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupaf477741fb86b1e5","lastDirSyncTime":null,"mail":null,"mailNickname":"groupaf477741fb86b1e5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"18aadffa-8de6-4dd9-a7fc-77839c31fe6e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe1d12058c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe1d12058c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"18be7b7d-6f4b-47eb-8938-30817ef55c98","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe30594707279c2ec","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe30594707279c2ec","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"193508df-597e-4526-841b-42670067d8c5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group182476731","lastDirSyncTime":null,"mail":null,"mailNickname":"group182476731","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"193e6269-f661-4251-9398-768b5774cb83","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group329857983","lastDirSyncTime":null,"mail":null,"mailNickname":"group329857983","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1a22b578-6068-4c3a-ac83-46ab4e30aa0c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb6892906c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb6892906c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1a412882-68b5-47d6-bef1-314bd7968dc6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group6a8433590","lastDirSyncTime":null,"mail":null,"mailNickname":"group6a8433590","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1ab65cd6-f85f-47fd-835a-ce415193ff19","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ af451683d1ad8761","lastDirSyncTime":null,"mail":null,"mailNickname":"group2af451683d1ad8761","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1b435555-e012-4dae-a9f6-71f9622c4b2d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9fe146712","lastDirSyncTime":null,"mail":null,"mailNickname":"group9fe146712","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1b45fcc9-3ff0-4774-9651-b465a7b4316c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group94d931172","lastDirSyncTime":null,"mail":null,"mailNickname":"group94d931172","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1ba68efa-4af0-4f3d-ab1d-b6c52b629573","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 8e235048c0f2b6f1","lastDirSyncTime":null,"mail":null,"mailNickname":"group18e235048c0f2b6f1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1bc8eb3e-8dbf-4b3d-b170-50087abb1304","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group460818923","lastDirSyncTime":null,"mail":null,"mailNickname":"group460818923","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1bca54b6-12ba-4063-9f89-4be415d710bb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a2292797ed18bc05","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a2292797ed18bc05","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1be39842-6f6e-464d-b05a-ff29d2a3f325","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf5a684062","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf5a684062","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1c390639-5def-4e13-b0a4-1c7dfb5b6e39","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupdae65034a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupdae65034a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1c6374b8-f281-465d-af2b-46355fda82c3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7b07384764eba9bd","lastDirSyncTime":null,"mail":null,"mailNickname":"group27b07384764eba9bd","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1c957145-f230-4c42-b2c3-db6699cf40bd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd4d678227","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd4d678227","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1ca877f7-f001-4588-82e2-49b646703d74","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group63b14776d","lastDirSyncTime":null,"mail":null,"mailNickname":"group63b14776d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1cc147a0-9098-4417-9870-33d9e21f37b8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 9af4190965864664","lastDirSyncTime":null,"mail":null,"mailNickname":"group19af4190965864664","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1de2aa1d-0040-4a71-b047-2765c8aa1c7c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group41044658d6a89d95","lastDirSyncTime":null,"mail":null,"mailNickname":"group41044658d6a89d95","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1e8f4c33-db4a-4c46-b8c0-526826c1189f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"LMaz#Test","lastDirSyncTime":null,"mail":null,"mailNickname":"lmazuel#test","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1f163787-a7cb-4ccd-a6d8-41d1b09d61ad","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc0a882359","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc0a882359","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1f17ba1c-a602-45a4-8e5b-7216a9d7fa72","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupdf0947708","lastDirSyncTime":null,"mail":null,"mailNickname":"groupdf0947708","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}],"odata.nextLink":"directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X''445370740200010000002A47726F75705F31663137626131632D613630322D343561342D386535622D3732313661396437666137322A47726F75705F31663137626131632D613630322D343561342D386535622D3732313661396437666137320000000000000000000000''"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['50835']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:13 GMT']
+ duration: ['1129144']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=]
+ ocp-aad-session-key: [AS_d-41apuRsBey5oYTpMUh1iNxD10jpJg7I8C31-z5stQvldpS-hwsd5rx0QGN69QY4rfhsHIQX5bqDleIXyNMs8RygNXoEpjyNDGyMGod8yS05Z12rwx9-yjptfRw3VaVkxU3VwHHSDGnWEhNRsuFZXlrhVK5pHfvJPgztkhKJXw_ie9xewntJvp_VKpvXbCT3kwU1XDl7-Ll-FtI2LA.2rTOZq9xdKZKwC_eGm1pucMC-g_tCU-Dyjzngh-D4wM]
+ pragma: [no-cache]
+ request-id: [bb0e42b4-5e22-45fc-ac27-d0dfcdefd64b]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: GET
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X'445370740200010000002A47726F75705F31663137626131632D613630322D343561342D386535622D3732313661396437666137322A47726F75705F31663137626131632D613630322D343561342D386535622D3732313661396437666137320000000000000000000000'&api-version=1.6
+ response:
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"1fcf23e7-0352-4443-a42a-7f82239471d5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7ec7049900739991","lastDirSyncTime":null,"mail":null,"mailNickname":"group17ec7049900739991","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"203d26eb-2cf2-4a31-adc7-262df7b884b6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 51975884efc88313","lastDirSyncTime":null,"mail":null,"mailNickname":"group251975884efc88313","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"20407612-7b89-42c3-8a6f-51c09903e5c3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group10a41034f","lastDirSyncTime":null,"mail":null,"mailNickname":"group10a41034f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"20b89b3c-230c-4504-b440-27cb9a34b691","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group701172938","lastDirSyncTime":null,"mail":null,"mailNickname":"group701172938","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"20cde767-50e5-46e7-bde6-ada896807125","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group30a724249","lastDirSyncTime":null,"mail":null,"mailNickname":"group30a724249","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"21453bd8-37d3-4653-a5a8-cc622c9d7b64","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group986329386","lastDirSyncTime":null,"mail":null,"mailNickname":"group986329386","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2181d52c-bb15-41da-b9e0-65449aa4f8b9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbfe463095","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbfe463095","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2243024d-5cbe-4012-b23d-ad6c036a6d8e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group170174626","lastDirSyncTime":null,"mail":null,"mailNickname":"group170174626","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2288406e-864d-4f68-a0fd-c36489950127","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1aa897001","lastDirSyncTime":null,"mail":null,"mailNickname":"group1aa897001","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"22ddd54e-142b-4abb-9ca8-8ab39101598b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group99724959c","lastDirSyncTime":null,"mail":null,"mailNickname":"group99724959c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2364248f-6cbd-4754-a095-32de12b8cca7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 565383641de800b2","lastDirSyncTime":null,"mail":null,"mailNickname":"group2565383641de800b2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"23b0ab2a-008a-4b00-94a0-5e1338ba9e3d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group195999705","lastDirSyncTime":null,"mail":null,"mailNickname":"group195999705","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"23c58865-f788-4f3d-92a7-7167c4d3a346","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbc7011932","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbc7011932","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2585a47f-13b7-407a-880e-328e7e85f5c8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 80f334890c634bdb","lastDirSyncTime":null,"mail":null,"mailNickname":"group180f334890c634bdb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"25d98cb8-8204-4fcd-9ea5-38f2801d2ebd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group92f397996","lastDirSyncTime":null,"mail":null,"mailNickname":"group92f397996","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"261ab4e4-cb00-4472-8a69-16311e2d9bbc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group15c07283a","lastDirSyncTime":null,"mail":null,"mailNickname":"group15c07283a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"262ac259-3aed-4fa7-b0a1-61262530f6b0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 1087180121e2e0d0","lastDirSyncTime":null,"mail":null,"mailNickname":"group11087180121e2e0d0","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"262e450e-a199-426a-96c8-8cfe2fd043f5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"grouped3860292","lastDirSyncTime":null,"mail":null,"mailNickname":"grouped3860292","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"267834e8-1504-4c5c-80fa-a663f370321a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 71569992bea979b4","lastDirSyncTime":null,"mail":null,"mailNickname":"group171569992bea979b4","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"26883f8f-8b60-466a-b431-5c01dd3748f6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e6b72881a23dd89d","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e6b72881a23dd89d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"26ecea76-e178-47a2-b53a-b25feb5c917a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd6467979c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd6467979c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"27d9252f-e9e4-4529-a1e3-b9f20f6580ec","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group42488900e3b84b54","lastDirSyncTime":null,"mail":null,"mailNickname":"group42488900e3b84b54","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2884363f-38a2-4cf1-b624-113e18639f77","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9d2681462","lastDirSyncTime":null,"mail":null,"mailNickname":"group9d2681462","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2901ca95-a243-4f69-b532-aed70fe36266","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group0d499004b","lastDirSyncTime":null,"mail":null,"mailNickname":"group0d499004b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"29ced2c0-625c-4c6c-b19b-924042f6fb75","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ c2653200cdae301d","lastDirSyncTime":null,"mail":null,"mailNickname":"group1c2653200cdae301d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2a48bb11-a294-44bf-9587-b5dc21ab4712","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 93993314bf6cda38","lastDirSyncTime":null,"mail":null,"mailNickname":"group293993314bf6cda38","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2aa7657e-962f-4ce5-a474-ef6d2745b347","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group0bb460448","lastDirSyncTime":null,"mail":null,"mailNickname":"group0bb460448","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2b5ecaa7-eef3-49e7-a092-4e3102d240ef","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4a8044532","lastDirSyncTime":null,"mail":null,"mailNickname":"group4a8044532","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2b9be8ec-676f-4f20-a709-af78a7be04b8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group607823685becf5b4","lastDirSyncTime":null,"mail":null,"mailNickname":"group607823685becf5b4","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2bafc632-30b1-4bd1-ad53-a918f24ff06e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc5895580b","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc5895580b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2be33bf8-ea54-445b-aeb7-8ecc9d3f5b7e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ cda06332f61af506","lastDirSyncTime":null,"mail":null,"mailNickname":"group2cda06332f61af506","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2c847110-a497-4562-b113-3fc038ed2dd8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf1482617e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf1482617e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2c953de7-8c8b-42c6-b9c6-e9f7d4d7fd2c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb6b922129","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb6b922129","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2cbc97ca-1a87-4381-9366-87821b4dd5ab","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9a1912103","lastDirSyncTime":null,"mail":null,"mailNickname":"group9a1912103","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2d229da4-436e-4783-a74f-2594c73d2fc0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 85d306474f3c9eb9","lastDirSyncTime":null,"mail":null,"mailNickname":"group185d306474f3c9eb9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2d7575aa-c9ff-4935-954d-86c5344e28c8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6576583743956023","lastDirSyncTime":null,"mail":null,"mailNickname":"group26576583743956023","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2d7c5095-794d-4943-b6c4-c51f0c7e2c90","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 04d8266845b18557","lastDirSyncTime":null,"mail":null,"mailNickname":"group104d8266845b18557","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2d80e977-8636-4e11-98be-350dc873697f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4c846171be1e9d62","lastDirSyncTime":null,"mail":null,"mailNickname":"group14c846171be1e9d62","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2df8b03a-c5da-4f8b-9d9e-998541f7af12","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ fdb93469d3c5dd10","lastDirSyncTime":null,"mail":null,"mailNickname":"group1fdb93469d3c5dd10","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2ec35b06-f89e-44b4-8668-3b7eb1787d36","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7f651744cb","lastDirSyncTime":null,"mail":null,"mailNickname":"group7f651744cb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2eda7575-2cf2-408d-a60a-f694f0f21554","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group53d90035f","lastDirSyncTime":null,"mail":null,"mailNickname":"group53d90035f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2f09ff6e-cea8-4231-bbb3-d40fb1fbf9ff","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group94f75282f","lastDirSyncTime":null,"mail":null,"mailNickname":"group94f75282f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"2f1f73e9-7d16-46e7-afa4-c36f7c68eb88","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a39935608cb6bc74","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a39935608cb6bc74","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3045982b-0f75-45f4-a125-1b6bf8954c0f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3d1527329","lastDirSyncTime":null,"mail":null,"mailNickname":"group3d1527329","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"30e912c9-bcce-4269-b470-537e0da1f2c9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbbf90250b78e672f","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbbf90250b78e672f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"30ebb4c3-a3ab-49ad-a08d-cfd8037a721c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb01519713","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb01519713","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"30f1211d-8045-49d6-94a6-b2b4bd91472c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 789311602cec3ee3","lastDirSyncTime":null,"mail":null,"mailNickname":"group1789311602cec3ee3","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"312bf43f-f003-43c4-8b24-96d6dcf3259f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b545501968190133","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b545501968190133","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"313fd0a0-1efe-4eda-81a9-f16a8fa63258","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 9c35875947fe75be","lastDirSyncTime":null,"mail":null,"mailNickname":"group19c35875947fe75be","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"314b0477-fcc8-458b-bed2-ecf246648cca","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6eb0657569ecda45","lastDirSyncTime":null,"mail":null,"mailNickname":"group26eb0657569ecda45","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"319f40e5-9d9b-488b-80d3-004d63698e04","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1d9831034","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d9831034","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"31adcb9d-b0c6-497a-a2b6-bee2d342f60f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd87656606","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd87656606","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"31bdd677-fc8e-4fcc-b8b7-186a9f5c4775","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2b9546808","lastDirSyncTime":null,"mail":null,"mailNickname":"group2b9546808","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"31ea8058-17f0-48d4-a03f-61cfef9df8cb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 938176921367248e","lastDirSyncTime":null,"mail":null,"mailNickname":"group2938176921367248e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"321467d3-37c9-4190-ad3f-739a42ab6903","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group68a01736ef48a5e8","lastDirSyncTime":null,"mail":null,"mailNickname":"group68a01736ef48a5e8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3262473e-81dc-4d82-b5d4-04f4d38514c8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa0e29706b","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa0e29706b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"332d39d6-fdaa-4179-8edd-357f0cf39094","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"grouped929651c","lastDirSyncTime":null,"mail":null,"mailNickname":"grouped929651c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"337b3ffd-2251-4d79-a447-b3ed2f746427","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7e5437511","lastDirSyncTime":null,"mail":null,"mailNickname":"group7e5437511","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"33854c75-c89f-4717-bdc7-b1086ec0833e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 41c029887c40b8c9","lastDirSyncTime":null,"mail":null,"mailNickname":"group141c029887c40b8c9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"33e3189b-1577-459e-9a45-4b02be48efd4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 97674346e7ba4ce7","lastDirSyncTime":null,"mail":null,"mailNickname":"group197674346e7ba4ce7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"33e68bba-0d7e-481d-8dbb-5313945c2b50","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"grouped40089580ff5d71","lastDirSyncTime":null,"mail":null,"mailNickname":"grouped40089580ff5d71","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"345984d5-112a-4c08-93ed-be47b043212f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7d2862186","lastDirSyncTime":null,"mail":null,"mailNickname":"group7d2862186","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"348dbdb8-4842-469e-bf37-45ae0198b18c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group23522561a","lastDirSyncTime":null,"mail":null,"mailNickname":"group23522561a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"34e62468-8e1a-4d30-ad16-704744ffcdd4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4db97599dbfc2a0e","lastDirSyncTime":null,"mail":null,"mailNickname":"group24db97599dbfc2a0e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"35093f17-0604-4e17-a47e-a96188259480","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ c9573129d44bc856","lastDirSyncTime":null,"mail":null,"mailNickname":"group2c9573129d44bc856","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"35f49825-b82a-44f6-8cda-4577a31b12e9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8dd639683","lastDirSyncTime":null,"mail":null,"mailNickname":"group8dd639683","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"36e37bc9-1907-407f-b9b9-e3ed150b0945","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 8bf67919062ee175","lastDirSyncTime":null,"mail":null,"mailNickname":"group28bf67919062ee175","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"36f67e2e-2e95-4b56-aaa7-c4c947659a7d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a1f713064a28f893","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a1f713064a28f893","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"379dd4c3-d3ac-4e0d-be09-050e7b1023c4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ afd49911e053ecf8","lastDirSyncTime":null,"mail":null,"mailNickname":"group1afd49911e053ecf8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"37af5dcf-6595-47fd-a347-03675a51a360","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd8b319796","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd8b319796","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"381ced6a-c8e0-41eb-844e-e56d08173cf6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group741368956","lastDirSyncTime":null,"mail":null,"mailNickname":"group741368956","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"384c71fc-fbf5-46ad-ab47-fda849c4bb9b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb73264557","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb73264557","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"386f0236-a3f8-4b46-bebd-1c17747b222a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group821570912","lastDirSyncTime":null,"mail":null,"mailNickname":"group821570912","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3a26b96d-a204-4cbb-b8b8-9daee6b3fe63","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc4b362006","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc4b362006","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3b182d14-bcd1-4077-b8aa-eb501aef4547","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8f1716992291b0f5","lastDirSyncTime":null,"mail":null,"mailNickname":"group8f1716992291b0f5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3b445b08-c650-4b0d-a8a1-0ff9dbf3d594","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe19597432","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe19597432","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3b7a6a2b-fd5c-41e9-8353-f93d74f05166","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 53043488d5638c40","lastDirSyncTime":null,"mail":null,"mailNickname":"group253043488d5638c40","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3b9bd6a2-ef9b-4ede-81d1-21966744b8ae","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 84a857035d8125eb","lastDirSyncTime":null,"mail":null,"mailNickname":"group284a857035d8125eb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3c609c2b-2e3c-450f-8944-52e57f4b6623","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group6af29441d","lastDirSyncTime":null,"mail":null,"mailNickname":"group6af29441d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3cae2693-3580-49ab-b735-86747e04a1e1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 79a309856be02fb9","lastDirSyncTime":null,"mail":null,"mailNickname":"group279a309856be02fb9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3cb1ef67-d61c-468e-bdca-79c8244b972b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb5883989d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb5883989d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3d498ece-6fb1-4da3-9d97-de76fd412712","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4772190906b984e7","lastDirSyncTime":null,"mail":null,"mailNickname":"group14772190906b984e7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3d8ad07c-8ded-4a3b-8829-23576a8254ba","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4078156122bab529","lastDirSyncTime":null,"mail":null,"mailNickname":"group24078156122bab529","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3dbf27e1-282b-4090-a5b2-6716dcf53093","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ee310101741bd5b7","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ee310101741bd5b7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3e9a90ae-90b7-4e87-ac2f-3a2157fd6aa1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group08273772e","lastDirSyncTime":null,"mail":null,"mailNickname":"group08273772e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3ec02da7-8cff-4082-978e-c800b0b0369d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group5c779038c","lastDirSyncTime":null,"mail":null,"mailNickname":"group5c779038c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3f283c02-783a-4774-b4cd-4ce7bb53bd81","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group040095533","lastDirSyncTime":null,"mail":null,"mailNickname":"group040095533","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3f968cd6-1bda-475f-8935-07b12ddfa743","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e2394832c589b297","lastDirSyncTime":null,"mail":null,"mailNickname":"group1e2394832c589b297","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3fbf993a-fa3c-4064-b3bd-86c1f4b8199d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb5f673784","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb5f673784","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"3ff30968-58d1-42a0-b1ae-efdaec55bda5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 48a453973d382ec9","lastDirSyncTime":null,"mail":null,"mailNickname":"group148a453973d382ec9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4010c4d4-5185-4945-a6f3-588abb712146","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 18d70702b97d2d75","lastDirSyncTime":null,"mail":null,"mailNickname":"group218d70702b97d2d75","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"406e7667-3afc-4aaa-aff5-8e63e1a1ac0d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2dd197081b7c8d58","lastDirSyncTime":null,"mail":null,"mailNickname":"group12dd197081b7c8d58","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"40fc6b7f-d2c7-43a8-abc9-e6c8b1bb851d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc1754907c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc1754907c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"41f9183f-7341-4b1f-8729-927bf8a601cb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group238680605","lastDirSyncTime":null,"mail":null,"mailNickname":"group238680605","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4358969a-a934-4e49-a1d4-c32cec2cca86","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa4734867021ce9e7","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa4734867021ce9e7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4418736f-eccc-43c7-8fc5-7e887df945f7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 44396822acb74042","lastDirSyncTime":null,"mail":null,"mailNickname":"group144396822acb74042","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"44d44083-7dc2-485f-9cae-b078181c3927","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 211756005f004257","lastDirSyncTime":null,"mail":null,"mailNickname":"group2211756005f004257","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"45756799-4002-40bd-83d3-19b8bfb6b55b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 57d24391761b14b8","lastDirSyncTime":null,"mail":null,"mailNickname":"group257d24391761b14b8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"45c2cb43-7590-4a92-bedb-e15b1846bb48","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group91635073f","lastDirSyncTime":null,"mail":null,"mailNickname":"group91635073f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"462db65f-4f79-4315-870e-24b760b4b8d7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 168846086aed5af7","lastDirSyncTime":null,"mail":null,"mailNickname":"group1168846086aed5af7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}],"odata.nextLink":"directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X''445370740200002A47726F75705F31666366323365372D303335322D343434332D613432612D3766383232333934373164352A47726F75705F31666366323365372D303335322D343434332D613432612D376638323233393437316435002A47726F75705F34363264623635662D346637392D343331352D383730652D3234623736306234623864372A47726F75705F34363264623635662D346637392D343331352D383730652D3234623736306234623864370000000000000000000000''"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['51195']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:12 GMT']
+ duration: ['945685']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=]
+ ocp-aad-session-key: [xQZLeoWWq9ijzPxX2kQKrxyr7cO5mKIhA_t3EOUwduP89ixGx_KdHi_ARQUJlEthidTfJIhyzZBkAi6H_s0cVDU16vqEOP_pdBqJj-_sXCKw7hbbhk2gQlkvl6qx2i7Y_8CTPRWwX8Y7zlzztijkrmHKOw0qcRquWd0Mhcr8g6PxIT3JQ9mB2F_gxqiSZq2x0dVJ-1eGebZIQaIiuVSsqA.Qjqxrw7pIhZixsncqDVZA5Q1A-shUpsSoe6zP5L45QU]
+ pragma: [no-cache]
+ request-id: [8cdf54a6-a77d-4855-9ae8-2c76236369ed]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: GET
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X'445370740200002A47726F75705F31666366323365372D303335322D343434332D613432612D3766383232333934373164352A47726F75705F31666366323365372D303335322D343434332D613432612D376638323233393437316435002A47726F75705F34363264623635662D346637392D343331352D383730652D3234623736306234623864372A47726F75705F34363264623635662D346637392D343331352D383730652D3234623736306234623864370000000000000000000000'&api-version=1.6
+ response:
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"46e032f2-43a4-4601-aff1-3b1d8d75ba90","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9b474185b","lastDirSyncTime":null,"mail":null,"mailNickname":"group9b474185b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4710fd56-36e0-41ee-b1d6-15db75808858","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group46d685068","lastDirSyncTime":null,"mail":null,"mailNickname":"group46d685068","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"472e974b-3c43-4a0c-ba34-d2d55d9aa146","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group77b009170","lastDirSyncTime":null,"mail":null,"mailNickname":"group77b009170","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4785fcec-6009-47b8-a6d3-85b85847d30f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 22168197340624fe","lastDirSyncTime":null,"mail":null,"mailNickname":"group122168197340624fe","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"478f2780-b2ca-4a55-af99-8132c5c684a6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ff043224233446fd","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ff043224233446fd","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"479c684c-e5b5-4291-9aab-82c17ba2495e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 912190881722e440","lastDirSyncTime":null,"mail":null,"mailNickname":"group1912190881722e440","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"47a1966d-69ed-493d-800d-43c5ec220799","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group64973104f","lastDirSyncTime":null,"mail":null,"mailNickname":"group64973104f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"47a4e436-0ff5-4bc3-9049-9c5d385fae4d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 89f833545cffe70b","lastDirSyncTime":null,"mail":null,"mailNickname":"group189f833545cffe70b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4880c29e-1a85-4c4f-95fb-a2017e587703","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc4f665369","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc4f665369","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"49fd259b-d772-4949-93bc-4abe26f5244d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf5625693e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf5625693e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4a35531f-c0d3-49b7-9919-093af40fb054","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d9646528087ddf42","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d9646528087ddf42","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4aa674c6-8837-4fda-a67f-efd6df69ab93","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group0de704964","lastDirSyncTime":null,"mail":null,"mailNickname":"group0de704964","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4ae25059-4cfd-44ca-8f47-93d36b125d70","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group355886836","lastDirSyncTime":null,"mail":null,"mailNickname":"group355886836","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4b2d6902-704c-46a7-a12b-18db912c9127","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6f7304475866cb26","lastDirSyncTime":null,"mail":null,"mailNickname":"group16f7304475866cb26","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4b5ca99d-4a97-4cb9-8c4a-8e0bf4f76ed0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 42f05738304d1349","lastDirSyncTime":null,"mail":null,"mailNickname":"group242f05738304d1349","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4b62ad1d-75fa-47ad-a585-189a4a6705c5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8b89571275d41477","lastDirSyncTime":null,"mail":null,"mailNickname":"group8b89571275d41477","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4c00cbca-b049-46de-a32a-526b28885d00","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ed426898ee5326bc","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ed426898ee5326bc","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4c218ed9-39b0-4bdf-b64a-00270d9a342b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 31b5982780249a15","lastDirSyncTime":null,"mail":null,"mailNickname":"group231b5982780249a15","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4c42d65d-3001-4770-9924-8fa6d60744cd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa3c960565f5198fb","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa3c960565f5198fb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4c469138-e408-4521-bef8-8bb85bbe7b5c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 51d3149757d6698f","lastDirSyncTime":null,"mail":null,"mailNickname":"group251d3149757d6698f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4c48d054-cab1-49fd-88aa-dd5d9a3dd2fa","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group55d762327","lastDirSyncTime":null,"mail":null,"mailNickname":"group55d762327","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4d363785-ca29-41aa-b280-be18312827a3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2b272479307e0e70","lastDirSyncTime":null,"mail":null,"mailNickname":"group22b272479307e0e70","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4d5c905d-c26d-46f5-b6af-9424f124fd4b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd38031407","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd38031407","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4db122df-8ee6-4367-9f08-74af1532e470","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa04652140","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa04652140","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4dd8602d-677e-42c7-beaf-834fa9c8c6a0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group40f296742","lastDirSyncTime":null,"mail":null,"mailNickname":"group40f296742","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4e23dc99-dc59-4bf5-b106-065600e0c647","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e7113724cebc7fbe","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e7113724cebc7fbe","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"4f34b684-227f-49e5-8c0e-b701fed89eb1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"testgroup_display","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup_nickname","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"50a27747-9cd8-4d51-a585-c480a5123d14","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb4b393212","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb4b393212","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"50f3e2d9-a544-4a22-ac52-39e5921d23d1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupef522631a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupef522631a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"50fa3d97-8adf-4678-ab5f-777f0f9e144e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1e003671a","lastDirSyncTime":null,"mail":null,"mailNickname":"group1e003671a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"51180eea-604e-45b5-813c-a142440aaf58","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group785601042","lastDirSyncTime":null,"mail":null,"mailNickname":"group785601042","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"524888e3-f0fb-49c9-9766-0a64db598343","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d6f584406fe99e88","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d6f584406fe99e88","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5270bcaf-b8ce-4387-96f9-3158b91f9dac","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf256478901bbbc74","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf256478901bbbc74","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"52f09fe6-b074-4604-a534-5dd63540c653","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 09395762ddd48ac8","lastDirSyncTime":null,"mail":null,"mailNickname":"group209395762ddd48ac8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"53855bae-3148-41ca-83c1-a4b827cd7077","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 5359234390414e95","lastDirSyncTime":null,"mail":null,"mailNickname":"group25359234390414e95","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"54222beb-be1f-4b55-a37c-56a2a93ca588","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d3e513299a47f467","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d3e513299a47f467","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"54803917-4c71-4d6c-8bdf-bbd931010f8c","deletionTimestamp":null,"description":"second
+ group","dirSyncEnabled":null,"displayName":"secondgroup","lastDirSyncTime":null,"mail":null,"mailNickname":"207c00f0-b213-43a1-bb77-cd248de0dd8b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"54a0f595-824a-44cc-be17-10867973ce33","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ebc5435632aa9771","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ebc5435632aa9771","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"54ef0f63-16a0-4bc2-9bac-4ab43cb8dcd6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8b3118158","lastDirSyncTime":null,"mail":null,"mailNickname":"group8b3118158","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5519f335-d490-4328-bd66-e271da9226a0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4cc65396c60ca426","lastDirSyncTime":null,"mail":null,"mailNickname":"group4cc65396c60ca426","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5559ca8e-9d18-473f-832f-f927f44bb408","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4fb525559d83804e","lastDirSyncTime":null,"mail":null,"mailNickname":"group4fb525559d83804e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5574cd80-bb77-4057-858e-6259b1e84746","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 89e2311079e78d11","lastDirSyncTime":null,"mail":null,"mailNickname":"group189e2311079e78d11","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"55e3457a-2336-44b4-90ba-dbc3b930dffe","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4dd1927186c48797","lastDirSyncTime":null,"mail":null,"mailNickname":"group24dd1927186c48797","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"56a46b72-abe0-477d-a9d7-d5ad4d153ab1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb2530570c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb2530570c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"581b403b-b352-4f3b-a39c-d7cbba970f2f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group96d445046","lastDirSyncTime":null,"mail":null,"mailNickname":"group96d445046","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"587b26b3-8e9c-4e75-842b-e59804611023","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group294828138","lastDirSyncTime":null,"mail":null,"mailNickname":"group294828138","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"58a2c4a9-d495-4cf2-9fa2-0f3a226ee26a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group641537458","lastDirSyncTime":null,"mail":null,"mailNickname":"group641537458","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"58b6d745-d9c3-4eba-85c3-dbf850e69d20","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d146065019179644","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d146065019179644","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"58c1d62b-7a6f-48bd-926d-690c735f6f83","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4ff957647197b957","lastDirSyncTime":null,"mail":null,"mailNickname":"group24ff957647197b957","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5919d92c-cbb3-4ae7-8d88-46c49123405c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ bdb62008cf01948c","lastDirSyncTime":null,"mail":null,"mailNickname":"group2bdb62008cf01948c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"597f5860-e7ff-408c-a668-82c49053130e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group5bb150746","lastDirSyncTime":null,"mail":null,"mailNickname":"group5bb150746","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"59e2af5d-2673-4432-bbec-0b8ca5ddce25","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e96933804e06eea7","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e96933804e06eea7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"59e306b9-d318-4bb9-a0d4-43be0db8bb2a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group79f991335","lastDirSyncTime":null,"mail":null,"mailNickname":"group79f991335","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"59f7896c-5672-4b0b-b7ca-8eb329fd5aee","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a837078051199134","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a837078051199134","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5a1c7d23-791f-4bad-9fd5-23cf8ad88983","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group09b04642b71ad101","lastDirSyncTime":null,"mail":null,"mailNickname":"group09b04642b71ad101","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5b0caef7-743b-4f59-a99b-7e89dc2fef64","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 02e63077f1ab23e1","lastDirSyncTime":null,"mail":null,"mailNickname":"group202e63077f1ab23e1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5b381230-dfc7-4b42-935b-4d033246bb3c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7f7478861","lastDirSyncTime":null,"mail":null,"mailNickname":"group7f7478861","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5bb51750-3d29-4278-82a7-54d40935a784","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group420226451","lastDirSyncTime":null,"mail":null,"mailNickname":"group420226451","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5bc9a586-3636-4cb5-88cb-d3053e32f3be","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e267898153675012","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e267898153675012","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5bca791f-0e44-4194-90a7-7a67e0e2a6b6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group6c6015294be0f12a","lastDirSyncTime":null,"mail":null,"mailNickname":"group6c6015294be0f12a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5c11d551-1fb7-4244-8c91-510b947e2541","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"TestOwner","lastDirSyncTime":null,"mail":null,"mailNickname":"TestOwner","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5c25e8e1-431d-45d4-b643-443cfa776251","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group44d24834b","lastDirSyncTime":null,"mail":null,"mailNickname":"group44d24834b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5c93cf50-4811-4e9f-9842-6b8f8a84ddeb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group6a6447596","lastDirSyncTime":null,"mail":null,"mailNickname":"group6a6447596","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5ca6aa98-d382-45e2-842b-71dd70b67ecb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e1e836475ef27744","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e1e836475ef27744","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5cf54708-8065-4aa2-9f41-f5883dcbcf99","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group72d462100","lastDirSyncTime":null,"mail":null,"mailNickname":"group72d462100","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5d318ad5-d09e-4364-9dd6-f97d3a8c7465","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 39a23997b7644903","lastDirSyncTime":null,"mail":null,"mailNickname":"group239a23997b7644903","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5d820793-3b66-414b-9ff3-afbd14f4ac03","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1d0483895","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d0483895","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5e4e8faf-b8cf-486e-9c04-dba19e4177a8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ba070939f0693d4b","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ba070939f0693d4b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5ea6d888-6ef6-4800-b5b5-2c90fbe26775","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbd350584f","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbd350584f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5ede48cf-c632-472d-91d2-62ef66460825","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"wilx-ad-group","lastDirSyncTime":null,"mail":null,"mailNickname":"aa","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5f4a32d0-4e9a-4075-bdcc-4ef75da1fb0f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe1824552254c2fae","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe1824552254c2fae","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5f4aedfb-3de0-430a-991c-4e621fd74907","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a5c80147c1a2031b","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a5c80147c1a2031b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"5fa60fbf-3c54-4133-b587-01005bf5f9f3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group99216966c","lastDirSyncTime":null,"mail":null,"mailNickname":"group99216966c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"605cfbed-72b3-4761-a036-c8501b679c97","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2f336325ddb205f1","lastDirSyncTime":null,"mail":null,"mailNickname":"group12f336325ddb205f1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"60a1acb9-1940-4e83-a0e2-be6aa45f53ef","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group103926338","lastDirSyncTime":null,"mail":null,"mailNickname":"group103926338","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"61af98de-8558-4c4c-a810-6acf4fb845c0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupacb587539","lastDirSyncTime":null,"mail":null,"mailNickname":"groupacb587539","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"61bc3910-0f5b-44c7-a550-380aea835534","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group027581964","lastDirSyncTime":null,"mail":null,"mailNickname":"group027581964","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6261f878-581e-4310-a73a-196e8bcc280c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b6166023c2c3aa33","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b6166023c2c3aa33","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"62b716f3-daf8-4cad-b41b-19650409327f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd6b47671a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd6b47671a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"62bc02c0-1d0e-4105-a823-ff9613ea113c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7d2898540acf42e2","lastDirSyncTime":null,"mail":null,"mailNickname":"group17d2898540acf42e2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"63485bd0-a994-4a74-b3a2-09272895353d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group159847605","lastDirSyncTime":null,"mail":null,"mailNickname":"group159847605","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"634bcc9d-f8e5-414c-816e-ef88fde629b7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group29a10866a4e3c2ae","lastDirSyncTime":null,"mail":null,"mailNickname":"group29a10866a4e3c2ae","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"642e7999-bb15-4a14-ac08-a2215dc99a3f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 79046262928c4bc0","lastDirSyncTime":null,"mail":null,"mailNickname":"group279046262928c4bc0","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"644f5602-ca69-4186-9249-372ab29b8500","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"grouped539640d","lastDirSyncTime":null,"mail":null,"mailNickname":"grouped539640d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"657a37cb-276c-454b-869b-43a8bf5e463d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group60e05687e","lastDirSyncTime":null,"mail":null,"mailNickname":"group60e05687e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"661d340d-94f6-4cea-8f64-689b2a4a8db3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa31784382","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa31784382","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"664a93d4-c7db-4101-bcc2-2d011db4a1ce","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3eb91009d","lastDirSyncTime":null,"mail":null,"mailNickname":"group3eb91009d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"664d7513-319e-4733-a252-62c7b6d0f109","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 9de09277723f5612","lastDirSyncTime":null,"mail":null,"mailNickname":"group19de09277723f5612","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"67b0ed4e-5cad-473e-b2ce-a723b6027759","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ bf46952969c95d7f","lastDirSyncTime":null,"mail":null,"mailNickname":"group2bf46952969c95d7f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"67e3dbd8-de6e-4626-9a4c-2893e5633f7e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc4140998d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc4140998d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"681b7e85-02ea-4275-b9aa-cb2ea12713bf","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a3d92755d8f5dbd5","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a3d92755d8f5dbd5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"682f31c1-7b15-4188-9552-5a733441bb7c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group375938803","lastDirSyncTime":null,"mail":null,"mailNickname":"group375938803","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6834ec89-3049-4c9b-8538-f64ada745c47","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 82d2383270fee74a","lastDirSyncTime":null,"mail":null,"mailNickname":"group182d2383270fee74a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"68bb2d17-a361-4048-a3e8-67e0d46da5b3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ff4349798f49eb5f","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ff4349798f49eb5f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6a22a51c-01cb-4313-93b2-3645bcdb1aaa","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group27607980b","lastDirSyncTime":null,"mail":null,"mailNickname":"group27607980b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6aa8c449-d5da-4761-90ce-257c3ae7e060","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ c6330515f01e4f3a","lastDirSyncTime":null,"mail":null,"mailNickname":"group2c6330515f01e4f3a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6ab6e99e-04d7-43ba-8188-3cbb4bea9776","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group218795382","lastDirSyncTime":null,"mail":null,"mailNickname":"group218795382","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6ac026f2-8dab-4c12-95c7-6be01e7eed11","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group28a63026d","lastDirSyncTime":null,"mail":null,"mailNickname":"group28a63026d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6b232c83-0052-43c5-a344-61604d58e61c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1b612995d","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b612995d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6c2ccdd6-1fb1-4592-9fc9-0056e9682732","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e41166435db38da5","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e41166435db38da5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}],"odata.nextLink":"directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X''445370740200002A47726F75705F34366530333266322D343361342D343630312D616666312D3362316438643735626139302A47726F75705F34366530333266322D343361342D343630312D616666312D336231643864373562613930002A47726F75705F36633263636464362D316662312D343539322D396663392D3030353665393638323733322A47726F75705F36633263636464362D316662312D343539322D396663392D3030353665393638323733320000000000000000000000''"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['51218']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:12 GMT']
+ duration: ['2886343']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=]
+ ocp-aad-session-key: [UU9djiwgNiJzvN1TnSQh9xMJPhSw3PbsIYbxEWs_Otg6sX2hwZz4KRv4etFTAkhQCiGyE68hnkmCTU81QbsNY5BkCorEAb-2yDSKpE5tvhxGg0tnjjLN8UHmQkPs8gVnwE8XM9egf4y86GHT-9SEWqE_C70a62VNER6GzDbcSELFHpqMOu7AeXSDj7DiI3SJD5VuP01ttkpc7VGK8RXYZw.3JhViKTUTE19ILhqK7SEKBMW3dGW2WZIwCT3AP9-U-4]
+ pragma: [no-cache]
+ request-id: [bb7c5f3c-8672-4ee1-90e1-3decef3a4582]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: GET
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X'445370740200002A47726F75705F34366530333266322D343361342D343630312D616666312D3362316438643735626139302A47726F75705F34366530333266322D343361342D343630312D616666312D336231643864373562613930002A47726F75705F36633263636464362D316662312D343539322D396663392D3030353665393638323733322A47726F75705F36633263636464362D316662312D343539322D396663392D3030353665393638323733320000000000000000000000'&api-version=1.6
+ response:
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6c2dbaef-c468-4c93-ad92-a4f90e86e2ce","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group240622246","lastDirSyncTime":null,"mail":null,"mailNickname":"group240622246","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6c8f5dcd-c334-4dd6-ac80-ca6b38715a7e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupee1199992","lastDirSyncTime":null,"mail":null,"mailNickname":"groupee1199992","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6cbb2356-2061-4bf5-bf18-494e478263cc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 81773955d1e959fa","lastDirSyncTime":null,"mail":null,"mailNickname":"group281773955d1e959fa","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6cd1dc1f-7369-46ea-b658-93e576b6cf83","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 3d008347886e1c9c","lastDirSyncTime":null,"mail":null,"mailNickname":"group23d008347886e1c9c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6cdf862b-af7a-4a0d-bb45-5671e2cdad4c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ c9661085d1009d06","lastDirSyncTime":null,"mail":null,"mailNickname":"group2c9661085d1009d06","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6cf6a72f-faed-4780-bc42-0a6d966cbb0f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 5ce78186d95bf402","lastDirSyncTime":null,"mail":null,"mailNickname":"group15ce78186d95bf402","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6d33c51d-4063-4b6b-a698-1d3a6b33d5ce","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group094979544","lastDirSyncTime":null,"mail":null,"mailNickname":"group094979544","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6d8ae563-a975-4158-879a-6334a695c854","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf1756695e09a339e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf1756695e09a339e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6dd8765d-a5fe-4c4d-a866-d6b2b4f49532","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 96f63299bb586279","lastDirSyncTime":null,"mail":null,"mailNickname":"group196f63299bb586279","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6de79760-d00a-4518-9624-04990b185557","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe64676248","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe64676248","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6e36c50f-02b0-43b7-aa7a-70daaae4c915","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a4c387245fa6d1dd","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a4c387245fa6d1dd","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6ec79fcf-5014-42a4-bd76-1cdb74ec5d46","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group38f506623","lastDirSyncTime":null,"mail":null,"mailNickname":"group38f506623","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6f6bbd0e-023e-43f6-8867-4b430562ee7f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa23951142","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa23951142","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6f703d2d-3fac-4feb-a666-239e0a6c9a26","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group889960795","lastDirSyncTime":null,"mail":null,"mailNickname":"group889960795","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"6f772257-88e0-4c8b-85b2-7e00f472cb0e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 40179303d25c29e2","lastDirSyncTime":null,"mail":null,"mailNickname":"group140179303d25c29e2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7076f876-d4a0-45e0-b533-857c959fbb88","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group25278247e","lastDirSyncTime":null,"mail":null,"mailNickname":"group25278247e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"70f92d02-dccd-42b6-941c-d272bc89ae89","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2eb42922178444a1","lastDirSyncTime":null,"mail":null,"mailNickname":"group22eb42922178444a1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"712de37c-e34b-467b-95c3-c2c4ed2c101d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 824341733826c31b","lastDirSyncTime":null,"mail":null,"mailNickname":"group2824341733826c31b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7193ea9c-e3f5-48dc-b849-b68c2ad2c992","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 364982487152bef0","lastDirSyncTime":null,"mail":null,"mailNickname":"group1364982487152bef0","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"71c33fa7-47b2-486f-a691-90ae2b252446","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6be09476199186ad","lastDirSyncTime":null,"mail":null,"mailNickname":"group16be09476199186ad","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"72147f3a-6d33-4787-a12d-23e47031d1a1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3b522146e","lastDirSyncTime":null,"mail":null,"mailNickname":"group3b522146e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"72462d7c-d73a-447f-ae03-13c5873ff202","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ acc5700552bd5b7b","lastDirSyncTime":null,"mail":null,"mailNickname":"group2acc5700552bd5b7b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7276fffe-dfd5-4f68-b382-4f4b27bbb3ed","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e0e72428deb6b9f5","lastDirSyncTime":null,"mail":null,"mailNickname":"group1e0e72428deb6b9f5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7280cc3e-351f-4ba6-adce-e20a5409d220","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 3a84106670ba2bac","lastDirSyncTime":null,"mail":null,"mailNickname":"group23a84106670ba2bac","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7287bc2f-f8fb-42b7-b81e-40a5f4578c56","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 1d2210608c6b5e36","lastDirSyncTime":null,"mail":null,"mailNickname":"group21d2210608c6b5e36","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"72a8fb40-1b9c-468b-8137-b3bfc865d584","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group48673644a","lastDirSyncTime":null,"mail":null,"mailNickname":"group48673644a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"72b198f1-b529-4fae-b735-b754bd531f4c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group560129779","lastDirSyncTime":null,"mail":null,"mailNickname":"group560129779","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"731b9509-e489-4336-af6c-f79c444a637f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group38000436e","lastDirSyncTime":null,"mail":null,"mailNickname":"group38000436e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"733e4aee-b3eb-430a-865e-a0d3c7397058","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2c5612451","lastDirSyncTime":null,"mail":null,"mailNickname":"group2c5612451","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"735da198-14f1-46a9-b835-819117edddec","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group58b506003","lastDirSyncTime":null,"mail":null,"mailNickname":"group58b506003","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"735fc3cb-cbde-485b-b072-fa15aabac7ca","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ c3453003dd941d8b","lastDirSyncTime":null,"mail":null,"mailNickname":"group2c3453003dd941d8b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"741f5bd0-26f4-42ad-b21d-28c87fd7ffe1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc5f170754","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc5f170754","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"743ae5c7-1b62-4849-85a4-b9811586045c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 1324711577c83a59","lastDirSyncTime":null,"mail":null,"mailNickname":"group21324711577c83a59","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7440b8a6-633b-4268-bc3b-18b07d6c08e2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 91044655107044ae","lastDirSyncTime":null,"mail":null,"mailNickname":"group191044655107044ae","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7491e6d9-e7df-492b-9145-77bc4cee1795","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group47e696692","lastDirSyncTime":null,"mail":null,"mailNickname":"group47e696692","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"74f7e18a-fe03-4b5b-ae1f-fcab87a54bd0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1b7023737","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b7023737","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"755d8577-004d-43d2-aec0-2fc386ab39dd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4b798470b","lastDirSyncTime":null,"mail":null,"mailNickname":"group4b798470b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"76b2bca1-8f7f-4300-b969-4cae9b77ec95","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ bb96693383bf9bb0","lastDirSyncTime":null,"mail":null,"mailNickname":"group1bb96693383bf9bb0","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"76ca4979-6c97-45ce-a7d0-c92d8e6104b5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd8143439287bf326","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd8143439287bf326","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7702528f-a452-4bf4-8b29-6afcaea97eb7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group12a17579cc097702","lastDirSyncTime":null,"mail":null,"mailNickname":"group12a17579cc097702","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"77382700-34db-482b-bcab-6d03f25d467b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupfd3537833","lastDirSyncTime":null,"mail":null,"mailNickname":"groupfd3537833","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"778274fd-eb51-4bb4-a32d-04f39529f8c6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6c53738978b58b17","lastDirSyncTime":null,"mail":null,"mailNickname":"group16c53738978b58b17","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"77c3e9fc-2288-419b-b2c0-6361ddc7c4c4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupfec351896","lastDirSyncTime":null,"mail":null,"mailNickname":"groupfec351896","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"78364b65-4acf-4697-9060-b13eb4a6224b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group6d8954620","lastDirSyncTime":null,"mail":null,"mailNickname":"group6d8954620","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"78901456-d3d4-43c8-9a42-939aaaf8bc3b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group02549897b","lastDirSyncTime":null,"mail":null,"mailNickname":"group02549897b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"78fca536-7540-4545-9f77-6a000bbe823d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1b766944a","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b766944a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"792e0f75-9dce-4a21-b821-1c5afedf93e9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3ed062583","lastDirSyncTime":null,"mail":null,"mailNickname":"group3ed062583","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"794f5726-b9b0-48b9-a1e4-d9ba5033e347","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 9c716515ef4c9def","lastDirSyncTime":null,"mail":null,"mailNickname":"group29c716515ef4c9def","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7952ccf6-a1ac-4005-84dc-2771c6fc9c32","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 35e811485a21bc2c","lastDirSyncTime":null,"mail":null,"mailNickname":"group235e811485a21bc2c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7999e41f-9ae0-41e1-a0f5-761c172fdf98","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb16676100","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb16676100","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7a41b7d1-8c7d-4cc0-bdd3-5cbebbbd8abb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe6d628267","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe6d628267","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7a6463ab-6481-4d71-9c28-cf6f00d07f7f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ c7a620115fd9e3b4","lastDirSyncTime":null,"mail":null,"mailNickname":"group1c7a620115fd9e3b4","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7b183ca7-b995-4073-8888-02f4796867da","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group0a7515337","lastDirSyncTime":null,"mail":null,"mailNickname":"group0a7515337","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7ba3ba65-1428-403b-a535-2ec8ed458e71","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6e651233162a72c5","lastDirSyncTime":null,"mail":null,"mailNickname":"group16e651233162a72c5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7bfe6817-5e38-4e22-9466-fbc4ef673dfa","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"java-azure-group-23","lastDirSyncTime":null,"mail":null,"mailNickname":"java","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7bff424b-b972-4672-9d55-3eb0d6376bb2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 8653204637cee103","lastDirSyncTime":null,"mail":null,"mailNickname":"group28653204637cee103","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7c202841-23c3-4861-b5c0-a67afb64bbbd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 9bf60972b4a48cb3","lastDirSyncTime":null,"mail":null,"mailNickname":"group19bf60972b4a48cb3","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7d6220de-d088-43fc-8cf7-c79e01e1fa00","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group107718614","lastDirSyncTime":null,"mail":null,"mailNickname":"group107718614","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7db3cd4c-87d1-45d7-9923-7fecd97e38e6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 12a5251085c22999","lastDirSyncTime":null,"mail":null,"mailNickname":"group212a5251085c22999","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7e4dc44e-db6f-45fc-b8e3-7663502ef9fa","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6590188028d97374","lastDirSyncTime":null,"mail":null,"mailNickname":"group26590188028d97374","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7e868739-6cac-47b9-b904-2c612db6a382","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ca616514b1186a1a","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ca616514b1186a1a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7f0cb886-dd35-4421-960c-13dfd0acd68e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf7458016d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf7458016d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7f3edc71-1070-4436-a260-3bb0b57a5f45","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group28f488739","lastDirSyncTime":null,"mail":null,"mailNickname":"group28f488739","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7f8d2fcb-a254-43da-93a9-859abc64751b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group206074123b82bc68","lastDirSyncTime":null,"mail":null,"mailNickname":"group206074123b82bc68","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"7ffcbd07-6c9d-4201-8e12-85d09285dbbc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group54769835b","lastDirSyncTime":null,"mail":null,"mailNickname":"group54769835b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"802b1669-7731-4406-92cd-b5b1233cc38a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 5c57815358dccb0c","lastDirSyncTime":null,"mail":null,"mailNickname":"group15c57815358dccb0c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8031b5c3-de99-4cf7-9b8e-bbf635cafb06","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group34e097390","lastDirSyncTime":null,"mail":null,"mailNickname":"group34e097390","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"80423274-29a1-4b7d-b47f-3e8e12af929e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc6d324228","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc6d324228","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8069d1c1-d994-4aba-aad4-a69d5955ae92","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group10e03084f","lastDirSyncTime":null,"mail":null,"mailNickname":"group10e03084f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"80901e28-f734-453e-8358-e9129d10c87a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbe7539364","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbe7539364","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"818767ad-db0a-455c-ac60-a463c27b1448","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4c17421508fe462d","lastDirSyncTime":null,"mail":null,"mailNickname":"group24c17421508fe462d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"828c0f18-377a-4f5e-a98d-172d5ac4461f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group909316833","lastDirSyncTime":null,"mail":null,"mailNickname":"group909316833","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"83a1fc04-25eb-4791-a4c6-9e80aa5911f3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7108832837e8d8cb","lastDirSyncTime":null,"mail":null,"mailNickname":"group17108832837e8d8cb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"83c1cc22-6f66-4cea-b055-25493cdf2aa7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group20e729209","lastDirSyncTime":null,"mail":null,"mailNickname":"group20e729209","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"84500eb8-3e57-40f0-bd00-1b57a09dfb90","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group771423717","lastDirSyncTime":null,"mail":null,"mailNickname":"group771423717","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"846c07f9-8247-4e16-954c-f631e211d756","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group78b75728a","lastDirSyncTime":null,"mail":null,"mailNickname":"group78b75728a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"85316f0b-092f-41b3-b8b4-b2ef9c2f420f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group99b093418","lastDirSyncTime":null,"mail":null,"mailNickname":"group99b093418","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8539c560-9700-4a6e-bfbc-c31b576f7950","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ddc084519488f13f","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ddc084519488f13f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"86582325-d203-40b6-b6f8-1fc90eacca4d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupaf2408195","lastDirSyncTime":null,"mail":null,"mailNickname":"groupaf2408195","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"868da678-d4c3-4157-92c9-12bc35b55cb1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 438313680f993cb4","lastDirSyncTime":null,"mail":null,"mailNickname":"group2438313680f993cb4","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"86b3afe7-4594-473d-b564-456fcc459245","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 8d297361fec4e56d","lastDirSyncTime":null,"mail":null,"mailNickname":"group28d297361fec4e56d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"86ed605b-1c64-4ac5-b261-139806bd2a74","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1d272574a","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d272574a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"87607313-aa4b-4639-b581-b7da12b56fbc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group50b097962","lastDirSyncTime":null,"mail":null,"mailNickname":"group50b097962","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8781239f-de5f-4e99-b39a-27feb8b1493f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group735914920","lastDirSyncTime":null,"mail":null,"mailNickname":"group735914920","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"878300eb-04d5-44e7-b104-95c1d651bf37","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 92059782d3006037","lastDirSyncTime":null,"mail":null,"mailNickname":"group292059782d3006037","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"87efe87a-d68f-44b5-8727-c21e86beea78","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupea3825847","lastDirSyncTime":null,"mail":null,"mailNickname":"groupea3825847","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"88573d99-fc4f-4f8c-9c4f-af2a0d293a4b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4eb54632afa419ca","lastDirSyncTime":null,"mail":null,"mailNickname":"group14eb54632afa419ca","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"88ce9d02-2ad3-4efc-82af-973dfbdc7fb6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group18346180e","lastDirSyncTime":null,"mail":null,"mailNickname":"group18346180e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"89302a64-5e2e-4ed8-ac8e-8bfe73a04d88","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e8b2059680639796","lastDirSyncTime":null,"mail":null,"mailNickname":"group1e8b2059680639796","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8951f294-c258-4b6f-ba91-847511b19dca","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d4d80183f978c27f","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d4d80183f978c27f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"89603e53-d6b1-40b4-8b19-0446d5932d4b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group5d7844879","lastDirSyncTime":null,"mail":null,"mailNickname":"group5d7844879","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"89b0fcfc-f2c6-43fe-a31e-b929c52c8397","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a1572195604d52aa","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a1572195604d52aa","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"89b47668-47de-43ca-87da-f813c9bfb379","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa5b231878","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa5b231878","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"89c5c52e-365d-4716-b5d9-3e4fad10f0df","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 091043145851593f","lastDirSyncTime":null,"mail":null,"mailNickname":"group2091043145851593f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"89cd2de3-78e1-4012-930d-52d4867e1452","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ec3678149080dbdc","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ec3678149080dbdc","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8a4015e0-c0ee-4d9c-9f29-3cf4ba1fc1ca","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group62c714562","lastDirSyncTime":null,"mail":null,"mailNickname":"group62c714562","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8a73fdc1-56d8-4b9c-85a5-fcd2ccac2cc0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupfbe568457","lastDirSyncTime":null,"mail":null,"mailNickname":"groupfbe568457","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8a9b1617-fc8d-4aa9-a42f-99868d314699","deletionTimestamp":null,"description":"first
+ group","dirSyncEnabled":null,"displayName":"firstgroup","lastDirSyncTime":null,"mail":null,"mailNickname":"0afc6ff5-b63b-4583-b7f0-6a639e64cc75","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8ad9822f-bbe9-4b13-8a1d-abe9a7e306f1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb38577895","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb38577895","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8ae273e8-5269-4a2e-af12-e4e8171ceee8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9de920369","lastDirSyncTime":null,"mail":null,"mailNickname":"group9de920369","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}],"odata.nextLink":"directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X''445370740200002A47726F75705F36633264626165662D633436382D346339332D616439322D6134663930653836653263652A47726F75705F36633264626165662D633436382D346339332D616439322D613466393065383665326365002A47726F75705F38616532373365382D353236392D346132652D616631322D6534653831373163656565382A47726F75705F38616532373365382D353236392D346132652D616631322D6534653831373163656565380000000000000000000000''"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['51173']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:13 GMT']
+ duration: ['1802414']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [s1h9g+7tMsW4wU/rKe36/J3fhFslXHwAiAI2ZsDti5I=]
+ ocp-aad-session-key: [TLBeh5Oo2Gx5bjaeLXxigBsUzTq31fS-gq3FI1vwdMXgEDCc3u-_1gyrYZPMrytB-hEaHCgvBirBM-sUnfINUktCKun0BwVAnWq2vNhgE4uxtHO1VIH3sIQnhePFMk8G_jQ0Ci_ss06KhOZLOE_-ExGYvT5_uZSmQmgGKVv-hLcxk7mQGJ_RdVOhor3-_GB-TvvfqFkwzWDsH8-PwGw0aw.VHwxRygVydSKPXSP8-i7T-Zz2um-jeFtHgyk90Ehqo0]
+ pragma: [no-cache]
+ request-id: [26e63dd4-aa78-40ad-a88c-47573e723f4a]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/groups?api-version=1.6&$filter=
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X'445370740200002A47726F75705F36633264626165662D633436382D346339332D616439322D6134663930653836653263652A47726F75705F36633264626165662D633436382D346339332D616439322D613466393065383665326365002A47726F75705F38616532373365382D353236392D346132652D616631322D6534653831373163656565382A47726F75705F38616532373365382D353236392D346132652D616631322D6534653831373163656565380000000000000000000000'&api-version=1.6
response:
- body: {string: '{"odata.metadata":"https://graph.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d758a069-52cc-47f6-bc00-961cea17be39","deletionTimestamp":null,"description":"for
- bug investigation and will delete ","dirSyncEnabled":null,"displayName":"yugangwTestGroup","lastDirSyncTime":null,"mail":null,"mailNickname":"fb7f38a2-3b88-49a7-b890-71105a0091b7","mailEnabled":false,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
- headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- Content-Length: ['623']
- Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
- DataServiceVersion: [3.0;]
- Date: ['Fri, 21 Apr 2017 02:34:59 GMT']
- Duration: ['648611']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [u3zz2DALsiEmtzDI1/lFfQ0UcLsw4WkTvQJPQAl1nu0=]
- ocp-aad-session-key: [gdefyo02rjZpQ4alGN3LlhbqHuofuYFfbrWf8_HmgDE1RAsyLPD9__rN2qS7S7pnyeDJpd34iBfACME1vnWmEs8V3I7vNh5CiQcoy6VOIKwWfXLy7uFM_3H_w8A6f3hxqbuymCeTN0-4vP9b1SizZTrj9u3qYyPvznP2mGgSCO98zHyQLWPUG0t9fhxJlWb8pUHB7b0fNXxwjHDAAFnNxw.I9mpazRb1lY7F7iXf1Dn36KhFfZm-SNSVZu2NrR_DU8]
- request-id: [a38f7538-9554-4955-bfb7-be38e1fcc9e9]
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8b1b4067-11b0-4e6a-91ec-675dd8ca7039","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe4f5452922314daa","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe4f5452922314daa","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8bc384fb-14f4-45b8-bef5-fd2eaff9d407","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4e47741285c2f7af","lastDirSyncTime":null,"mail":null,"mailNickname":"group4e47741285c2f7af","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8c69e93c-73d2-44b9-aef4-1317ef303f29","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group32144770ddea87eb","lastDirSyncTime":null,"mail":null,"mailNickname":"group32144770ddea87eb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8c83149a-ede3-4176-89e2-86a91fd82f12","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group970722846","lastDirSyncTime":null,"mail":null,"mailNickname":"group970722846","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8cf47462-5f46-4ff7-8ce9-a0929e85add4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d9e754732544c00d","lastDirSyncTime":null,"mail":null,"mailNickname":"group2d9e754732544c00d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8d3ed243-afc2-4da8-aad1-8eb36bca322a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group948799274","lastDirSyncTime":null,"mail":null,"mailNickname":"group948799274","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8e533c2d-4888-4bcf-845e-a9aefc49e406","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 57836188d6e62a5d","lastDirSyncTime":null,"mail":null,"mailNickname":"group157836188d6e62a5d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8e97297a-4ab7-4b45-824a-dfb3d7f5149b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb38970022","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb38970022","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8ee32deb-6610-4c1a-b565-37ac66423c72","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group22e551364","lastDirSyncTime":null,"mail":null,"mailNickname":"group22e551364","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8ee77133-5f1a-4fa4-b255-5270d3a5af76","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 42112284ca817c0a","lastDirSyncTime":null,"mail":null,"mailNickname":"group142112284ca817c0a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8f31b8a0-884a-458a-90e3-be35ec611adc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6612715889683d55","lastDirSyncTime":null,"mail":null,"mailNickname":"group16612715889683d55","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8f3b6ace-5449-4276-a82b-2c51461846d5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group14997554c6d4dadc","lastDirSyncTime":null,"mail":null,"mailNickname":"group14997554c6d4dadc","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8fa663ca-8482-47f1-81c5-4392a19eb8d2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 064275301574358b","lastDirSyncTime":null,"mail":null,"mailNickname":"group1064275301574358b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8fc57111-bef4-4ed8-99bc-7585bc23bafb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 99308297a1e772e7","lastDirSyncTime":null,"mail":null,"mailNickname":"group199308297a1e772e7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"8fc9c56a-bf51-468d-b3a7-f026f5518912","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4d698696f876e3e0","lastDirSyncTime":null,"mail":null,"mailNickname":"group24d698696f876e3e0","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"903aa695-a567-4960-ba96-ec0ad6281b36","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group6a2685326ef4771b","lastDirSyncTime":null,"mail":null,"mailNickname":"group6a2685326ef4771b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"90730ed0-c92d-4cee-993c-d877e0ec808c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group68a48363a402ebf7","lastDirSyncTime":null,"mail":null,"mailNickname":"group68a48363a402ebf7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"910ed09e-eef2-435c-87f4-557072a074c6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group85a566232","lastDirSyncTime":null,"mail":null,"mailNickname":"group85a566232","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"913299af-6845-448e-9ced-ae8a52b0e02a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group5bc439341","lastDirSyncTime":null,"mail":null,"mailNickname":"group5bc439341","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"91ca9e58-5214-4111-9366-7c1d07b9dd16","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupabd648720","lastDirSyncTime":null,"mail":null,"mailNickname":"groupabd648720","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"92356f64-0b7c-4e06-8c34-c56fb43bd2d1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ fd79768533b479d9","lastDirSyncTime":null,"mail":null,"mailNickname":"group2fd79768533b479d9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9285086e-e920-4b19-af0f-9b203ba7c8d9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 46a7353044c94823","lastDirSyncTime":null,"mail":null,"mailNickname":"group246a7353044c94823","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9299c5a9-4b94-4497-87a6-69144e0de269","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b4b8364787ff263c","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b4b8364787ff263c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"92c91575-b6d5-4913-bda6-b416ea8ad17e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group097400978","lastDirSyncTime":null,"mail":null,"mailNickname":"group097400978","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"92ebb53c-cd73-406b-9f7b-524ee147c98b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group05156044577499be","lastDirSyncTime":null,"mail":null,"mailNickname":"group05156044577499be","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"93325fed-aea6-4464-88f1-dcbf9a9bb990","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc2345007c","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc2345007c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"941f9b26-0d55-4fef-a717-1a14d6973904","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 3cc12319294035da","lastDirSyncTime":null,"mail":null,"mailNickname":"group23cc12319294035da","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"94514ed0-ceb2-4ec7-86b6-a13d3e3a28f3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8f9835107","lastDirSyncTime":null,"mail":null,"mailNickname":"group8f9835107","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"953b3e3f-796f-41e2-8c8c-05a32266431b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8ea605148","lastDirSyncTime":null,"mail":null,"mailNickname":"group8ea605148","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"96019e04-07d3-42d7-8254-3e5a8b6b688d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8dc598266","lastDirSyncTime":null,"mail":null,"mailNickname":"group8dc598266","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9606e26a-9264-4b20-aedb-0e74bfcc21b1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe24573726","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe24573726","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"96217fcd-3b3b-4be2-8be5-c4a8c2fcb9fe","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ c8a776219d18a142","lastDirSyncTime":null,"mail":null,"mailNickname":"group1c8a776219d18a142","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9659a79b-9a6e-4e36-b360-8df2a0d875b4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group62665208c","lastDirSyncTime":null,"mail":null,"mailNickname":"group62665208c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"96747891-7891-4ac6-9498-4cd7ac93e433","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupdaa542601","lastDirSyncTime":null,"mail":null,"mailNickname":"groupdaa542601","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"96ec138f-0cc6-4ab5-a1f7-b1e536510c5d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ea596808d9e37fe8","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ea596808d9e37fe8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9789e09d-ca13-449a-b2c9-2844b08c323d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group72a302116","lastDirSyncTime":null,"mail":null,"mailNickname":"group72a302116","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9823fcf1-ba32-4325-b334-846dc7fe1b2c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe5c20943a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe5c20943a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"982ec0e4-f9df-419a-acab-f146e6050b47","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group983456929ff0f76f","lastDirSyncTime":null,"mail":null,"mailNickname":"group983456929ff0f76f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9843e500-e31d-4321-8e09-680f6ad96f3e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupcef520851","lastDirSyncTime":null,"mail":null,"mailNickname":"groupcef520851","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"98f8cea9-dc0e-4c4b-a58f-fcb4dd9dc2a6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupacc605185","lastDirSyncTime":null,"mail":null,"mailNickname":"groupacc605185","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"99426f60-f214-45bc-85ef-0de8462cdc73","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa8343300d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa8343300d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"997d658f-6e36-4c41-be7b-6a4e1e04a356","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group78f282877","lastDirSyncTime":null,"mail":null,"mailNickname":"group78f282877","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"99882b88-2b66-4074-94e0-fab7551959d3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupcb2038946","lastDirSyncTime":null,"mail":null,"mailNickname":"groupcb2038946","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9a0f915e-5638-4b14-9400-2e9fdc7055e4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupec3582711","lastDirSyncTime":null,"mail":null,"mailNickname":"groupec3582711","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9ab71fcc-e7f9-4b9e-a8cc-ff7ef3e8bf4d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupdff273669b1088d7","lastDirSyncTime":null,"mail":null,"mailNickname":"groupdff273669b1088d7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9b2fb2f5-eba8-41a9-9348-a39867154352","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2be18227c","lastDirSyncTime":null,"mail":null,"mailNickname":"group2be18227c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9b5cad05-0b09-433a-9b3c-f0badbf2d55a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group26d497228","lastDirSyncTime":null,"mail":null,"mailNickname":"group26d497228","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c2019de-5489-4286-94ea-23bf1454ce57","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe7143662e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe7143662e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c3f6c0e-3039-499a-865a-d1a6f54f36be","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1cd049507","lastDirSyncTime":null,"mail":null,"mailNickname":"group1cd049507","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c4a8e4d-3d21-4ce6-8da1-e8ca46f1316e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 74f7705003d2b977","lastDirSyncTime":null,"mail":null,"mailNickname":"group274f7705003d2b977","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c5d9571-38b5-4183-b139-53a8154a15a2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group70587249f","lastDirSyncTime":null,"mail":null,"mailNickname":"group70587249f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c68359e-11b1-4879-a893-b7730c4514c1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2bd204501","lastDirSyncTime":null,"mail":null,"mailNickname":"group2bd204501","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9c6bd860-d418-418d-8931-d7d6b7139cdb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group88a293426","lastDirSyncTime":null,"mail":null,"mailNickname":"group88a293426","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9ca098fb-4681-4f8b-9994-8fd6de5bfdc8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2a426768a","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a426768a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9d04623a-e68b-4cc9-8899-8878047f1b9e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b3f154524352e3f9","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b3f154524352e3f9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9d067c81-74b4-4715-8b5e-b63e146d8fa7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ cc794810f491d0d1","lastDirSyncTime":null,"mail":null,"mailNickname":"group2cc794810f491d0d1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9d2c3382-d057-43ba-8c58-c04e77c351d7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group300463532","lastDirSyncTime":null,"mail":null,"mailNickname":"group300463532","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9d34d89b-eb15-4120-88ec-4a494c7b3b86","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 84a5946100524197","lastDirSyncTime":null,"mail":null,"mailNickname":"group184a5946100524197","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9d8f5c0c-588e-4cd9-9b69-b4776fc3e4d6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group16243376e903b45a","lastDirSyncTime":null,"mail":null,"mailNickname":"group16243376e903b45a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9e4a1fd6-c1da-4928-b34a-c80a2e074a76","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group709004991","lastDirSyncTime":null,"mail":null,"mailNickname":"group709004991","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9e7e7819-a757-42e8-8cfe-c388ea9b395d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 5d8759748a6008f2","lastDirSyncTime":null,"mail":null,"mailNickname":"group25d8759748a6008f2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9ef4b887-46b1-43c7-bfbc-f5dc814d9dc4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group82f073567","lastDirSyncTime":null,"mail":null,"mailNickname":"group82f073567","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9f0f6135-4b05-46f4-bc1e-ace263ece137","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group273305040","lastDirSyncTime":null,"mail":null,"mailNickname":"group273305040","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9f44e2ba-325c-4f43-bbae-ca73c9228622","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9ed09875e","lastDirSyncTime":null,"mail":null,"mailNickname":"group9ed09875e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9fc12c16-0dc3-42be-9edb-12eba7da21ac","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group81a08839b","lastDirSyncTime":null,"mail":null,"mailNickname":"group81a08839b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9fca93eb-06e5-4a92-b903-36c95406aa53","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b6b93459647c123e","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b6b93459647c123e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"9fee8b4c-9e89-4859-a344-fce4fc2f7414","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupdbb50612e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupdbb50612e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a0a080de-a86d-4d67-81af-42f04ef71b0a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1a7370201","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a7370201","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a18d6a28-d5eb-45fa-9095-f1ad97d459e4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4dc28869f","lastDirSyncTime":null,"mail":null,"mailNickname":"group4dc28869f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a18f1470-c72b-49d5-8f72-d71bb0aa7606","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3ed851639f1d60fd","lastDirSyncTime":null,"mail":null,"mailNickname":"group3ed851639f1d60fd","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a1c1210e-d3e4-432c-92a5-211d3f434f61","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ c6e224774fde331f","lastDirSyncTime":null,"mail":null,"mailNickname":"group1c6e224774fde331f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a1e4b046-b438-4f32-b83b-08100ac0ff3c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupec7782537","lastDirSyncTime":null,"mail":null,"mailNickname":"groupec7782537","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a25f401a-04cf-434f-b340-277e3535849c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf13627757","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf13627757","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a305deee-a598-482e-9fa2-20039db92dca","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 492009320598d23b","lastDirSyncTime":null,"mail":null,"mailNickname":"group1492009320598d23b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a32b75e8-2c3f-4641-acc7-6760a51bdbe9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8cc962064","lastDirSyncTime":null,"mail":null,"mailNickname":"group8cc962064","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a352d986-63f5-4a11-84b9-342848339f89","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ab1908459e1354b2","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ab1908459e1354b2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a42b3bfe-a5e5-4665-b2b9-fc52278ccab8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 39144135d2bb5455","lastDirSyncTime":null,"mail":null,"mailNickname":"group139144135d2bb5455","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a4351b09-66c1-4eca-a4ce-97d4b9b269ee","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9c648500c","lastDirSyncTime":null,"mail":null,"mailNickname":"group9c648500c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a4ec2859-1349-4d75-a5ec-e9852df4887d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3e7313191","lastDirSyncTime":null,"mail":null,"mailNickname":"group3e7313191","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a4f59817-9bce-4d55-9cd9-779d59ad6915","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb77003027","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb77003027","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a5d4e4f8-e12d-403b-99a6-1b5481eecf1d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a8e824632209b5ca","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a8e824632209b5ca","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a5f3e8ac-505b-4a4e-9dd9-021539ab4a09","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9d3940831","lastDirSyncTime":null,"mail":null,"mailNickname":"group9d3940831","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a6123557-4f40-425f-9bc8-bc4c8587d47e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 8e8121255abec94a","lastDirSyncTime":null,"mail":null,"mailNickname":"group28e8121255abec94a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a6b5f3b0-c652-43ac-8e2b-05491315764e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6c245979e03c57d2","lastDirSyncTime":null,"mail":null,"mailNickname":"group16c245979e03c57d2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a7ad2ede-9d6c-470f-a7f2-9b2c1d9ea83e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 04e3552429cac854","lastDirSyncTime":null,"mail":null,"mailNickname":"group204e3552429cac854","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a855c76f-7166-4bab-83cb-94749b1f0449","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ f8856432aa0baddd","lastDirSyncTime":null,"mail":null,"mailNickname":"group1f8856432aa0baddd","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a8862ba3-f5da-4a3e-a2b1-1bc6161b2343","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group09925034a","lastDirSyncTime":null,"mail":null,"mailNickname":"group09925034a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a9041e44-8b36-4150-b000-7a016cf34c3e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb80588794","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb80588794","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a9e5522f-484a-41a2-9c23-e1c77b195caf","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group914053902","lastDirSyncTime":null,"mail":null,"mailNickname":"group914053902","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"a9f6ed49-2f1e-4a86-87b5-543d7134bdbb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group96395764e466d080","lastDirSyncTime":null,"mail":null,"mailNickname":"group96395764e466d080","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"aa47cbb4-81ae-48d0-9565-59eb03bb0f90","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 47165665107ac943","lastDirSyncTime":null,"mail":null,"mailNickname":"group247165665107ac943","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"aab4c9dc-12a4-4696-8f61-d1cd14a75029","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e5d00238bba130bb","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e5d00238bba130bb","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"aaf7bb6b-14fa-4857-bdd6-5d4c278b6420","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2cb3674494fe3c32","lastDirSyncTime":null,"mail":null,"mailNickname":"group12cb3674494fe3c32","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ab67f2d8-06a0-4a4f-a600-d4f9dab8c72f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc65967995","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc65967995","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"abf55b6c-0054-4edf-a261-5ebb3719e7ab","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupfbd53355f","lastDirSyncTime":null,"mail":null,"mailNickname":"groupfbd53355f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ac78d52a-cfc6-45f7-982b-cabb30c7dad3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group08b801767","lastDirSyncTime":null,"mail":null,"mailNickname":"group08b801767","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"acbeb011-01e8-4763-aa87-14526195de0d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 68a2453037afa355","lastDirSyncTime":null,"mail":null,"mailNickname":"group168a2453037afa355","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ad7d52a7-1c22-4d61-80ea-669e7275f67e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe3743320e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe3743320e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ad7db793-a2ec-40f7-a556-750366c06919","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb85093508","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb85093508","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ae041849-1443-4751-b310-5171fdbd3aed","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group348559293","lastDirSyncTime":null,"mail":null,"mailNickname":"group348559293","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}],"odata.nextLink":"directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X''445370740200002A47726F75705F38623162343036372D313162302D346536612D393165632D3637356464386361373033392A47726F75705F38623162343036372D313162302D346536612D393165632D363735646438636137303339002A47726F75705F61653034313834392D313434332D343735312D623331302D3531373166646264336165642A47726F75705F61653034313834392D313434332D343735312D623331302D3531373166646264336165640000000000000000000000''"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['51103']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:13 GMT']
+ duration: ['1234159']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [3/hPBrNk3bWDiI3Le668U3KnfkdAVCOsHPHBA7wvvMs=]
+ ocp-aad-session-key: [1VZRkloT90fDurtEnLqiFjLoVJJ3JZu4WEEqqKcDkT8zfb-xopW_mtK3XRK-ET62qGCZOUVye1CEoPiwg_UaJi6DXFqoDR-wRc8MrWVXASNeSGl8lxkB0WFT1p4IBMvo9zFtXRX3smSLc0AIua46mOmxzjqWkKlwEqLSZaM3LEXNQVlHSqs8v_jW6UorVQF9zpG4J3BoQC0Tt8kII7XnmQ.qyZ609cBRp_4lZ2cbYQ6OcY3tpTkj_kEDPvIe_yYdR8]
+ pragma: [no-cache]
+ request-id: [91452cd9-e53f-42e3-b077-358d181315e8]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: GET
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X'445370740200002A47726F75705F38623162343036372D313162302D346536612D393165632D3637356464386361373033392A47726F75705F38623162343036372D313162302D346536612D393165632D363735646438636137303339002A47726F75705F61653034313834392D313434332D343735312D623331302D3531373166646264336165642A47726F75705F61653034313834392D313434332D343735312D623331302D3531373166646264336165640000000000000000000000'&api-version=1.6
+ response:
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ae834247-770d-439b-9b7f-a4977c3136f4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6e9258051137160a","lastDirSyncTime":null,"mail":null,"mailNickname":"group26e9258051137160a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ae97d6ac-15e5-4edb-b60d-1a016fabcbfe","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b006634947305ce2","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b006634947305ce2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"aebbb6df-ceb6-430c-8544-20aff179581b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 41e16362f338c12f","lastDirSyncTime":null,"mail":null,"mailNickname":"group141e16362f338c12f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"af513d6a-3c96-40bf-869c-becad94cbad7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf53891846","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf53891846","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"af88355f-b4a4-4335-a28b-6fbeee986829","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3fb681078","lastDirSyncTime":null,"mail":null,"mailNickname":"group3fb681078","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"afcece8d-78cd-45f6-89ec-3287f889a37d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb035066371197568","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb035066371197568","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"afd383bb-4d4a-4c4b-b4dc-ae8d17087e3d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group29b1139820c0e0f7","lastDirSyncTime":null,"mail":null,"mailNickname":"group29b1139820c0e0f7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b05b79cd-fa0d-4e3f-b074-78e2b7af6b37","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group90e461232","lastDirSyncTime":null,"mail":null,"mailNickname":"group90e461232","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b0e2981c-fa6a-4e97-a4e4-76eeb712f41d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ae149551d52d2255","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ae149551d52d2255","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b373e2fc-5442-484d-a4f3-394d82531574","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa69661184","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa69661184","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b3808d54-9053-4e61-b10c-a537e6b3cbc0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 8642063484523f34","lastDirSyncTime":null,"mail":null,"mailNickname":"group18642063484523f34","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b4057fae-c318-469b-bde1-70beb7bb1fba","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe6381619fdd2bcb9","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe6381619fdd2bcb9","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b40eea22-ab6e-47f0-9139-4d5c655b1fbb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd64284262","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd64284262","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b4256a1e-c76d-4c57-9080-0f82f20beed9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupfeb174944","lastDirSyncTime":null,"mail":null,"mailNickname":"groupfeb174944","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b4506952-a900-4bb9-9260-aef742a359c2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b4254169eeb8f1a1","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b4254169eeb8f1a1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b4828fd8-c74b-4639-9cb6-16acd9a10d3b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group926356556","lastDirSyncTime":null,"mail":null,"mailNickname":"group926356556","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b50669c9-9f2c-4105-a371-26be0da90691","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupeb2298007","lastDirSyncTime":null,"mail":null,"mailNickname":"groupeb2298007","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b52dd9bb-97c1-4b4c-a39e-cea54dd67023","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb7673509a317fd1b","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb7673509a317fd1b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b556b6b4-6d3c-427e-a72c-b963836bf34a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3d0590850","lastDirSyncTime":null,"mail":null,"mailNickname":"group3d0590850","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b56fc823-51c1-4a46-be9e-9eb42d3f53c6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ bf136986385270e4","lastDirSyncTime":null,"mail":null,"mailNickname":"group2bf136986385270e4","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b5945f5a-f72c-47c4-ae93-f1bc8ec9022c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf1b34737f","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf1b34737f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b5d90794-4474-409a-a605-e616075ddffe","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 0df385742d5c806a","lastDirSyncTime":null,"mail":null,"mailNickname":"group20df385742d5c806a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b5ed5948-c6d9-4213-85f6-4408ada439f3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 3a662685aed65c47","lastDirSyncTime":null,"mail":null,"mailNickname":"group13a662685aed65c47","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b6100130-c287-4890-b26c-0dfe0167d361","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b77425735ccc938a","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b77425735ccc938a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b69800f5-2c84-47bd-9e7e-b60c755ad57e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group227165759","lastDirSyncTime":null,"mail":null,"mailNickname":"group227165759","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b6e0ec2e-9864-4145-b569-75c611bf48eb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2f370659c","lastDirSyncTime":null,"mail":null,"mailNickname":"group2f370659c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b6e495f1-e4d3-498a-acda-2dcc33e63750","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb08032966","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb08032966","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b76d2957-de4f-494f-956e-4905a2d22705","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc0942380d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc0942380d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b7727022-00e2-4b80-b51b-3f6ef7226028","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 0b426344ef6f76ad","lastDirSyncTime":null,"mail":null,"mailNickname":"group20b426344ef6f76ad","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b7c852f4-11c9-4397-bdbf-1f85eb41aee6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9cf46458a","lastDirSyncTime":null,"mail":null,"mailNickname":"group9cf46458a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b7ff371e-2b54-4f14-8ec1-6d22fd13fe4e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd1f613121","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd1f613121","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b86858b5-a6fd-4492-93f3-82cebb929f71","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3e0974440cee491f","lastDirSyncTime":null,"mail":null,"mailNickname":"group3e0974440cee491f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b872c593-12ec-40f5-8106-1b5eb89072d0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ f6f45269878ee8a0","lastDirSyncTime":null,"mail":null,"mailNickname":"group1f6f45269878ee8a0","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b8d05a47-1bb4-4ec3-9aba-c718f2c2dc8f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc29061451","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc29061451","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b96b9a44-b31a-492d-9338-ee873ed4dc93","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2bb944663","lastDirSyncTime":null,"mail":null,"mailNickname":"group2bb944663","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b99f02b5-d28d-41c5-85ea-c8c3cd354efc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d7105441aa85aaea","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d7105441aa85aaea","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b9c360b4-0929-4bb1-a3ef-fb42ba6b3ef5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group466465944","lastDirSyncTime":null,"mail":null,"mailNickname":"group466465944","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b9da15c6-1742-4282-82c1-44b38a310ac6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 49f293178d120451","lastDirSyncTime":null,"mail":null,"mailNickname":"group249f293178d120451","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"b9dc424a-758a-4ba7-be4b-11a49559f2fd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 0b854393f9909af2","lastDirSyncTime":null,"mail":null,"mailNickname":"group20b854393f9909af2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ba257bf0-2138-4f16-aadc-27da78f96f76","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 1c122575d54aa19d","lastDirSyncTime":null,"mail":null,"mailNickname":"group21c122575d54aa19d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bb27a51e-6cfa-4f51-986b-99c27c57711c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6ae8654017ce7ab1","lastDirSyncTime":null,"mail":null,"mailNickname":"group26ae8654017ce7ab1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bbc31c0b-2158-4753-8daf-41f58b2fb731","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group076250592","lastDirSyncTime":null,"mail":null,"mailNickname":"group076250592","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bc677c23-f0a5-4564-b5ac-055a1b08bec0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group707066233","lastDirSyncTime":null,"mail":null,"mailNickname":"group707066233","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bcad20e9-96e9-4794-b209-86434e36fade","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe50362953","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe50362953","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bcfa7705-e612-426e-af8a-f0c1cc12b5df","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8208088379c4c6ef","lastDirSyncTime":null,"mail":null,"mailNickname":"group8208088379c4c6ef","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bd1c9399-30fd-47a6-8074-05e8d2ec77f6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group0dc951690","lastDirSyncTime":null,"mail":null,"mailNickname":"group0dc951690","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bdf1c5fb-f31c-4418-b9de-968984250bed","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7d0969079","lastDirSyncTime":null,"mail":null,"mailNickname":"group7d0969079","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"be5722be-167c-41df-a8bc-51a3ba3341f5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 81660128b15455de","lastDirSyncTime":null,"mail":null,"mailNickname":"group181660128b15455de","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bef87625-7737-48cf-8f7d-b254565bb36f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc5f194108f947502","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc5f194108f947502","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"bf23322e-13f5-4dbd-b150-ebf619cb70b3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group75482944f","lastDirSyncTime":null,"mail":null,"mailNickname":"group75482944f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c0336a9e-5002-45d0-8884-8b03ff892f66","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group298804626","lastDirSyncTime":null,"mail":null,"mailNickname":"group298804626","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c090dbb8-0d4f-4284-b484-0edfa337b2b0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4b494807e","lastDirSyncTime":null,"mail":null,"mailNickname":"group4b494807e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c0adaaa6-7df0-4231-a136-14893e65b73d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ecb502828025d772","lastDirSyncTime":null,"mail":null,"mailNickname":"group2ecb502828025d772","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c1b10a37-1ed0-48fb-8717-4f2db4772dd2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 02244166f1f3991d","lastDirSyncTime":null,"mail":null,"mailNickname":"group102244166f1f3991d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c1cb7840-4543-4da9-9f3b-01e15331865a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7c1323571dd2e7f5","lastDirSyncTime":null,"mail":null,"mailNickname":"group27c1323571dd2e7f5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c203da72-3f8a-407d-87f5-de383a2c39d7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf9356336a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf9356336a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c20ea501-1d6a-4ecc-931d-95b883c3ef09","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ fd15219613d0512b","lastDirSyncTime":null,"mail":null,"mailNickname":"group1fd15219613d0512b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c2906068-72a5-438a-bdde-6b316f835cb1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group6b132675c","lastDirSyncTime":null,"mail":null,"mailNickname":"group6b132675c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c2bad0fa-e242-429c-8d46-722bf1c4eb1a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupebe716431","lastDirSyncTime":null,"mail":null,"mailNickname":"groupebe716431","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c34aa81c-3cf3-4b02-9822-a0ab6ca63cc3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupef293558e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupef293558e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c39f732a-9977-477f-941a-021aef712d1f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group170980787","lastDirSyncTime":null,"mail":null,"mailNickname":"group170980787","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c3e15310-b60b-422c-bb10-a8cb8ff8c2e7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 19707946198c2e39","lastDirSyncTime":null,"mail":null,"mailNickname":"group219707946198c2e39","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c3eba73f-8be5-470d-8a1d-b39dc696de1e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 24293550872875f8","lastDirSyncTime":null,"mail":null,"mailNickname":"group124293550872875f8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c42b78ff-c286-41bf-9578-2ae9fbb076fa","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 57306358811d3ead","lastDirSyncTime":null,"mail":null,"mailNickname":"group257306358811d3ead","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c4622774-3d8f-4911-a11f-a60dbeeca745","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc9899040a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc9899040a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c525bcaa-c629-4e9b-8115-218463a601d6","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 00830633dcd4874c","lastDirSyncTime":null,"mail":null,"mailNickname":"group100830633dcd4874c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c52ec4e7-e872-44a7-a7b6-5e58c11c803b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbfd842172","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbfd842172","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c574bb3d-eaee-411b-8afc-4a1af4f29418","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupde4726275","lastDirSyncTime":null,"mail":null,"mailNickname":"groupde4726275","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c68ce8ef-4853-495f-a900-e10e95fe7420","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 014004086c05e816","lastDirSyncTime":null,"mail":null,"mailNickname":"group2014004086c05e816","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c6d7601d-d5ab-448e-b288-adc82327d5b7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group65227858a","lastDirSyncTime":null,"mail":null,"mailNickname":"group65227858a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c6f3420c-e1ae-4080-8ab7-fdf26938f23e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 25c12041739dd289","lastDirSyncTime":null,"mail":null,"mailNickname":"group225c12041739dd289","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c6fb7186-809d-4658-a47f-2ca2543856a9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 47b02518b451fed1","lastDirSyncTime":null,"mail":null,"mailNickname":"group147b02518b451fed1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c7fbffd3-146a-4a73-b5fa-b6c5ce06cafb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group137755697","lastDirSyncTime":null,"mail":null,"mailNickname":"group137755697","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c89cb066-7b48-4314-b909-150730d77860","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 5c922440746de36c","lastDirSyncTime":null,"mail":null,"mailNickname":"group15c922440746de36c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c8b10ece-a838-4cd3-885a-e7b08c95f86f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group85c501538","lastDirSyncTime":null,"mail":null,"mailNickname":"group85c501538","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c94ff46e-3484-488b-9ec8-29b2afdfa705","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ac481574e0303e04","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ac481574e0303e04","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c9725072-890b-41d9-84fd-487aca196aea","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ bd28772049a7e43f","lastDirSyncTime":null,"mail":null,"mailNickname":"group1bd28772049a7e43f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c999a8ed-da33-44e6-9f66-5e91a6d02aea","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb49154716","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb49154716","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c9aafbc1-b100-44d7-9f12-899e395a8050","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4b0627537","lastDirSyncTime":null,"mail":null,"mailNickname":"group4b0627537","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"c9d377ac-a779-407c-8c5d-e005e4fcbffe","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4a83426781ebca9e","lastDirSyncTime":null,"mail":null,"mailNickname":"group14a83426781ebca9e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ca12fcbb-82c5-4856-9ef2-09002838e134","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9d6557056","lastDirSyncTime":null,"mail":null,"mailNickname":"group9d6557056","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cae23c89-6627-4fbb-b557-f93cf9e6db09","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbb8203724","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbb8203724","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cbcd4c55-83b8-4ff8-9a6c-ed1d684a4707","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupaa0411713","lastDirSyncTime":null,"mail":null,"mailNickname":"groupaa0411713","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cbe6daea-c316-4ae5-a882-676240dc673f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd4549867a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd4549867a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cbf84468-4f0d-4356-afef-8178e757ccd3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ f9d144970484cf6a","lastDirSyncTime":null,"mail":null,"mailNickname":"group2f9d144970484cf6a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cc0a3916-c5cc-40d7-b183-d774a1ab00f7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group62f912917","lastDirSyncTime":null,"mail":null,"mailNickname":"group62f912917","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cc2b82ee-4746-4594-887b-34e48b4d7138","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a1261900982b0b82","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a1261900982b0b82","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cd096245-c4ae-4755-9680-276d206ccf62","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 25b0144391c1a7fd","lastDirSyncTime":null,"mail":null,"mailNickname":"group125b0144391c1a7fd","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cd9dfd8e-3d29-4b2c-87e6-4ce6306a5763","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group7d3184882","lastDirSyncTime":null,"mail":null,"mailNickname":"group7d3184882","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cdced3cc-b4bb-43d0-8be9-2118c1ed2b89","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupaff573340","lastDirSyncTime":null,"mail":null,"mailNickname":"groupaff573340","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cdd51a3e-f1ba-4641-b6fc-c6cbe2051637","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb7a38008e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb7a38008e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ce337081-ff9b-494d-9097-05ebcb42ef43","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb8038622974750fe","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb8038622974750fe","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cec40e2b-a552-4f38-bee5-b7d906d6652f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 69619991f020533c","lastDirSyncTime":null,"mail":null,"mailNickname":"group169619991f020533c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cedacc6b-6d36-40a6-96aa-1bc158864cad","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e94615384abf46b2","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e94615384abf46b2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cf707c61-d344-4e6d-9069-55a535b90fa1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupba048752e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupba048752e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cfa1fb0b-372b-47ab-b73b-10571b45c072","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd6629374b","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd6629374b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"cfa6e881-7421-475a-b747-112dec2cd4b0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb0c880402","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb0c880402","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d047f962-d2af-4c98-b850-003bf0622964","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 1d5204736094e3cd","lastDirSyncTime":null,"mail":null,"mailNickname":"group21d5204736094e3cd","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d0ad7682-f66c-450c-9783-17abddf29be2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group27296049c","lastDirSyncTime":null,"mail":null,"mailNickname":"group27296049c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d0f76ac5-68ff-4330-97dc-d957649a1d30","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group0b1916812","lastDirSyncTime":null,"mail":null,"mailNickname":"group0b1916812","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}],"odata.nextLink":"directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X''445370740200002A47726F75705F61653833343234372D373730642D343339622D396237662D6134393737633331333666342A47726F75705F61653833343234372D373730642D343339622D396237662D613439373763333133366634002A47726F75705F64306637366163352D363866662D343333302D393764632D6439353736343961316433302A47726F75705F64306637366163352D363866662D343333302D393764632D6439353736343961316433300000000000000000000000''"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['51159']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:15 GMT']
+ duration: ['983423']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [OzArKxpPSemSWWoFLWW7BNCbp+jQjreuu63QDSj69JM=]
+ ocp-aad-session-key: [ferW-M9Meh9ROa7EbXK3qdhf6lrUvmA2L4QsOBNYEkF1eEErikmjG-nLkk7AcnDIyDwknn7oAEdZ9flnJyI7BBTOJ7T_c-F08hTJZAwQH3KL2MQABHaRwTii4Pujd3lbuJuBTsFzFgOICh2IAJ_4ZvO15zWkYeX6eU4dkVVz16Jx2aU68o7UwSvif_wSTvgHwJeUe9Am4xZoNJuBY57pJA.cGIR9VQ2hx2JConsQV_MaJ07oDrWsko9S9Z_jVEobUg]
+ pragma: [no-cache]
+ request-id: [de94591e-8a12-4d24-a1d5-a8cfc2a53b59]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: GET
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X'445370740200002A47726F75705F61653833343234372D373730642D343339622D396237662D6134393737633331333666342A47726F75705F61653833343234372D373730642D343339622D396237662D613439373763333133366634002A47726F75705F64306637366163352D363866662D343333302D393764632D6439353736343961316433302A47726F75705F64306637366163352D363866662D343333302D393764632D6439353736343961316433300000000000000000000000'&api-version=1.6
+ response:
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d17865f5-52c2-4201-87c7-acdc194002bc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ b06242264904b9a6","lastDirSyncTime":null,"mail":null,"mailNickname":"group1b06242264904b9a6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d236e29c-b7fc-4201-a9f0-6b750467726f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group25480146c","lastDirSyncTime":null,"mail":null,"mailNickname":"group25480146c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d23fa5a8-a030-4410-abd1-1811adc619be","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group81395834410fd210","lastDirSyncTime":null,"mail":null,"mailNickname":"group81395834410fd210","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d26a14bd-814c-4761-8456-a571128e7191","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 52795335718053c7","lastDirSyncTime":null,"mail":null,"mailNickname":"group152795335718053c7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d2ffd878-898e-4b4d-b258-ef1d469f6f6c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7ac98873bd2d9db3","lastDirSyncTime":null,"mail":null,"mailNickname":"group27ac98873bd2d9db3","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d3e53f74-faaf-4a5d-8409-1b595a9f3f8a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group142061842","lastDirSyncTime":null,"mail":null,"mailNickname":"group142061842","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d481bf21-25da-42af-960a-63302134e7f4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 55c79176c449fa15","lastDirSyncTime":null,"mail":null,"mailNickname":"group255c79176c449fa15","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d514747e-c4de-4665-a5ed-1bdb7422a3f8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1a6720026","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a6720026","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d5234474-9849-4c9f-99d1-13b87c420f2d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group6b192578f1bdfb03","lastDirSyncTime":null,"mail":null,"mailNickname":"group6b192578f1bdfb03","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d5a47975-da54-4ce1-983a-2e6c7d479515","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe92289493","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe92289493","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d6c3c1c1-1e18-4e66-a9e8-f0391a9849bd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group72f527350","lastDirSyncTime":null,"mail":null,"mailNickname":"group72f527350","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d7d8842b-4056-4675-9fb9-d6dea62426fa","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group919342430","lastDirSyncTime":null,"mail":null,"mailNickname":"group919342430","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d7ff4fbd-6b33-43ea-8732-b4c1f0aaab20","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"java-azure-group-23","lastDirSyncTime":null,"mail":null,"mailNickname":"java","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d881c101-49ff-4e36-b8b9-bd0359e1631c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a8c66403470dee0b","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a8c66403470dee0b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d88e6f8a-f9bd-4585-88c7-5f7d5b03ea27","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 87b908950a096f5a","lastDirSyncTime":null,"mail":null,"mailNickname":"group187b908950a096f5a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d8b5066c-68cc-4357-9095-d805a5ef6e9b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group5bb401050","lastDirSyncTime":null,"mail":null,"mailNickname":"group5bb401050","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d92e3cc6-ca00-42c4-9c46-9d648e870571","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group8c5185002","lastDirSyncTime":null,"mail":null,"mailNickname":"group8c5185002","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"d9761905-b1a5-47e7-bf38-9566fc1a3e91","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 26d00565ecb0b775","lastDirSyncTime":null,"mail":null,"mailNickname":"group126d00565ecb0b775","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"da41408b-6f41-41ee-90b2-0b375ffbe3af","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ d5b23866ce8baae2","lastDirSyncTime":null,"mail":null,"mailNickname":"group1d5b23866ce8baae2","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dac3747b-da30-46e3-9f56-faa38eb7942d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e8c726664bd1906f","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e8c726664bd1906f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dae4f7d1-5db2-4f46-bc94-c131c0cf3f0f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 5c15975823994df7","lastDirSyncTime":null,"mail":null,"mailNickname":"group15c15975823994df7","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"db67b181-17df-4a2a-924f-86227bdcff1e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e6179172c529b23b","lastDirSyncTime":null,"mail":null,"mailNickname":"group1e6179172c529b23b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dbbcd8f5-2dcc-42cb-aae2-a0b7083b3366","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupca425430e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupca425430e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dc4b5046-771d-48a6-9a64-2ee51e06bf29","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group96e63854b","lastDirSyncTime":null,"mail":null,"mailNickname":"group96e63854b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dc67b405-9b8b-4754-a4f5-bb4e7e839a70","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc2329262d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc2329262d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dd35f76e-6b64-4b2c-92ad-7855743d3db0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1c647871c","lastDirSyncTime":null,"mail":null,"mailNickname":"group1c647871c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dd5de322-f500-423b-b700-10d58f83d796","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9df30091a","lastDirSyncTime":null,"mail":null,"mailNickname":"group9df30091a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ddfb4c1a-31f4-4749-8cc5-9a2d49b065b3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2a673620a","lastDirSyncTime":null,"mail":null,"mailNickname":"group2a673620a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"de13a510-5e5d-4113-b332-6e85ffe41449","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e9765159c4395c54","lastDirSyncTime":null,"mail":null,"mailNickname":"group1e9765159c4395c54","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"de1775ff-79aa-45bd-ab70-49fa6f6b6f05","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupea9477803","lastDirSyncTime":null,"mail":null,"mailNickname":"groupea9477803","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"defc3089-dc5d-4a26-b278-3adec4b0fb64","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 0e17559305001b7f","lastDirSyncTime":null,"mail":null,"mailNickname":"group20e17559305001b7f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"df16bad2-b5aa-41ba-9d29-2e967117d6ee","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group41429447b","lastDirSyncTime":null,"mail":null,"mailNickname":"group41429447b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"df533bea-fe9e-4271-a2ed-5aeb32089699","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 1314144580f1a685","lastDirSyncTime":null,"mail":null,"mailNickname":"group21314144580f1a685","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"df77543b-adf7-4567-b353-e0fe9827c8a1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ db357088ed4ae42d","lastDirSyncTime":null,"mail":null,"mailNickname":"group2db357088ed4ae42d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dfbe86e8-89c0-4037-846c-34bdc40db83a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf8e77829b","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf8e77829b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"dfdf428f-6501-4cf9-a426-f965a2c0e84e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupe55330024556d87d","lastDirSyncTime":null,"mail":null,"mailNickname":"groupe55330024556d87d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e05f53ec-249f-42d0-bd84-f7328956a86e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf21129201","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf21129201","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e0cd30dd-033e-4f05-aa4d-0369d10f87a4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group57429242f","lastDirSyncTime":null,"mail":null,"mailNickname":"group57429242f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e11f523b-81dc-45d7-b7e2-4a44152aaa22","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2df00768a","lastDirSyncTime":null,"mail":null,"mailNickname":"group2df00768a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e1b49caa-2ccc-436d-b1bd-07ce1ed151bc","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 890438733ea05d89","lastDirSyncTime":null,"mail":null,"mailNickname":"group2890438733ea05d89","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e1c69333-b3c6-40e3-9bc8-165c4b83e2e0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupcb324664a","lastDirSyncTime":null,"mail":null,"mailNickname":"groupcb324664a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e24a5cbf-7d0d-4b72-a152-257cf8209bcb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ f3c838859c43c23e","lastDirSyncTime":null,"mail":null,"mailNickname":"group2f3c838859c43c23e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e24bca80-26b6-49bf-b8fb-4585fa75e528","deletionTimestamp":null,"description":"delete
+ me","dirSyncEnabled":null,"displayName":"yugangw-group2","lastDirSyncTime":null,"mail":null,"mailNickname":"a54c75bc-12a4-4cbc-805f-d826d7123220","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e2cb1785-24f2-4fa9-bd2a-fc5e8e2c90a7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7c61887035b4ced6","lastDirSyncTime":null,"mail":null,"mailNickname":"group17c61887035b4ced6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e36af94c-e79e-430c-a3f7-a77740d9ac42","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupea2870832","lastDirSyncTime":null,"mail":null,"mailNickname":"groupea2870832","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e3864580-cecc-41b4-b737-a12a03f57084","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6c1641439c28263a","lastDirSyncTime":null,"mail":null,"mailNickname":"group26c1641439c28263a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e47428e0-62cb-4979-994a-4939b23169d5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group79142205a","lastDirSyncTime":null,"mail":null,"mailNickname":"group79142205a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e4772dee-4046-4c53-9918-d5c831c37e5a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2dd391619","lastDirSyncTime":null,"mail":null,"mailNickname":"group2dd391619","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e48bf1e2-2b50-45dd-8801-6504270511db","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4e3765314624a5f5","lastDirSyncTime":null,"mail":null,"mailNickname":"group24e3765314624a5f5","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e50f81cd-81bd-4d92-a377-5e618b89dc77","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupbd676811d49a9549","lastDirSyncTime":null,"mail":null,"mailNickname":"groupbd676811d49a9549","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e52601de-8832-4a8a-8227-fa43983e346d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1e721119d","lastDirSyncTime":null,"mail":null,"mailNickname":"group1e721119d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e53315f7-5d30-405a-86cd-a20b24251ecd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupb938426573cfb4d1","lastDirSyncTime":null,"mail":null,"mailNickname":"groupb938426573cfb4d1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e58a0ba6-cdfa-4af4-ac97-d56584c82d40","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc8d853696","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc8d853696","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e5c15052-827a-465d-b5b2-7b394c90183e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ baa405760cd847b3","lastDirSyncTime":null,"mail":null,"mailNickname":"group1baa405760cd847b3","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e5d74eb0-5fb2-48df-bdf9-c49167c01012","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ f2b74767e52c96c8","lastDirSyncTime":null,"mail":null,"mailNickname":"group1f2b74767e52c96c8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e60dcf0a-ba83-4ae3-a22e-5abf3e1202ce","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group84718375a","lastDirSyncTime":null,"mail":null,"mailNickname":"group84718375a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e61c7460-a205-4705-acd2-663793c3bd6f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group048665492","lastDirSyncTime":null,"mail":null,"mailNickname":"group048665492","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e67c46d5-5ce2-42c0-94b4-37cbd65e3fe3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 7cf682358fcebac1","lastDirSyncTime":null,"mail":null,"mailNickname":"group27cf682358fcebac1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e70c637b-dbc2-4f2c-9fff-db0de065dd50","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group31a251889","lastDirSyncTime":null,"mail":null,"mailNickname":"group31a251889","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e7807a0d-9f03-4d25-b4a0-bf8820e78a94","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 5bd93971e55854f8","lastDirSyncTime":null,"mail":null,"mailNickname":"group15bd93971e55854f8","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e7921183-bfde-40cc-9331-2a44bc8c9b09","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupff088256ade17404","lastDirSyncTime":null,"mail":null,"mailNickname":"groupff088256ade17404","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e81b1505-12ef-4908-92d4-b061d42789ae","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group3e8775663","lastDirSyncTime":null,"mail":null,"mailNickname":"group3e8775663","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e8504086-35a5-42cd-a6ef-037d86c7a8da","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupdd4096816c8128ed","lastDirSyncTime":null,"mail":null,"mailNickname":"groupdd4096816c8128ed","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e8927f70-e742-492f-bd29-3883d1d0bf12","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"testgroup_display","lastDirSyncTime":null,"mail":null,"mailNickname":"testgroup_nickname","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e8addee3-338c-4801-b695-1293fc018e23","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group2d2240420","lastDirSyncTime":null,"mail":null,"mailNickname":"group2d2240420","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e8c5fc62-f5da-4269-a277-3c396cd13ed0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc3e735659","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc3e735659","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e97e006d-3120-475b-9088-ae279f9cd56d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupfed336423","lastDirSyncTime":null,"mail":null,"mailNickname":"groupfed336423","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e99a2efa-56a2-494f-abc5-9b0524075abd","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group11861272b","lastDirSyncTime":null,"mail":null,"mailNickname":"group11861272b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"e9ed2f6f-8d6d-4d33-bcf6-852c50279b0a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ee9505242c661475","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ee9505242c661475","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ea41536d-bfc7-46af-b2fd-504355aae229","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 5ee5567040442342","lastDirSyncTime":null,"mail":null,"mailNickname":"group15ee5567040442342","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ea635255-4e1c-4219-88b4-1fd376544dc5","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1e103053a401bacf","lastDirSyncTime":null,"mail":null,"mailNickname":"group1e103053a401bacf","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ea8b1747-65cf-4279-85d3-382a28da997e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group35191110b","lastDirSyncTime":null,"mail":null,"mailNickname":"group35191110b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eaaaf959-7725-4139-b84d-dd75e91efe8e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group51245641f","lastDirSyncTime":null,"mail":null,"mailNickname":"group51245641f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eab66fb5-3bf5-4aae-8cc5-fe8be6dce5ea","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 82877688ca4d8544","lastDirSyncTime":null,"mail":null,"mailNickname":"group282877688ca4d8544","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eab672fd-651b-4e3c-a4fd-2082794280e9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupcdb31417872f6ffc","lastDirSyncTime":null,"mail":null,"mailNickname":"groupcdb31417872f6ffc","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eb241bfe-97af-4cd5-b0ea-32b5ad9f0ea0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 25b097540b7e5369","lastDirSyncTime":null,"mail":null,"mailNickname":"group225b097540b7e5369","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eb60d2e3-a1a9-4eb5-8da8-5fcd180d65b0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupcf5757986","lastDirSyncTime":null,"mail":null,"mailNickname":"groupcf5757986","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ebfdf250-b952-430e-88a0-366c171b21d9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group5f9142245","lastDirSyncTime":null,"mail":null,"mailNickname":"group5f9142245","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ec279a2a-d7f1-4623-9a82-df0fa2c85e5d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group64c76352b","lastDirSyncTime":null,"mail":null,"mailNickname":"group64c76352b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ec7a04ce-51cb-4962-8b09-6d0b0d8a91ce","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group9be72465e","lastDirSyncTime":null,"mail":null,"mailNickname":"group9be72465e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ec7b28e0-8da4-4ae4-9e7b-6a994afbecf4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group1577442900cb746e","lastDirSyncTime":null,"mail":null,"mailNickname":"group1577442900cb746e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eca85c2e-37c8-4a91-99ff-0c1723430fe2","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4c548551e0e2b06d","lastDirSyncTime":null,"mail":null,"mailNickname":"group14c548551e0e2b06d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eca946dd-41b4-481e-8485-9c62eae01707","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group886489751","lastDirSyncTime":null,"mail":null,"mailNickname":"group886489751","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ecf335cb-ae32-4806-8c1c-ab1aa774b199","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ a0704916b06b6a8f","lastDirSyncTime":null,"mail":null,"mailNickname":"group1a0704916b06b6a8f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ed0a884c-3c37-49ea-96bf-502fcc4326b7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 6c64524532a434b4","lastDirSyncTime":null,"mail":null,"mailNickname":"group16c64524532a434b4","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ed0ab5b9-47cc-4102-be3a-89aff897808c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group28482392f","lastDirSyncTime":null,"mail":null,"mailNickname":"group28482392f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ed475432-2e4e-47af-88f3-18704b9a86ee","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group4c9525499","lastDirSyncTime":null,"mail":null,"mailNickname":"group4c9525499","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ed839892-f593-443a-94bf-7b487e816dcb","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2cd383452895125d","lastDirSyncTime":null,"mail":null,"mailNickname":"group12cd383452895125d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"edad6566-09c6-4e04-920a-eb2a291960e1","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group80a313618","lastDirSyncTime":null,"mail":null,"mailNickname":"group80a313618","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"eec22ad7-b65e-43ef-a3b7-3f15b5337c6f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group672349166233fe5a","lastDirSyncTime":null,"mail":null,"mailNickname":"group672349166233fe5a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ef4ece35-c2d9-4861-8696-c7679dba10c3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupd23193345","lastDirSyncTime":null,"mail":null,"mailNickname":"groupd23193345","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"efe9c081-0532-4e1d-89aa-c9677470cbb3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group62e72622f","lastDirSyncTime":null,"mail":null,"mailNickname":"group62e72622f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f08dc27a-4fca-4a7f-ac50-756c9a479643","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupad1252142","lastDirSyncTime":null,"mail":null,"mailNickname":"groupad1252142","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f141c204-b657-4394-9ad9-cbe0b554f586","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 1e00998836eb3cf6","lastDirSyncTime":null,"mail":null,"mailNickname":"group11e00998836eb3cf6","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f19af556-de98-4dc7-89d4-dfdbf919699b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 1cf854308feb517b","lastDirSyncTime":null,"mail":null,"mailNickname":"group21cf854308feb517b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f1e423f6-7f5f-4cd1-8b70-8977ab5a0c0c","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 955042082ecd9431","lastDirSyncTime":null,"mail":null,"mailNickname":"group1955042082ecd9431","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f207ba49-2a99-4e87-904b-791fa77b6f20","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ e0804625ae4c321a","lastDirSyncTime":null,"mail":null,"mailNickname":"group2e0804625ae4c321a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f228bbe2-ec00-4c60-af88-88da55e325a8","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group567481104","lastDirSyncTime":null,"mail":null,"mailNickname":"group567481104","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f28cb956-f842-4805-928b-30964055f416","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa08241917","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa08241917","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f2be4f61-7089-4e2e-8366-909246893d46","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 4095548130e7517f","lastDirSyncTime":null,"mail":null,"mailNickname":"group14095548130e7517f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}],"odata.nextLink":"directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X''445370740200002A47726F75705F64313738363566352D353263322D343230312D383763372D6163646331393430303262632A47726F75705F64313738363566352D353263322D343230312D383763372D616364633139343030326263002A47726F75705F66326265346636312D373038392D346532652D383336362D3930393234363839336434362A47726F75705F66326265346636312D373038392D346532652D383336362D3930393234363839336434360000000000000000000000''"}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['51200']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:16 GMT']
+ duration: ['1319488']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [4nmBIka+RsLYPWKmnmXko5iClI11NQ4Pd4ryRuwNLI4=]
+ ocp-aad-session-key: [em2AViYttgts7PTHQ_y06-FMtHvTeuPDr4uRAA0s9ijNM0WrnnNWpiWvm1GrjN_OKQrHrP-GDangAsAS3AgD85DF2hHS6y_4un6D0PZjDSs4hG51L7zouwq0jXkJuugdfu_51T4GoJqk8hCV1tprzKL9uGkxv4Sv6MsN3EkI5SwoxIyId_aVoSnk65trZQBfEuTXuW01tqkI_QggnUg6uA.hEIDrTytWwyQSKIGrgZqnRHVoFRGUEBlYVpp_2FdQ_g]
+ pragma: [no-cache]
+ request-id: [85a92af0-de89-45a2-a32b-4f78f59bdf55]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
+ x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
+ status: {code: 200, message: OK}
+- request:
+ body: null
+ headers:
+ Accept: [application/json]
+ Accept-Encoding: ['gzip, deflate']
+ CommandName: [unknown]
+ Connection: [keep-alive]
+ Content-Type: [application/json; charset=utf-8]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
+ accept-language: [en-US]
+ method: GET
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/$/Microsoft.DirectoryServices.Group?$skiptoken=X'445370740200002A47726F75705F64313738363566352D353263322D343230312D383763372D6163646331393430303262632A47726F75705F64313738363566352D353263322D343230312D383763372D616364633139343030326263002A47726F75705F66326265346636312D373038392D346532652D383336362D3930393234363839336434362A47726F75705F66326265346636312D373038392D346532652D383336362D3930393234363839336434360000000000000000000000'&api-version=1.6
+ response:
+ body: {string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/Microsoft.DirectoryServices.Group","value":[{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f5796cf1-122b-4919-a749-0ecb6dbd3dc3","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group54440654d","lastDirSyncTime":null,"mail":null,"mailNickname":"group54440654d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f59bd433-81f4-430c-b78b-7b1d918d19f4","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group21a33562e","lastDirSyncTime":null,"mail":null,"mailNickname":"group21a33562e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f5b9a74a-c660-4019-a2cc-5c5de9227c02","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 75f40319238d6646","lastDirSyncTime":null,"mail":null,"mailNickname":"group275f40319238d6646","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f69820a2-9151-44c0-b6a3-2683250fbfc7","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group46360643d","lastDirSyncTime":null,"mail":null,"mailNickname":"group46360643d","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f6e04640-c5c4-4c6a-995a-57d8fa1daa2d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group74a781021","lastDirSyncTime":null,"mail":null,"mailNickname":"group74a781021","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f724873d-12e3-4867-8d1a-509a78e61a31","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupaaa30413a07eebe4","lastDirSyncTime":null,"mail":null,"mailNickname":"groupaaa30413a07eebe4","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f74d6db6-f1d1-4ddf-bd64-b9c88e7cc759","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa9996585e","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa9996585e","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f75e9fcc-93fa-43e8-9994-cffbe774411e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf47049128","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf47049128","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f7607e8b-2701-4566-a0b5-ba49e8b3529e","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 41652123a3c5f3ab","lastDirSyncTime":null,"mail":null,"mailNickname":"group241652123a3c5f3ab","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f78d4f9e-8ccc-4328-b775-398109d9623d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 92371796196c8484","lastDirSyncTime":null,"mail":null,"mailNickname":"group292371796196c8484","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f7988ebf-6c06-498f-b02b-7e99534f4baa","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group106552562","lastDirSyncTime":null,"mail":null,"mailNickname":"group106552562","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f8af7a35-a9a3-47b1-ac0e-2b50a74642ce","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2ad32816b34b8d41","lastDirSyncTime":null,"mail":null,"mailNickname":"group22ad32816b34b8d41","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"f97482eb-1cb9-4fc2-93a7-40ba78a1ac58","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group795809643","lastDirSyncTime":null,"mail":null,"mailNickname":"group795809643","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fa09417f-a9b8-4d09-aef9-37d0507f7d21","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 04898191aed25879","lastDirSyncTime":null,"mail":null,"mailNickname":"group204898191aed25879","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fa10047e-c325-4999-b829-f853f89d73d9","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupfb2804772","lastDirSyncTime":null,"mail":null,"mailNickname":"groupfb2804772","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fb62bb5f-6a42-4829-ab5d-a472328a9c32","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 12750609e20ed0c1","lastDirSyncTime":null,"mail":null,"mailNickname":"group212750609e20ed0c1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fc03838b-2f15-4452-ac37-c78a64c2f44a","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupc36699020","lastDirSyncTime":null,"mail":null,"mailNickname":"groupc36699020","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fc0d37c9-9689-4a4c-95b3-53d6339b3d8f","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 25f463767dd47ae3","lastDirSyncTime":null,"mail":null,"mailNickname":"group125f463767dd47ae3","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fc9e4266-66d1-485f-b50e-5fd2e2f7b737","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupa4d34764f","lastDirSyncTime":null,"mail":null,"mailNickname":"groupa4d34764f","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fce39c7f-cb3f-4b6a-a2d1-ad35552fe273","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group41e502358","lastDirSyncTime":null,"mail":null,"mailNickname":"group41e502358","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fdd65443-b16c-43da-97fb-3e1b4816217b","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupf8e402571","lastDirSyncTime":null,"mail":null,"mailNickname":"groupf8e402571","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fe002dbc-f0ab-47e7-b260-89ee5acb7e15","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 2cb550689fd4345b","lastDirSyncTime":null,"mail":null,"mailNickname":"group22cb550689fd4345b","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fe7902da-63ea-409d-9f88-9c3f490e8d7d","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group33634966a","lastDirSyncTime":null,"mail":null,"mailNickname":"group33634966a","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"fe92ffd4-8a8d-467b-a58a-ebe79a838ff0","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 0a6268893e456ee1","lastDirSyncTime":null,"mail":null,"mailNickname":"group20a6268893e456ee1","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ff277fd2-757f-41ac-a34a-2b13baae3ccf","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"group27273058c","lastDirSyncTime":null,"mail":null,"mailNickname":"group27273058c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ff559265-6d4b-423f-8f39-2458bec17e40","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ ebc5074888340732","lastDirSyncTime":null,"mail":null,"mailNickname":"group1ebc5074888340732","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ff8b3d69-eff0-46cf-8eaa-feaa599b1f30","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"Group
+ 465843829f39897c","lastDirSyncTime":null,"mail":null,"mailNickname":"group1465843829f39897c","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true},{"odata.type":"Microsoft.DirectoryServices.Group","objectType":"Group","objectId":"ffcf1a87-d581-4ccc-8c6b-dc96610a4e63","deletionTimestamp":null,"description":null,"dirSyncEnabled":null,"displayName":"groupec6859747","lastDirSyncTime":null,"mail":null,"mailNickname":"groupec6859747","mailEnabled":false,"onPremisesDomainName":null,"onPremisesNetBiosName":null,"onPremisesSamAccountName":null,"onPremisesSecurityIdentifier":null,"provisioningErrors":[],"proxyAddresses":[],"securityEnabled":true}]}'}
+ headers:
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ content-length: ['14288']
+ content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8]
+ dataserviceversion: [3.0;]
+ date: ['Thu, 09 Nov 2017 00:48:16 GMT']
+ duration: ['645584']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=]
+ ocp-aad-session-key: [4oJzKqveyKgB_1DLjNrDl77gE8_zGjiGyeqkzXIcqBqn4lu7xgo6Eh7ucpDQsmmr-nqJi1pzBa7znpoUHCJxeXdHaTQnHD0nLZwR3MepftO7C_Qn128o4UlcziwHbqe4RPSyZ6aX5E63-FR5i3doYTJppWcHuKQwt-4nC26XoYnO5k0jf96gPRHyAQxxJ3yOzOQGWlKe7CP1_NNwopvD7A.VFHeEl1bvRpzSJGO7OcdjRZgmt6NUnnzZW7-kxgHhaA]
+ pragma: [no-cache]
+ request-id: [3fadcf13-128e-4505-99db-158d9e36d4cf]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad user delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: DELETE
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/41109d4c-94f8-4308-a702-0a6f541d16a4?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/9c855e2d-149f-444f-ac8b-4ad0283e59b0?api-version=1.6
response:
body: {string: ''}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- DataServiceVersion: [1.0;]
- Date: ['Fri, 21 Apr 2017 02:35:01 GMT']
- Duration: ['11793485']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [1sP0P7WxKcBID6yc4fbz9MeUVowvkTIjVOQX5YMG/jY=]
- ocp-aad-session-key: [JmkBUmhKvkEH-OeCNAXbnL4RSo-pgfrl4ubNDoMR7CaPOU_shaDJPHayz3PX_Gl3DSdPB_ingGSo2F7gb6CP87Il9yNmzvqM6ssWKm1RVSQU8ME4oYn-Qdhs7aXNRADVZVcefIgHUyDXRZDpZLp8YM6sauBkkyIfzcaum7CcjwGdeC6K04NUuwHA1n7HRx3ZKlbDGoDhAkUfRNsdM8_fjQ.mhlltQ0G6fsfwX-hzU4_V88B5c1IX8mwSx4QYhntv18]
- request-id: [bd02d713-ee43-4416-b722-12e4385ace1e]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ dataserviceversion: [1.0;]
+ date: ['Thu, 09 Nov 2017 00:48:18 GMT']
+ duration: ['18953377']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [s1h9g+7tMsW4wU/rKe36/J3fhFslXHwAiAI2ZsDti5I=]
+ ocp-aad-session-key: [-3WGOOifY1lq3GipVLuNaNZXeM5e-fkXW3IZIcdLG8Y77TJ0JHXaoGoGjaPfyAztqsdOejI9V9FDUpjcjgWIBsBun3Wr9X3x4bXjaFCmeAzgbyww7N9G8FBOVcaZ-HzrQfhaAKsYodlIw3VlNp9c3gUrIxRUoyCyqH98de62bx_Wi0ZLM6wLlKQedULgdHw4AvQSs1pF1o1tXkh0yd-E-w.PQdr98Pc5eW62vR23VtAXfaDOjiNB-gmMJXOtHbfT5g]
+ pragma: [no-cache]
+ request-id: [62a04e0a-097b-4520-81d0-a477c2886e45]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 204, message: No Content}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
- CommandName: [ad user delete]
+ CommandName: [unknown]
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
- User-Agent: [python/3.5.3 (Windows-10-10.0.14393-SP0) requests/2.9.1 msrest/0.4.7
- msrest_azure/0.4.7 graphrbacmanagementclient/0.30.0rc6 Azure-SDK-For-Python
- AZURECLI/2.0.3+dev]
+ User-Agent: [python/3.5.3 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.18
+ msrest_azure/0.4.15 graphrbacmanagementclient/0.31.0 Azure-SDK-For-Python
+ AZURECLI/2.0.21]
accept-language: [en-US]
- x-ms-client-request-id: [17e413a2-263b-11e7-9185-64510658e3b3]
method: DELETE
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/649c0cdc-2f45-4f78-b1d9-f555756dedba?api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d310c653-bde6-4343-82d1-a8cbdb0508b3?api-version=1.6
response:
body: {string: ''}
headers:
- Access-Control-Allow-Origin: ['*']
- Cache-Control: [no-cache]
- DataServiceVersion: [1.0;]
- Date: ['Fri, 21 Apr 2017 02:35:02 GMT']
- Duration: ['12149129']
- Expires: ['-1']
- Pragma: [no-cache]
- Server: [Microsoft-IIS/8.5]
- Strict-Transport-Security: [max-age=31536000; includeSubDomains]
- X-AspNet-Version: [4.0.30319]
- X-Content-Type-Options: [nosniff]
- X-Powered-By: [ASP.NET, ASP.NET]
- ocp-aad-diagnostics-server-name: [DJl/5bFSkj1cqgm9u7PtSoh9YAGkLAPecUruXCQn6TE=]
- ocp-aad-session-key: [njJm2iHZLEr7FCWeEBDNfjLMWjYHetqMGYgkQtXxVNV1MQ8WvEv2k9pcmTeXTng_zRF32wu714hTx3tXrQu6VvrLiLVnD61UKLRgTgLDxB59lSVfw6TiXIDCK32RzuStmWhNz33YkvLtjikdMd7sb3_4WDKff2j_8UsbUvxrz2vsYKg1ldnwhf1JnFqm8RlX1FcSKD_uTIWnbP9k9fIpKg.7J0h-ySRCH2ygywgtd1ktEKsMc4J1dy1wk5adRmYi3I]
- request-id: [0c718af5-bcc8-4339-81c2-95653fe7aa58]
+ access-control-allow-origin: ['*']
+ cache-control: [no-cache]
+ dataserviceversion: [1.0;]
+ date: ['Thu, 09 Nov 2017 00:48:20 GMT']
+ duration: ['12292959']
+ expires: ['-1']
+ ocp-aad-diagnostics-server-name: [QlcGJR1NsSQ6UsczdcWQxuXIvi+1OnKPqqjy5FgaYW8=]
+ ocp-aad-session-key: [1wemJ31pIjsf86Koy_v3W2pxz8EhFAPtQlq_emjnqO8yviCO8MeLwxoUn7SqrpfwFOgWa_sIwDXBG35h7av3DBju4R6vbdhkD9q5hfd1HjzhCtRf3lEjcBYVQA2LMtuBEKKA0TpGFQcNSPQgPSwpxhaGNhlr9Zn2uKit1pqfOfwKCwgNr3tRLvsSGhyDnHtg6wR7UUw3LXUKtDYG5SNXNw.xUn-2E5vAY2XSvy1nbUmkK0TMZcq_vjpjDkVWHYIFXA]
+ pragma: [no-cache]
+ request-id: [d2b19dfb-01c1-48ce-a488-20093905a87b]
+ server: [Microsoft-IIS/8.5]
+ strict-transport-security: [max-age=31536000; includeSubDomains]
+ x-aspnet-version: [4.0.30319]
+ x-content-type-options: [nosniff]
x-ms-dirapi-data-contract-version: ['1.6']
+ x-powered-by: [ASP.NET, ASP.NET]
status: {code: 204, message: No Content}
version: 1
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_graph.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_graph.py
index c587edf9cc4..00aa0637ef9 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_graph.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_graph.py
@@ -4,184 +4,162 @@
# --------------------------------------------------------------------------------------------
import json
-from azure.cli.testsdk import JMESPathCheck as JMESPathCheck2
-from azure.cli.testsdk import NoneCheck as NoneCheck2
-from azure.cli.testsdk import ScenarioTest
-from azure.cli.testsdk.vcr_test_base import VCRTestBase, JMESPathCheck, NoneCheck
+from azure.cli.testsdk import ScenarioTest, LiveScenarioTest
-class ServicePrincipalExpressCreateScenarioTest(VCRTestBase):
- def __init__(self, test_method):
- super(ServicePrincipalExpressCreateScenarioTest, self).__init__(__file__, test_method)
+class ServicePrincipalExpressCreateScenarioTest(LiveScenarioTest):
def test_sp_create_scenario(self):
- if self.playback:
- return # live-only test, will enable playback once resolve #635
- else:
- self.execute()
-
- def body(self):
- app_id_uri = 'http://azureclitest-graph'
+ self.kwargs['app_id_uri'] = 'http://azureclitest-graph'
# create app through express option
- self.cmd('ad sp create-for-rbac -n {}'.format(app_id_uri), checks=[
- JMESPathCheck('name', app_id_uri)
- ])
+ self.cmd('ad sp create-for-rbac -n {app_id_uri}',
+ checks=self.check('name', '{app_id_uri}'))
# show/list app
- self.cmd('ad app show --id {}'.format(app_id_uri), checks=[
- JMESPathCheck('identifierUris[0]', app_id_uri)
- ])
- self.cmd('ad app list --identifier-uri {}'.format(app_id_uri), checks=[
- JMESPathCheck('[0].identifierUris[0]', app_id_uri),
- JMESPathCheck('length([*])', 1)
+ self.cmd('ad app show --id {app_id_uri}',
+ checks=self.check('identifierUris[0]', '{app_id_uri}'))
+ self.cmd('ad app list --identifier-uri {app_id_uri}', checks=[
+ self.check('[0].identifierUris[0]', '{app_id_uri}'),
+ self.check('length([*])', 1)
])
# show/list sp
- self.cmd('ad sp show --id {}'.format(app_id_uri), checks=[
- JMESPathCheck('servicePrincipalNames[0]', app_id_uri)
- ])
- self.cmd('ad sp list --spn {}'.format(app_id_uri), checks=[
- JMESPathCheck('[0].servicePrincipalNames[0]', app_id_uri),
- JMESPathCheck('length([*])', 1),
- ])
- self.cmd('ad sp reset-credentials -n {}'.format(app_id_uri), checks=[
- JMESPathCheck('name', app_id_uri)
+ self.cmd('ad sp show --id {app_id_uri}',
+ checks=self.check('servicePrincipalNames[0]', '{app_id_uri}'))
+ self.cmd('ad sp list --spn {app_id_uri}', checks=[
+ self.check('[0].servicePrincipalNames[0]', '{app_id_uri}'),
+ self.check('length([*])', 1),
])
+ self.cmd('ad sp reset-credentials -n {app_id_uri}',
+ checks=self.check('name', '{app_id_uri}'))
# cleanup
- self.cmd('ad sp delete --id {}'.format(app_id_uri), None)
- self.cmd('ad sp list --spn {}'.format(app_id_uri), checks=NoneCheck())
- self.cmd('ad app delete --id {}'.format(app_id_uri), None)
- self.cmd('ad app list --identifier-uri {}'.format(app_id_uri), checks=NoneCheck())
+ self.cmd('ad sp delete --id {app_id_uri}')
+ self.cmd('ad sp list --spn {app_id_uri}',
+ checks=self.is_empty())
+ self.cmd('ad app delete --id {app_id_uri}')
+ self.cmd('ad app list --identifier-uri {app_id_uri}',
+ checks=self.is_empty())
-class ApplicationSetScenarioTest(VCRTestBase):
- def __init__(self, test_method):
- super(ApplicationSetScenarioTest, self).__init__(__file__, test_method)
+class ApplicationSetScenarioTest(ScenarioTest):
def test_application_set_scenario(self):
- self.execute()
-
- def body(self):
- app_id_uri = 'http://azureclitest-graph'
- display_name = 'azureclitest'
+ self.kwargs.update({
+ 'app': 'http://azureclitest-graph',
+ 'name': 'azureclitest'
+ })
# crerate app through general option
- self.cmd('ad app create --display-name {} --homepage {} --identifier-uris {}'
- .format(display_name, app_id_uri, app_id_uri),
- checks=[JMESPathCheck('identifierUris[0]', app_id_uri)])
+ self.cmd('ad app create --display-name {name} --homepage {app} --identifier-uris {app}',
+ checks=self.check('identifierUris[0]', '{app}'))
# show/list app
- self.cmd('ad app show --id {}'.format(app_id_uri), checks=[
- JMESPathCheck('identifierUris[0]', app_id_uri)
- ])
- self.cmd('ad app list --display-name {}'.format(display_name), checks=[
- JMESPathCheck('[0].identifierUris[0]', app_id_uri),
- JMESPathCheck('length([*])', 1)
+ self.cmd('ad app show --id {app}',
+ checks=self.check('identifierUris[0]', '{app}'))
+ self.cmd('ad app list --display-name {name}', checks=[
+ self.check('[0].identifierUris[0]', '{app}'),
+ self.check('length([*])', 1)
])
# update app
- reply_uri = "http://azureclitest-replyuri"
- self.cmd('ad app update --id {} --reply-urls {}'.format(app_id_uri, reply_uri))
- self.cmd('ad app show --id {}'.format(app_id_uri), checks=[
- JMESPathCheck('replyUrls[0]', reply_uri)
- ])
+ self.kwargs['reply_uri'] = "http://azureclitest-replyuri"
+ self.cmd('ad app update --id {app} --reply-urls {reply_uri}')
+ self.cmd('ad app show --id {app}',
+ checks=self.check('replyUrls[0]', '{reply_uri}'))
# delete app
- self.cmd('ad app delete --id {}'.format(app_id_uri))
- self.cmd('ad app list --identifier-uri {}'.format(app_id_uri), checks=NoneCheck())
+ self.cmd('ad app delete --id {app}')
+ self.cmd('ad app list --identifier-uri {app}',
+ checks=self.is_empty())
-class CreateForRbacScenarioTest(ScenarioTest):
+class CreateForRbacScenarioTest(LiveScenarioTest):
def test_revoke_sp_for_rbac(self):
- if not self.in_recording:
- return
- name = 'http://azurecli-test-revoke'
- self.cmd('ad sp create-for-rbac -n ' + name)
+ self.kwargs['name'] = 'http://azurecli-test-revoke'
+ self.cmd('ad sp create-for-rbac -n {name}')
- self.cmd('ad sp list --spn ' + name)
+ self.cmd('ad sp list --spn {name}')
- self.cmd('ad app list --identifier-uri ' + name)
+ self.cmd('ad app list --identifier-uri {name}')
- result = self.cmd('role assignment list --assignee ' + name).get_output_in_json()
+ result = self.cmd('role assignment list --assignee {name}').get_output_in_json()
object_id = result[0]['properties']['principalId']
- self.cmd('ad sp delete --id ' + name)
+ self.cmd('ad sp delete --id {name}')
result2 = self.cmd('role assignment list --all').get_output_in_json()
self.assertFalse([a for a in result2 if a['id'] == object_id])
- self.cmd('ad sp list --spn ' + name, checks=[
- JMESPathCheck2('length([])', 0)
- ])
- self.cmd('ad app list --identifier-uri ' + name, checks=[
- JMESPathCheck2('length([])', 0)
- ])
+ self.cmd('ad sp list --spn {name}',
+ checks=self.check('length([])', 0))
+ self.cmd('ad app list --identifier-uri {name}',
+ checks=self.check('length([])', 0))
class GraphGroupScenarioTest(ScenarioTest):
def test_graph_group_scenario(self):
- self.user1 = 'deleteme1'
- self.user1 = 'deleteme2'
- upn = self.cmd('account show --query "user.name" -o tsv').output
- _, domain = upn.split('@', 1)
- user1 = 'deleteme1'
- user2 = 'deleteme2'
- group = 'deleteme_g'
- password = 'Test1234!!'
+
+ upn = self.cmd('account show --query "user.name"').get_output_in_json()
+
+ self.kwargs = {
+ 'user1': 'deleteme1',
+ 'user2': 'deleteme2',
+ 'upn': upn,
+ 'domain': upn.split('@', 1)[1],
+ 'group': 'deleteme_g',
+ 'pass': 'Test1234!!'
+ }
try:
# create user1
- user1_result = json.loads(self.cmd('ad user create --display-name {0} --password {1} --user-principal-name {0}@{2}'.format(user1, password, domain)).output)
+ user1_result = self.cmd('ad user create --display-name {user1} --password {pass} --user-principal-name {user1}@{domain}').get_output_in_json()
+ self.kwargs['user1_id'] = user1_result['objectId']
# create user2
- user2_result = json.loads(self.cmd('ad user create --display-name {0} --password {1} --user-principal-name {0}@{2}'.format(user2, password, domain)).output)
+ user2_result = self.cmd('ad user create --display-name {user2} --password {pass} --user-principal-name {user2}@{domain}').get_output_in_json()
+ self.kwargs['user2_id'] = user2_result['objectId']
# create group
- group_result = json.loads(self.cmd('ad group create --display-name {0} --mail-nickname {0}'.format(group)).output)
+ group_result = self.cmd('ad group create --display-name {group} --mail-nickname {group}').get_output_in_json()
+ self.kwargs['group_id'] = group_result['objectId']
# add user1 into group
- self.cmd('ad group member add -g {} --member-id {}'.format(group, user1_result['objectId']), checks=NoneCheck2())
+ self.cmd('ad group member add -g {group} --member-id {user1_id}',
+ checks=self.is_empty())
# add user2 into group
- self.cmd('ad group member add -g {} --member-id {}'.format(group, user2_result['objectId']), checks=NoneCheck2())
+ self.cmd('ad group member add -g {group} --member-id {user2_id}',
+ checks=self.is_empty())
# show group
- self.cmd('ad group show -g ' + group, checks=[
- JMESPathCheck2('objectId', group_result['objectId']),
- JMESPathCheck2('displayName', group)
- ])
- self.cmd('ad group show -g ' + group_result['objectId'], checks=[
- JMESPathCheck2('displayName', group)
+ self.cmd('ad group show -g {group}', checks=[
+ self.check('objectId', '{group_id}'),
+ self.check('displayName', '{group}')
])
+ self.cmd('ad group show -g {group}',
+ checks=self.check('displayName', '{group}'))
# list group
- self.cmd('ad group list --display-name ' + group, checks=[
- JMESPathCheck2('[0].displayName', group)
- ])
+ self.cmd('ad group list --display-name {group}',
+ checks=self.check('[0].displayName', '{group}'))
# show member groups
- self.cmd('ad group get-member-groups -g ' + group, checks=[
- JMESPathCheck2('length([])', 0)
- ])
+ self.cmd('ad group get-member-groups -g {group}',
+ checks=self.check('length([])', 0))
# check user1 memebership
- self.cmd('ad group member check -g {} --member-id {}'.format(group, user1_result['objectId']), checks=[
- JMESPathCheck2('value', True)
- ])
+ self.cmd('ad group member check -g {group} --member-id {user1_id}',
+ checks=self.check('value', True))
# check user2 memebership
- self.cmd('ad group member check -g {} --member-id {}'.format(group, user2_result['objectId']), checks=[
- JMESPathCheck2('value', True)
- ])
- # list memebers
- self.cmd('ad group member list -g ' + group, checks=[
- JMESPathCheck2("length([?displayName=='{}'])".format(user1), 1),
- JMESPathCheck2("length([?displayName=='{}'])".format(user2), 1),
- JMESPathCheck2("length([])", 2),
+ self.cmd('ad group member check -g {group} --member-id {user2_id}',
+ checks=self.check('value', True)) # list memebers
+ self.cmd('ad group member list -g {group}', checks=[
+ self.check("length([?displayName=='{user1}'])", 1),
+ self.check("length([?displayName=='{user2}'])", 1),
+ self.check("length([])", 2),
])
# remove user1
- self.cmd('ad group member remove -g {} --member-id {}'.format(group, user1_result['objectId']))
+ self.cmd('ad group member remove -g {group} --member-id {user1_id}')
# check user1 memebership
- self.cmd('ad group member check -g {} --member-id {}'.format(group, user1_result['objectId']), checks=[
- JMESPathCheck2('value', False)
- ])
+ self.cmd('ad group member check -g {group} --member-id {user1_id}',
+ checks=self.check('value', False))
# delete the group
- self.cmd('ad group delete -g ' + group)
- self.cmd('ad group list', checks=[
- JMESPathCheck2("length([?displayName=='{}'])".format(group), 0)
- ])
+ self.cmd('ad group delete -g {group}')
+ self.cmd('ad group list',
+ checks=self.check("length([?displayName=='{group}'])", 0))
finally:
- self.cmd('ad user delete --upn-or-object-id ' + user1_result['objectId'])
- self.cmd('ad user delete --upn-or-object-id ' + user2_result['objectId'])
+ self.cmd('ad user delete --upn-or-object-id {user1_id}')
+ self.cmd('ad user delete --upn-or-object-id {user2_id}')
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_role.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_role.py
index 1585be8025b..3d12115ea08 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_role.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_role.py
@@ -10,68 +10,68 @@
import time
import unittest
-from azure.cli.testsdk import (LiveScenarioTest, ResourceGroupPreparer, KeyVaultPreparer,
- JMESPathCheck as JMESPathCheckV2)
-import azure.cli.core.azlogging as azlogging
-from azure.cli.testsdk.vcr_test_base import (VCRTestBase, JMESPathCheck, ResourceGroupVCRTestBase, NoneCheck,
- MOCKED_SUBSCRIPTION_ID)
-
-logger = azlogging.get_az_logger(__name__)
+from azure.cli.testsdk import LiveScenarioTest, ResourceGroupPreparer, KeyVaultPreparer
class RbacSPSecretScenarioTest(LiveScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_create_rbac_sp_minimal')
def test_create_for_rbac_with_secret(self, resource_group):
- sp_name = 'http://{}'.format(resource_group)
+ self.kwargs['sp'] = 'http://{}'.format(resource_group)
try:
- self.cmd('ad sp create-for-rbac -n {}2'.format(sp_name), checks=[
- JMESPathCheckV2('name', sp_name)
- ])
+ self.cmd('ad sp create-for-rbac -n {sp}2',
+ checks=self.check('name', '{sp}'))
finally:
- self.cmd('ad app delete --id {}2'.format(sp_name))
+ self.cmd('ad app delete --id {sp}2')
@ResourceGroupPreparer(name_prefix='cli_create_rbac_sp_with_password')
def test_create_for_rbac_with_secret(self, resource_group):
- subscription_id = self.cmd('account list --query "[?isDefault].id"').get_output_in_json()
- scope = '/subscriptions/{}'.format(subscription_id[0])
- sp_name = 'http://{}'.format(resource_group)
+ subscription_id = self.get_subscription_id()
+ self.kwargs.update({
+ 'sub': subscription_id,
+ 'scope': '/subscriptions/{}'.format(subscription_id),
+ 'sp': 'http://{}'.format(resource_group)
+ })
try:
- self.cmd('ad sp create-for-rbac -n {0} --scopes {1} {1}/resourceGroups/{2}'.format(sp_name, scope, resource_group), checks=[
- JMESPathCheckV2('name', sp_name)
- ])
- self.cmd('role assignment list --assignee {} --scope {}'.format(sp_name, scope),
- checks=[JMESPathCheckV2("length([])", 1)])
- self.cmd('role assignment list --assignee {} -g {}'.format(sp_name, resource_group),
- checks=[JMESPathCheckV2("length([])", 1)])
- self.cmd('role assignment delete --assignee {} -g {}'.format(sp_name, resource_group),
- checks=NoneCheck())
- self.cmd('role assignment delete --assignee {}'.format(sp_name), checks=NoneCheck())
+ self.cmd('ad sp create-for-rbac -n {sp} --scopes {scope} {scope}/resourceGroups/{rg}',
+ checks=self.check('name', '{sp}'))
+ self.cmd('role assignment list --assignee {sp} --scope {scope}',
+ checks=self.check("length([])", 1))
+ self.cmd('role assignment list --assignee {sp} -g {rg}',
+ checks=self.check("length([])", 1))
+ self.cmd('role assignment delete --assignee {sp} -g {rg}',
+ checks=self.is_empty())
+ self.cmd('role assignment delete --assignee {sp}',
+ checks=self.is_empty())
finally:
- self.cmd('ad app delete --id {}'.format(sp_name))
+ self.cmd('ad app delete --id {sp}')
class RbacSPCertScenarioTest(LiveScenarioTest):
@ResourceGroupPreparer(name_prefix='cli_create_rbac_sp_with_cert')
def test_create_for_rbac_with_cert(self, resource_group):
- subscription_id = self.cmd('account list --query "[?isDefault].id"').get_output_in_json()
- scope = '/subscriptions/{}'.format(subscription_id[0])
- sp_name = 'http://' + resource_group
+ subscription_id = self.get_subscription_id()
+ self.kwargs.update({
+ 'sub': subscription_id,
+ 'scope': '/subscriptions/{}'.format(subscription_id),
+ 'sp': 'http://' + resource_group
+ })
try:
- result = self.cmd('ad sp create-for-rbac -n {0} --scopes {1} {1}/resourceGroups/{2} --create-cert'.format(sp_name, scope, resource_group)).get_output_in_json()
- self.assertEqual(sp_name, result['name'])
+ result = self.cmd('ad sp create-for-rbac -n {sp} --scopes {scope} {scope}/resourceGroups/{rg} --create-cert',
+ checks=self.check('name', '{sp}')).get_output_in_json()
self.assertTrue(result['fileWithCertAndPrivateKey'].endswith('.pem'))
os.remove(result['fileWithCertAndPrivateKey'])
- result = self.cmd('ad sp reset-credentials -n {0} --create-cert'.format(sp_name)).get_output_in_json()
- self.assertEqual(sp_name, result['name'])
+ result = self.cmd('ad sp reset-credentials -n {sp} --create-cert',
+ checks=self.check('name', '{sp}')).get_output_in_json()
self.assertTrue(result['fileWithCertAndPrivateKey'].endswith('.pem'))
os.remove(result['fileWithCertAndPrivateKey'])
finally:
- self.cmd('ad app delete --id {}'.format(sp_name), checks=NoneCheck())
+ self.cmd('ad app delete --id {sp}',
+ checks=self.is_empty())
class RbacSPKeyVaultScenarioTest(LiveScenarioTest):
@@ -80,72 +80,66 @@ class RbacSPKeyVaultScenarioTest(LiveScenarioTest):
def test_create_for_rbac_with_new_kv_cert(self, resource_group, key_vault):
import time
- sp_name = 'http://{}'.format(resource_group)
-
- subscription_id = self.cmd('account list --query "[?isDefault].id"').get_output_in_json()
- scope = '/subscriptions/{}'.format(subscription_id[0])
- cert_name = 'cert1'
+ subscription_id = self.get_subscription_id()
+
+ self.kwargs.update({
+ 'sp': 'http://{}'.format(resource_group),
+ 'sub': subscription_id,
+ 'scope': '/subscriptions/{}'.format(subscription_id),
+ 'cert': 'cert1'
+ })
time.sleep(5)
try:
- self.cmd('ad sp create-for-rbac --scopes {0} {0}/resourceGroups/{1} --create-cert --keyvault {2} --cert {3} -n {4}'.format(
- scope, resource_group, key_vault, cert_name, sp_name)).get_output_in_json()
- cer1 = self.cmd('keyvault certificate show --vault-name {0} -n {1}'.format(key_vault, cert_name)).get_output_in_json()['cer']
- self.cmd('ad sp reset-credentials -n {0} --create-cert --keyvault {1} --cert {2}'.format(sp_name, key_vault, cert_name))
- cer2 = self.cmd('keyvault certificate show --vault-name {0} -n {1}'.format(key_vault, cert_name)).get_output_in_json()['cer']
+ self.cmd('ad sp create-for-rbac --scopes {scope} {scope}/resourceGroups/{rg} --create-cert --keyvault {kv} --cert {cert} -n {sp}')
+ cer1 = self.cmd('keyvault certificate show --vault-name {kv} -n {cert}').get_output_in_json()['cer']
+ self.cmd('ad sp reset-credentials -n {sp} --create-cert --keyvault {kv} --cert {cert}')
+ cer2 = self.cmd('keyvault certificate show --vault-name {kv} -n {cert}').get_output_in_json()['cer']
self.assertTrue(cer1 != cer2)
finally:
- self.cmd('ad app delete --id {}'.format(sp_name))
+ self.cmd('ad app delete --id {sp}')
@ResourceGroupPreparer(name_prefix='cli_test_sp_with_kv_existing_cert')
@KeyVaultPreparer()
def test_create_for_rbac_with_existing_kv_cert(self, resource_group, key_vault):
import time
- sp_name = 'http://{}'.format(resource_group)
-
- subscription_id = self.cmd('account list --query "[?isDefault].id"').get_output_in_json()
- scope = '/subscriptions/{}'.format(subscription_id[0])
- cert_name = 'cert1'
+ subscription_id = self.get_subscription_id()
+
+ self.kwargs.update({
+ 'sp': 'http://{}'.format(resource_group),
+ 'sub': subscription_id,
+ 'scope': '/subscriptions/{}'.format(subscription_id),
+ 'cert': 'cert1'
+ })
time.sleep(5)
# test with valid length cert
try:
- policy = self.cmd('keyvault certificate get-default-policy').get_output_in_json()
- self.cmd('keyvault certificate create --vault-name {} -n {} -p "{}" --validity 24'.format(key_vault, cert_name, policy))
- self.cmd('ad sp create-for-rbac --scopes {0} {0}/resourceGroups/{1} --keyvault {2} --cert {3} -n {4}'.format(
- scope, resource_group, key_vault, cert_name, sp_name)).get_output_in_json()
- self.cmd('ad sp reset-credentials -n {0} --keyvault {1} --cert {2}'.format(sp_name, key_vault, cert_name))
+ self.kwargs['policy'] = self.cmd('keyvault certificate get-default-policy').get_output_in_json()
+ self.cmd('keyvault certificate create --vault-name {kv} -n {cert} -p "{policy}" --validity 24')
+ self.cmd('ad sp create-for-rbac --scopes {scope} {scope}/resourceGroups/{rg} --keyvault {kv} --cert {cert} -n {sp}')
+ self.cmd('ad sp reset-credentials -n {sp} --keyvault {kv} --cert {cert}')
finally:
- self.cmd('ad app delete --id {}'.format(sp_name))
+ self.cmd('ad app delete --id {sp}')
# test with cert that has too short a validity
try:
- sp_name = '{}2'.format(sp_name)
- self.cmd('keyvault certificate create --vault-name {} -n {} -p "{}" --validity 6'.format(key_vault, cert_name, policy))
- self.cmd('ad sp create-for-rbac --scopes {0} {0}/resourceGroups/{1} --keyvault {2} --cert {3} -n {4}'.format(
- scope, resource_group, key_vault, cert_name, sp_name)).get_output_in_json()
- self.cmd('ad sp reset-credentials -n {0} --keyvault {1} --cert {2}'.format(sp_name, key_vault, cert_name))
+ self.kwargs['sp'] = '{}2'.format(self.kwargs['sp'])
+ self.cmd('keyvault certificate create --vault-name {kv} -n {cert} -p "{policy}" --validity 6')
+ self.cmd('ad sp create-for-rbac --scopes {scope} {scope}/resourceGroups/{rg} --keyvault {kv} --cert {cert} -n {sp}')
+ self.cmd('ad sp reset-credentials -n {sp} --keyvault {kv} --cert {cert}')
finally:
- self.cmd('ad app delete --id {}'.format(sp_name))
+ self.cmd('ad app delete --id {sp}')
-class RoleCreateScenarioTest(VCRTestBase):
- def __init__(self, test_method):
- super(RoleCreateScenarioTest, self).__init__(__file__, test_method)
+# TODO: Allow playback when issue #3187 resolved
+class RoleCreateScenarioTest(LiveScenarioTest):
def test_role_create_scenario(self):
- if self.playback:
- logger.warning('Skipping RoleCreateScenarioTest due to bugs in role commands. '
- 'See issue #3187.')
- return
- self.execute()
-
- def body(self):
- if self.playback:
- subscription_id = MOCKED_SUBSCRIPTION_ID
- else:
- subscription_id = self.cmd('account list --query "[?isDefault].id" -o tsv')
+ import time
+
+ subscription_id = self.get_subscription_id()
role_name = 'cli-test-role3'
template = {
"Name": role_name,
@@ -166,89 +160,75 @@ def body(self):
with open(temp_file, 'w') as f:
json.dump(template, f)
- self.cmd('role definition create --role-definition {}'.format(temp_file.replace('\\', '\\\\')), None)
- self.cmd('role definition list -n {}'.format(role_name),
- checks=[JMESPathCheck('[0].properties.roleName', role_name)])
- self.cmd('role definition delete -n {}'.format(role_name), None)
- self.cmd('role definition list -n {}'.format(role_name), NoneCheck())
-
-
-class RoleAssignmentScenarioTest(ResourceGroupVCRTestBase):
- def __init__(self, test_method):
- super(RoleAssignmentScenarioTest, self).__init__(__file__, test_method,
- resource_group='cli-role-assignment-test')
- self.user = 'testuser1@azuresdkteam.onmicrosoft.com'
-
- def set_up(self):
- super(RoleAssignmentScenarioTest, self).set_up()
- self.cmd(
- 'ad user create --display-name tester123 --password Test123456789 --user-principal-name {}'.format(
- self.user), None)
- time.sleep(
- 15) # By-design, it takes some time for RBAC system propagated with graph object change
-
- def tear_down(self):
- self.cmd('ad user delete --upn-or-object-id {}'.format(self.user), None)
- super(RoleAssignmentScenarioTest, self).tear_down()
-
- def test_role_assignment_scenario(self):
- if self.playback:
- return # live-only test, so far unable to replace guid in binary encoded body
- else:
- self.execute()
-
- def body(self):
- nsg_name = 'nsg1'
- self.cmd('network nsg create -n {} -g {}'.format(nsg_name, self.resource_group), None)
- result = self.cmd('network nsg show -n {} -g {}'.format(nsg_name, self.resource_group),
- None)
- resource_id = result['id']
-
- # test role assignments on a resource group
- self.cmd('role assignment create --assignee {} --role contributor -g {}'.format(self.user,
- self.resource_group),
- None)
- self.cmd('role assignment list -g {}'.format(self.resource_group),
- checks=[JMESPathCheck("length([])", 1)])
- self.cmd('role assignment list --assignee {} --role contributor -g {}'.format(self.user,
- self.resource_group),
- checks=[JMESPathCheck("length([])", 1)])
-
- # test couple of more general filters
- result = self.cmd(
- 'role assignment list -g {} --include-inherited'.format(self.resource_group), None)
- self.assertTrue(len(result) >= 1)
-
- result = self.cmd('role assignment list --all'.format(self.user, self.resource_group), None)
- self.assertTrue(len(result) >= 1)
-
- self.cmd('role assignment delete --assignee {} --role contributor -g {}'.format(self.user,
- self.resource_group),
- None)
- self.cmd('role assignment list -g {}'.format(self.resource_group), checks=NoneCheck())
-
- # test role assignments on a resource
- self.cmd(
- 'role assignment create --assignee {} --role contributor --scope {}'.format(self.user,
- resource_id),
- None)
- self.cmd(
- 'role assignment list --assignee {} --role contributor --scope {}'.format(self.user,
- resource_id),
- checks=[JMESPathCheck("length([])", 1)])
- self.cmd(
- 'role assignment delete --assignee {} --role contributor --scope {}'.format(self.user,
- resource_id),
- None)
- self.cmd('role assignment list --scope {}'.format(resource_id), checks=NoneCheck())
-
- # test role assignment on subscription level
- self.cmd('role assignment create --assignee {} --role reader'.format(self.user), None)
- self.cmd('role assignment list --assignee {} --role reader'.format(self.user),
- checks=[JMESPathCheck("length([])", 1)])
- self.cmd('role assignment list --assignee {}'.format(self.user),
- checks=[JMESPathCheck("length([])", 1)])
- self.cmd('role assignment delete --assignee {} --role reader'.format(self.user), None)
+ self.kwargs.update({
+ 'sub': subscription_id,
+ 'role': role_name,
+ 'template': temp_file.replace('\\', '\\\\')
+ })
+
+ self.cmd('role definition create --role-definition {template}')
+ self.cmd('role definition list -n {role}',
+ checks=self.check('[0].properties.roleName', '{role}'))
+ self.cmd('role definition delete -n {role}',
+ checks=self.is_empty())
+ time.sleep(60)
+ self.cmd('role definition list -n {role}',
+ checks=self.is_empty())
+
+
+class RoleAssignmentScenarioTest(LiveScenarioTest):
+
+ @ResourceGroupPreparer(name_prefix='cli_test_role_assignment')
+ def test_role_assignment_scenario(self, resource_group):
+
+ self.kwargs.update({
+ 'upn': 'testuser1@azuresdkteam.onmicrosoft.com',
+ 'nsg': 'nsg1'
+ })
+
+ self.cmd('ad user create --display-name tester123 --password Test123456789 --user-principal-name {upn}')
+ time.sleep(15) # By-design, it takes some time for RBAC system propagated with graph object change
+
+ try:
+ self.cmd('network nsg create -n {nsg} -g {rg}')
+ result = self.cmd('network nsg show -n {nsg} -g {rg}').get_output_in_json()
+ self.kwargs['nsg_id'] = result['id']
+
+ # test role assignments on a resource group
+ self.cmd('role assignment create --assignee {upn} --role contributor -g {rg}')
+ self.cmd('role assignment list -g {rg}',
+ checks=self.check("length([])", 1))
+ self.cmd('role assignment list --assignee {upn} --role contributor -g {rg}',
+ checks=self.check("length([])", 1))
+
+ # test couple of more general filters
+ result = self.cmd('role assignment list -g {rg} --include-inherited').get_output_in_json()
+ self.assertTrue(len(result) >= 1)
+
+ result = self.cmd('role assignment list --all').get_output_in_json()
+ self.assertTrue(len(result) >= 1)
+
+ self.cmd('role assignment delete --assignee {upn} --role contributor -g {rg}')
+ self.cmd('role assignment list -g {rg}',
+ checks=self.is_empty())
+
+ # test role assignments on a resource
+ self.cmd('role assignment create --assignee {upn} --role contributor --scope {nsg_id}')
+ self.cmd('role assignment list --assignee {upn} --role contributor --scope {nsg_id}',
+ checks=self.check("length([])", 1))
+ self.cmd('role assignment delete --assignee {upn} --role contributor --scope {nsg_id}')
+ self.cmd('role assignment list --scope {nsg_id}',
+ checks=self.is_empty())
+
+ # test role assignment on subscription level
+ self.cmd('role assignment create --assignee {upn} --role reader')
+ self.cmd('role assignment list --assignee {upn} --role reader',
+ checks=self.check("length([])", 1))
+ self.cmd('role assignment list --assignee {upn}',
+ checks=self.check("length([])", 1))
+ self.cmd('role assignment delete --assignee {upn} --role reader')
+ finally:
+ self.cmd('ad user delete --upn-or-object-id {upn}')
if __name__ == '__main__':
diff --git a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_role_commands_thru_mock.py b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_role_commands_thru_mock.py
index 5ac53bdb42a..1003beab269 100644
--- a/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_role_commands_thru_mock.py
+++ b/src/command_modules/azure-cli-role/azure/cli/command_modules/role/tests/test_role_commands_thru_mock.py
@@ -9,6 +9,8 @@
import uuid
import mock
+from azure.cli.testsdk import TestCli
+
from azure.mgmt.authorization.models import RoleDefinition, RoleDefinitionProperties
from azure.graphrbac.models import Application, ServicePrincipal
from azure.cli.command_modules.role.custom import (create_role_definition,
@@ -58,7 +60,9 @@ def _create_def(role_definition_id, scope, role_definition):
role_definition_file = role_definition_file.replace('\\', '\\\\')
# action
- create_role_definition(role_definition_file)
+ cmd = mock.MagicMock()
+ cmd.cli_ctx = TestCli()
+ create_role_definition(cmd, role_definition_file)
# assert
self.assertTrue(self.create_def_invoked)
@@ -86,7 +90,9 @@ def _update_def(role_definition_id, scope, role_definition):
role_definition_file = role_definition_file.replace('\\', '\\\\')
# action
- update_role_definition(role_definition_file)
+ cmd = mock.MagicMock()
+ cmd.cli_ctx = TestCli()
+ update_role_definition(cmd, role_definition_file)
# assert
self.assertTrue(self.update_def_invoked)
@@ -110,7 +116,9 @@ def test_create_for_rbac_password_plumbed_through(self, graph_client_mock, auth_
faked_graph_client.service_principals.create.return_value = sp
# action
- result = create_service_principal_for_rbac(name, test_pwd, 12, skip_assignment=True)
+ cmd = mock.MagicMock()
+ cmd.cli_ctx = TestCli()
+ result = create_service_principal_for_rbac(cmd, name, test_pwd, 12, skip_assignment=True)
# assert
self.assertEqual(result['password'], test_pwd)
@@ -149,7 +157,9 @@ def mock_app_create(parameters):
faked_graph_client.service_principals.create.return_value = sp
# action
- result = create_service_principal_for_rbac(name, cert=cert, years=2, skip_assignment=True)
+ cmd = mock.MagicMock()
+ cmd.cli_ctx = TestCli()
+ result = create_service_principal_for_rbac(cmd, name, cert=cert, years=2, skip_assignment=True)
# assert
self.assertEqual(result['name'], 'http://' + name)
diff --git a/src/command_modules/azure-cli-servicefabric/azure/cli/command_modules/servicefabric/_help.py b/src/command_modules/azure-cli-servicefabric/azure/cli/command_modules/servicefabric/_help.py
index 90f8f8ee053..e36337137ee 100644
--- a/src/command_modules/azure-cli-servicefabric/azure/cli/command_modules/servicefabric/_help.py
+++ b/src/command_modules/azure-cli-servicefabric/azure/cli/command_modules/servicefabric/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps # pylint: disable=unused-import
+from knack.help_files import helps # pylint: disable=unused-import
# pylint: disable=line-too-long
diff --git a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/__init__.py b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/__init__.py
index dcce1e7c47e..0000ed002bf 100644
--- a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/__init__.py
+++ b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/__init__.py
@@ -9,7 +9,7 @@
def load_params(_):
- import azure.cli.command_modules.sql.params # pylint: disable=redefined-outer-name, unused-variable
+ import azure.cli.command_modules.sql._params # pylint: disable=redefined-outer-name, unused-variable
def load_commands():
diff --git a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_help.py b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_help.py
index 956b3e84f61..1d97923c1c6 100644
--- a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_help.py
+++ b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
helps['sql'] = """
diff --git a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/params.py b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_params.py
similarity index 99%
rename from src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/params.py
rename to src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_params.py
index bafe8e60a7f..c5ed7f124e6 100644
--- a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/params.py
+++ b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/_params.py
@@ -5,13 +5,8 @@
import itertools
from enum import Enum
-from azure.cli.core.commands import CliArgumentType, register_extra_cli_argument
-from azure.cli.core.commands.parameters import (
- enum_choice_list,
- ignore_type,
- get_resource_name_completion_list,
- three_state_flag)
-from azure.cli.core.sdk.util import ParametersContext, patch_arg_make_required, patch_arg_make_optional
+
+from azure.cli.core.sdk.util import ParametersContext, patch_arg_make_required
from azure.mgmt.sql.models.database import Database
from azure.mgmt.sql.models.elastic_pool import ElasticPool
from azure.mgmt.sql.models.import_extension_request \
@@ -28,6 +23,9 @@
ServerKeyType,
StorageKeyType,
TransparentDataEncryptionStatus)
+
+from knack.arguments import CLIArgumentType, ignore_type, enum_choice_list
+
from .custom import (
ClientAuthenticationType,
ClientType,
@@ -41,7 +39,7 @@
#####
-server_param_type = CliArgumentType(
+server_param_type = CLIArgumentType(
options_list=('--server', '-s'),
help='Name of the Azure SQL server.')
diff --git a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/custom.py b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/custom.py
index 35bd51e820f..364181e82c6 100644
--- a/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/custom.py
+++ b/src/command_modules/azure-cli-sql/azure/cli/command_modules/sql/custom.py
@@ -32,6 +32,8 @@
from azure.mgmt.resource import ResourceManagementClient
from azure.mgmt.storage import StorageManagementClient
+from knack.util import CLIError
+
# url parse package has different names in Python 2 and 3. 'six' package works cross-version.
from six.moves.urllib.parse import (quote, urlparse) # pylint: disable=import-error
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_factory.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_factory.py
index b5d226dc451..a98d0d1fada 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_factory.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_factory.py
@@ -4,11 +4,11 @@
# --------------------------------------------------------------------------------------------
from azure.cli.core.commands.client_factory import get_mgmt_service_client, get_data_service_client
-from azure.cli.core.commands import CLIError
-from azure.cli.core._profile import CLOUD
-from azure.cli.core.profiles import get_sdk, ResourceType
+from azure.cli.core.profiles import ResourceType, get_sdk
from .sdkutil import get_table_data_type
+from knack.util import CLIError
+
NO_CREDENTIALS_ERROR_MESSAGE = """
No credentials specified to access storage service. Please provide any of the following:
(1) account name and key (--account-name and --account-key options or
@@ -20,14 +20,14 @@
"""
-def get_storage_data_service_client(service, name=None, key=None, connection_string=None,
+def get_storage_data_service_client(cli_ctx, service, name=None, key=None, connection_string=None,
sas_token=None):
return get_data_service_client(service,
name,
key,
connection_string,
sas_token,
- endpoint_suffix=CLOUD.suffixes.storage_endpoint)
+ endpoint_suffix=cli_ctx.cloud.suffixes.storage_endpoint)
def generic_data_service_factory(service, name=None, key=None, connection_string=None, sas_token=None):
@@ -45,8 +45,8 @@ def storage_client_factory(**_):
return get_mgmt_service_client(ResourceType.MGMT_STORAGE)
-def file_data_service_factory(kwargs):
- FileService = get_sdk(ResourceType.DATA_STORAGE, 'file#FileService')
+def file_data_service_factory(cli_ctx, kwargs):
+ FileService = cli_ctx.cloudget_sdk(ResourceType.DATA_STORAGE, 'file#FileService')
return generic_data_service_factory(
FileService,
kwargs.pop('account_name', None),
@@ -55,8 +55,8 @@ def file_data_service_factory(kwargs):
sas_token=kwargs.pop('sas_token', None))
-def page_blob_service_factory(kwargs):
- PageBlobService = get_sdk(ResourceType.DATA_STORAGE, 'blob.pageblobservice#PageBlobService')
+def page_blob_service_factory(cli_ctx, kwargs):
+ PageBlobService = get_sdk(cli_ctx, ResourceType.DATA_STORAGE, 'blob.pageblobservice#PageBlobService')
return generic_data_service_factory(
PageBlobService,
kwargs.pop('account_name', None),
@@ -65,8 +65,8 @@ def page_blob_service_factory(kwargs):
sas_token=kwargs.pop('sas_token', None))
-def blob_data_service_factory(kwargs):
- BlockBlobService = get_sdk(ResourceType.DATA_STORAGE, 'blob#BlockBlobService')
+def blob_data_service_factory(cli_ctx, kwargs):
+ BlockBlobService = get_sdk(cli_ctx, ResourceType.DATA_STORAGE, 'blob#BlockBlobService')
from ._params import blob_types
blob_type = kwargs.get('blob_type')
blob_service = blob_types.get(blob_type, BlockBlobService)
@@ -88,8 +88,8 @@ def table_data_service_factory(kwargs):
sas_token=kwargs.pop('sas_token', None))
-def queue_data_service_factory(kwargs):
- QueueService = get_sdk(ResourceType.DATA_STORAGE, 'queue#QueueService')
+def queue_data_service_factory(cli_ctx, kwargs):
+ QueueService = get_sdk(cli_ctx, ResourceType.DATA_STORAGE, 'queue#QueueService')
return generic_data_service_factory(
QueueService,
kwargs.pop('account_name', None),
@@ -98,8 +98,8 @@ def queue_data_service_factory(kwargs):
sas_token=kwargs.pop('sas_token', None))
-def cloud_storage_account_service_factory(kwargs):
- CloudStorageAccount = get_sdk(ResourceType.DATA_STORAGE, 'common#CloudStorageAccount')
+def cloud_storage_account_service_factory(cli_ctx, kwargs):
+ CloudStorageAccount = get_sdk(cli_ctx, ResourceType.DATA_STORAGE, 'common#CloudStorageAccount')
account_name = kwargs.pop('account_name', None)
account_key = kwargs.pop('account_key', None)
sas_token = kwargs.pop('sas_token', None)
@@ -107,12 +107,12 @@ def cloud_storage_account_service_factory(kwargs):
return CloudStorageAccount(account_name, account_key, sas_token)
-def multi_service_properties_factory(kwargs):
+def multi_service_properties_factory(cli_ctx, kwargs):
"""Create multiple data services properties instance based on the services option"""
from .services_wrapper import ServiceProperties
BaseBlobService, FileService, QueueService, = \
- get_sdk(ResourceType.DATA_STORAGE,
+ get_sdk(cli_ctx, ResourceType.DATA_STORAGE,
'blob.baseblobservice#BaseBlobService', 'file#FileService', 'queue#QueueService')
TableService = get_table_data_type('table', 'TableService')
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_help.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_help.py
index 64756b4547e..7badfa63e9b 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_help.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_help.py
@@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
# pylint: disable=line-too-long, too-many-lines
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_params.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_params.py
index c7bed7178da..c4136e62d77 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_params.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_params.py
@@ -8,18 +8,16 @@
from argcomplete.completers import FilesCompleter
from six import u as unicode_string
-from azure.cli.core._config import az_config
-from azure.cli.core.commands.parameters import (ignore_type, tags_type, file_type, get_resource_name_completion_list,
- enum_choice_list, model_choice_list, enum_default, location_type,
- three_state_flag)
+from azure.common import AzureMissingResourceHttpError
+
+from azure.cli.core.commands.parameters import \
+ (tags_type, file_type, get_resource_name_completion_list, model_choice_list, enum_default, location_type)
from azure.cli.core.commands.validators import get_default_location_from_resource_group
import azure.cli.core.commands.arm # pylint: disable=unused-import
-from azure.cli.core.commands import (register_cli_argument, register_extra_cli_argument, CliArgumentType,
- VersionConstraint)
-
-from azure.common import AzureMissingResourceHttpError
+from azure.cli.core.commands import register_cli_argument, register_extra_cli_argument, VersionConstraint
+from azure.cli.core.profiles import get_sdk, ResourceType
-from azure.cli.core.profiles import get_sdk, ResourceType, supported_api_version
+from knack.arguments import enum_choice_list, ignore_type, CLIArgumentType
from .sdkutil import get_table_data_type
from ._factory import get_storage_data_service_client
@@ -31,13 +29,12 @@
validate_custom_domain, validate_public_access,
process_blob_upload_batch_parameters, process_blob_download_batch_parameters,
process_file_upload_batch_parameters, process_file_download_batch_parameters,
- process_blob_batch_source_parameters, process_file_batch_source_parameters,
- get_content_setting_validator, validate_encryption_services, validate_accept,
+ get_content_setting_validator, validate_encryption, validate_accept,
validate_key, storage_account_key_options, validate_encryption_source,
process_file_download_namespace,
process_metric_update_namespace, process_blob_copy_batch_namespace,
get_source_file_or_blob_service_client, process_blob_source_uri,
- get_char_options_validator, validate_bypass, validate_subnet, page_blob_tier_validator, blob_tier_validator)
+ get_char_options_validator)
DeleteSnapshot, BlockBlobService, PageBlobService, AppendBlobService = get_sdk(ResourceType.DATA_STORAGE,
'DeleteSnapshot',
@@ -105,6 +102,7 @@ def _in_api_range(kwargs):
max_api = kwargs.pop('max_api', None)
min_api = kwargs.pop('min_api', None)
if resource_type and (max_api or min_api):
+ from azure.cli.core.profiles import supported_api_version
return supported_api_version(resource_type, min_api=min_api, max_api=max_api)
return True
@@ -278,6 +276,7 @@ def register_blob_source_uri_arguments(scope):
register_cli_argument('storage', 'if_none_match', arg_group='Pre-condition')
register_cli_argument('storage', 'container_name', container_name_type)
+
for item in ['check-name', 'delete', 'list', 'show', 'show-usage', 'update', 'keys']:
register_cli_argument('storage account {}'.format(item), 'account_name', account_name_type, options_list=('--name', '-n'))
@@ -289,37 +288,23 @@ def register_blob_source_uri_arguments(scope):
def register_common_storage_account_options(context):
- context.reg_arg('https_only', help='Allows https traffic only to storage service.', **three_state_flag())
+ context.reg_arg('https_only', help='Allows https traffic only to storage service.', arg_type=get_three_state_flag())
context.reg_arg('sku', help='The storage account SKU.', **model_choice_list(ResourceType.MGMT_STORAGE, 'SkuName'))
+ context.reg_arg('assign_identity', help='Generate and assign a new Storage Account Identity for this storage '
+ 'account for use with key management services like Azure KeyVault.',
+ action='store_true', resource_type=ResourceType.MGMT_STORAGE, min_api='2017-06-01')
context.reg_arg('access_tier', help='The access tier used for billing StandardBlob accounts. Cannot be set for '
'StandardLRS, StandardGRS, StandardRAGRS, or PremiumLRS account types. It is '
'required for StandardBlob accounts during creation',
**model_choice_list(ResourceType.MGMT_STORAGE, 'AccessTier'))
- # after API 2016-12-01
- if supported_api_version(resource_type=ResourceType.MGMT_STORAGE, min_api='2016-12-01'):
- encryption_services_model = get_sdk(ResourceType.MGMT_STORAGE, 'models#EncryptionServices')
- if encryption_services_model:
-
- encryption_choices = []
- for attribute in encryption_services_model._attribute_map.keys(): # pylint: disable=protected-access
- if not encryption_services_model._validation.get(attribute, {}).get('readonly'): # pylint: disable=protected-access
- # skip readonly attributes, which are not for input
- encryption_choices.append(attribute)
-
- context.reg_arg('encryption_services', nargs='+', help='Specifies which service(s) to encrypt.',
- validator=validate_encryption_services, **enum_choice_list(encryption_choices))
-
- # after API 2017-06-01
- if supported_api_version(resource_type=ResourceType.MGMT_STORAGE, min_api='2017-06-01'):
- context.reg_arg('assign_identity', action='store_true',
- help='Generate and assign a new Storage Account Identity for this storage account for use with '
- 'key management services like Azure KeyVault.')
-
- # the options of encryption key sources are hardcoded since there isn't a enum represents them in the SDK.
- context.reg_arg('encryption_key_source', help='The encryption keySource (provider). Default: Microsoft.Storage',
- validator=validate_encryption_source,
- **enum_choice_list(['Microsoft.Storage', 'Microsoft.Keyvault']))
+ encryption_services_model = get_sdk(ResourceType.MGMT_STORAGE, 'models#EncryptionServices')
+ if encryption_services_model:
+ encryption_choices = list(encryption_services_model._attribute_map.keys()) # pylint: disable=protected-access
+ context.reg_arg('encryption', nargs='+', help='Specifies which service(s) to encrypt.',
+ validator=validate_encryption,
+ resource_type=ResourceType.MGMT_STORAGE, min_api='2016-12-01',
+ **enum_choice_list(encryption_choices))
with CommandContext('storage account create') as c:
@@ -345,24 +330,6 @@ def register_common_storage_account_options(context):
**enum_choice_list(['true', 'false']))
c.reg_arg('tags', tags_type, default=None)
- # after API 2017-06-01
- if supported_api_version(resource_type=ResourceType.MGMT_STORAGE, min_api='2017-06-01'):
- c.reg_arg('encryption_key_vault_properties', ignore_type)
-
- with c.arg_group('Customer managed key') as g:
- g.reg_extra_arg('encryption_key_name', help='The name of the KeyVault key.')
- g.reg_extra_arg('encryption_key_vault', help='The Uri of the KeyVault')
- g.reg_extra_arg('encryption_key_version', help='The version of the KeyVault key')
-
-with VersionConstraint(ResourceType.MGMT_STORAGE, min_api='2017-06-01') as c:
- for item in ['create', 'update']:
- register_cli_argument('storage account {}'.format(item), 'bypass', nargs='+', validator=validate_bypass, arg_group='Network Rule', help='Bypass traffic for space-separated uses.', **model_choice_list(ResourceType.MGMT_STORAGE, 'Bypass'))
- register_cli_argument('storage account {}'.format(item), 'default_action', arg_group='Network Rule', help='Default action to apply when no rule matches.', **model_choice_list(ResourceType.MGMT_STORAGE, 'DefaultAction'))
-
- register_cli_argument('storage account network-rule', 'storage_account_name', account_name_type)
- register_cli_argument('storage account network-rule', 'ip_address', help='IPv4 address or CIDR range.')
- register_cli_argument('storage account network-rule', 'subnet', help='Name or ID of subnet. If name is supplied, `--vnet-name` must be supplied.')
- register_cli_argument('storage account network-rule', 'vnet_name', help='Name of a virtual network.', validator=validate_subnet)
register_cli_argument('storage account keys renew', 'key_name', options_list=('--key',), help='The key to regenerate.', validator=validate_key, **enum_choice_list(list(storage_account_key_options.keys())))
register_cli_argument('storage account keys renew', 'account_name', account_name_type, id_part=None)
@@ -415,32 +382,10 @@ def register_common_storage_account_options(context):
for item in ['update', 'upload', 'upload-batch']:
register_content_settings_argument('storage blob {}'.format(item), BlobContentSettings, item == 'update')
-with CommandContext('storage blob upload') as c:
- c.reg_arg('blob_type', help="Defaults to 'page' for *.vhd files, or 'block' otherwise.",
- options_list=('--type', '-t'), validator=validate_blob_type, **enum_choice_list(blob_types.keys()))
- c.reg_arg('maxsize_condition', help='The max length in bytes permitted for an append blob.')
- c.reg_arg('validate_content',
- help='Specifies that an MD5 hash shall be calculated for each chunk of the blob and verified by the '
- 'service when the chunk has arrived.',
- resource_type=ResourceType.DATA_STORAGE,
- min_api='2016-05-31')
-
- from azure.cli.command_modules.storage.util import get_blob_tier_names
- c.reg_arg('tier',
- help='A page blob tier value to set the blob to. The tier correlates to the size of the blob and number '
- 'of allowed IOPS. This is only applicable to page blobs on premium storage accounts.',
- resource_type=ResourceType.DATA_STORAGE,
- min_api='2017-04-17',
- validator=page_blob_tier_validator,
- **enum_choice_list(get_blob_tier_names('PremiumPageBlobTier')))
-
-with CommandContext('storage blob set-tier') as c:
- c.reg_arg('blob_type', help="The blob's type", options_list=('--type', '-t'), **enum_choice_list(['block', 'page']))
- c.reg_arg('tier', help='The tier value to set the blob to.', validator=blob_tier_validator)
- c.reg_arg('timeout', help='The timeout parameter is expressed in seconds. This method may make multiple calls to '
- 'the Azure service and the timeout will apply to each call individually.',
- type=int)
-
+register_cli_argument('storage blob upload', 'blob_type', help="Defaults to 'page' for *.vhd files, or 'block' otherwise.", options_list=('--type', '-t'), validator=validate_blob_type, **enum_choice_list(blob_types.keys()))
+register_cli_argument('storage blob upload', 'maxsize_condition', help='The max length in bytes permitted for an append blob.')
+with VersionConstraint(ResourceType.DATA_STORAGE, min_api='2016-05-31') as c:
+ c.register_cli_argument('storage blob upload', 'validate_content', help='Specifies that an MD5 hash shall be calculated for each chunk of the blob and verified by the service when the chunk has arrived.')
# TODO: Remove once #807 is complete. Smart Create Generation requires this parameter.
register_extra_cli_argument('storage blob upload', '_subscription_id', options_list=('--subscription',), help=argparse.SUPPRESS)
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_validators.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_validators.py
index 647fb60e74d..152a5b28785 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_validators.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_validators.py
@@ -8,13 +8,14 @@
import re
from datetime import datetime, timedelta
-from azure.cli.core.util import CLIError
+from azure.cli.core.profiles import get_sdk, ResourceType
from azure.cli.core._profile import CLOUD
-from azure.cli.core._config import az_config
-from azure.cli.core.profiles import get_sdk, ResourceType, supported_api_version
+
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.commands.validators import validate_key_value_pairs
+from knack.util import CLIError
+
from ._factory import get_storage_data_service_client
from .util import glob_files_locally, guess_content_type
from .sdkutil import get_table_data_type
@@ -22,7 +23,6 @@
storage_account_key_options = {'primary': 'key1', 'secondary': 'key2'}
-
# Utilities
def _query_account_key(account_name):
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/blob.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/blob.py
index e0659ad7024..58ebeb711e0 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/blob.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/blob.py
@@ -21,6 +21,8 @@
mkdir_p, guess_content_type)
from azure.cli.command_modules.storage.url_quote_util import encode_for_url, make_encoded_file_url_and_params
+from knack.util import CLIError
+
BlobCopyResult = namedtuple('BlobCopyResult', ['name', 'copy_id'])
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/commands.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/commands.py
index 615837b292b..50ac598b195 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/commands.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/commands.py
@@ -25,7 +25,7 @@
transform_url, transform_storage_list_output, transform_container_permission_output,
create_boolean_result_output_transformer)
from azure.cli.core.commands import cli_command, VersionConstraint
-from azure.cli.core.commands.arm import cli_generic_update_command
+from azure.cli.core.commands.arm import _cli_generic_update_command
from azure.cli.core.util import empty_on_404
from azure.cli.core.profiles import supported_api_version, ResourceType, get_sdk
from .sdkutil import cosmosdb_table_exists
@@ -74,7 +74,7 @@ def _dont_fail_not_exist(ex):
cli_command(__name__, 'storage account create', custom_path + 'create_storage_account')
if supported_api_version(ResourceType.MGMT_STORAGE, min_api='2016-12-01'):
- cli_generic_update_command(__name__, 'storage account update',
+ _cli_generic_update_command(__name__, 'storage account update',
mgmt_path + 'get_properties',
mgmt_path + 'update', factory,
custom_function_op=custom_path + 'update_storage_account')
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/custom.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/custom.py
index 47f8691439e..daceabe2232 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/custom.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/custom.py
@@ -8,22 +8,29 @@
from __future__ import print_function
from azure.cli.core.decorators import transfer_doc
-from azure.cli.core.util import CLIError
-from azure.cli.core.profiles import get_sdk, supported_api_version, ResourceType
-
+from azure.cli.core.profiles import ResourceType
from azure.cli.command_modules.storage._factory import storage_client_factory
+from azure.cli.command_modules.storage.util import guess_content_type
from .sdkutil import get_table_data_type
-Logging, Metrics, CorsRule, AccessPolicy, RetentionPolicy = \
- get_sdk(ResourceType.DATA_STORAGE, 'Logging', 'Metrics', 'CorsRule', 'AccessPolicy', 'RetentionPolicy',
- mod='common.models')
+from knack.util import CLIError
+
+def _get_standard_imports(cli_ctx):
+ raise CLIError('TODO: Update these merry old imports!')
+ Logging, Metrics, CorsRule, AccessPolicy, RetentionPolicy = get_sdk(ResourceType.DATA_STORAGE,
+ 'Logging',
+ 'Metrics',
+ 'CorsRule',
+ 'AccessPolicy',
+ 'RetentionPolicy',
+ mod='models')
-BlockBlobService, BaseBlobService, FileService, FileProperties, DirectoryProperties, QueueService = \
- get_sdk(ResourceType.DATA_STORAGE, 'blob#BlockBlobService', 'blob.baseblobservice#BaseBlobService',
- 'file#FileService', 'file.models#FileProperties', 'file.models#DirectoryProperties',
- 'queue#QueueService')
+ BlockBlobService, BaseBlobService, FileService, FileProperties, DirectoryProperties, TableService, QueueService = \
+ get_sdk(ResourceType.DATA_STORAGE, 'blob#BlockBlobService', 'blob.baseblobservice#BaseBlobService',
+ 'file#FileService', 'file.models#FileProperties', 'file.models#DirectoryProperties', 'table#TableService',
+ 'queue#QueueService')
-TableService = get_table_data_type('table', 'TableService')
+#TableService = get_table_data_type('table', 'TableService')
# CUSTOM METHODS
@@ -32,6 +39,7 @@ def create_storage_account(resource_group_name, account_name, sku=None, location
tags=None, custom_domain=None, encryption_services=None, access_tier=None, https_only=None,
bypass=None, default_action=None, assign_identity=False):
StorageAccountCreateParameters, Kind, Sku, CustomDomain, AccessTier, Identity, Encryption, NetworkRuleSet = get_sdk(
+ cli_ctx,
ResourceType.MGMT_STORAGE,
'StorageAccountCreateParameters',
'Kind',
@@ -64,8 +72,10 @@ def create_storage_account(resource_group_name, account_name, sku=None, location
return scf.storage_accounts.create(resource_group_name, account_name, params)
-def create_storage_account_with_account_type(resource_group_name, account_name, account_type, location=None, tags=None):
+def create_storage_account_with_account_type(cli_ctx, resource_group_name, account_name, account_type,
+ location=None, tags=None):
StorageAccountCreateParameters, AccountType = get_sdk(
+ cli_ctx,
ResourceType.MGMT_STORAGE,
'StorageAccountCreateParameters',
'AccountType',
@@ -75,10 +85,11 @@ def create_storage_account_with_account_type(resource_group_name, account_name,
return scf.storage_accounts.create(resource_group_name, account_name, params)
-def update_storage_account(instance, sku=None, tags=None, custom_domain=None, use_subdomain=None,
- encryption_services=None, encryption_key_source=None, encryption_key_vault_properties=None,
+def update_storage_account(cli_ctx, instance, sku=None, tags=None, custom_domain=None, use_subdomain=None, encryption_services=None,
+ encryption_key_source=None, encryption_key_vault_properties=None,
access_tier=None, https_only=None, assign_identity=False, bypass=None, default_action=None):
StorageAccountUpdateParameters, Sku, CustomDomain, AccessTier, Identity, Encryption, NetworkRuleSet = get_sdk(
+ cli_ctx,
ResourceType.MGMT_STORAGE,
'StorageAccountUpdateParameters',
'Sku',
@@ -136,7 +147,7 @@ def update_storage_account(instance, sku=None, tags=None, custom_domain=None, us
return params
-@transfer_doc(FileService.list_directories_and_files)
+#@transfer_doc(FileService.list_directories_and_files)
def list_share_files(client, share_name, directory_name=None, timeout=None, exclude_dir=False, snapshot=None):
if supported_api_version(ResourceType.DATA_STORAGE, min_api='2017-04-17'):
generator = client.list_directories_and_files(share_name, directory_name, timeout=timeout, snapshot=snapshot)
@@ -148,7 +159,7 @@ def list_share_files(client, share_name, directory_name=None, timeout=None, excl
return generator
-@transfer_doc(FileService.list_directories_and_files)
+#@transfer_doc(FileService.list_directories_and_files)
def list_share_directories(client, share_name, directory_name=None, timeout=None):
generator = client.list_directories_and_files(share_name, directory_name,
timeout=timeout)
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/file.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/file.py
index 41e3a3235bb..3665bc07cd5 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/file.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/file.py
@@ -9,7 +9,6 @@
import os.path
from azure.cli.core.azlogging import get_az_logger
-from azure.cli.core.util import CLIError
from azure.common import AzureException, AzureHttpError
from azure.cli.core.profiles import supported_api_version, ResourceType, get_sdk
from azure.cli.command_modules.storage.util import (filter_none, collect_blobs, collect_files,
@@ -18,6 +17,8 @@
create_short_lived_share_sas, guess_content_type)
from azure.cli.command_modules.storage.url_quote_util import encode_for_url, make_encoded_file_url_and_params
+from knack.util import CLIError
+
def storage_file_upload_batch(client, destination, source, pattern=None, dryrun=False, validate_content=False,
content_settings=None, max_connections=1, metadata=None):
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/sdkutil.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/sdkutil.py
index 69d3e30afb5..99fd1fede82 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/sdkutil.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/sdkutil.py
@@ -9,15 +9,15 @@
from azure.cli.core.profiles._shared import APIVersionException
-def cosmosdb_table_exists():
+def cosmosdb_table_exists(cli_ctx):
try:
- return supported_api_version(ResourceType.DATA_COSMOS_TABLE, min_api='2017-04-17')
+ return supported_api_version(cli_ctx, ResourceType.DATA_COSMOS_TABLE, min_api='2017-04-17')
except APIVersionException:
return False
-def get_table_data_type(module_name, *type_names):
- if cosmosdb_table_exists():
- return get_sdk(ResourceType.DATA_COSMOS_TABLE, *type_names, mod=module_name)
+def get_table_data_type(cli_ctx, module_name, *type_names):
+ if cosmosdb_table_exists(cli_ctx):
+ return get_sdk(cli_ctx, ResourceType.DATA_COSMOS_TABLE, *type_names, mod=module_name)
- return get_sdk(ResourceType.DATA_STORAGE, *type_names, mod=module_name)
+ return get_sdk(cli_ctx, ResourceType.DATA_STORAGE, *type_names, mod=module_name)
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/services_wrapper.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/services_wrapper.py
index 6fc158cfda7..d84f296d20b 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/services_wrapper.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/services_wrapper.py
@@ -4,8 +4,10 @@
# --------------------------------------------------------------------------------------------
from azure.common import AzureHttpError
-from azure.cli.core.util import CLIError
from azure.cli.core.profiles import get_sdk, ResourceType
+
+from knack.util import CLIError
+
from ._factory import generic_data_service_factory
Logging, Metrics, CorsRule, AccessPolicy, RetentionPolicy = \
diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/test_storage_blob_scenarios.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/test_storage_blob_scenarios.py
index fc238af0a94..0526349edec 100644
--- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/test_storage_blob_scenarios.py
+++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/tests/test_storage_blob_scenarios.py
@@ -9,7 +9,7 @@
from datetime import datetime, timedelta
from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer,
JMESPathCheck, NoneCheck, api_version_constraint)
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.storage._factory import NO_CREDENTIALS_ERROR_MESSAGE
from azure.cli.core.profiles import ResourceType
from .storage_test_util import StorageScenarioMixin
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/__init__.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/__init__.py
index d332840d0ba..bb3ce426347 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/__init__.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/__init__.py
@@ -3,12 +3,33 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+from azure.cli.core import AzCommandsLoader
+from azure.cli.core.profiles import ResourceType
+
import azure.cli.command_modules.vm._help # pylint: disable=unused-import
-def load_params(_):
- import azure.cli.command_modules.vm._params # pylint: disable=redefined-outer-name, unused-variable
+class ComputeCommandsLoader(AzCommandsLoader):
+
+ def __init__(self, cli_ctx=None):
+ from azure.cli.core.sdk.util import CliCommandType
+ compute_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.vm.custom#{}')
+ super(ComputeCommandsLoader, self).__init__(cli_ctx=cli_ctx,
+ resource_type=ResourceType.MGMT_COMPUTE,
+ custom_command_type=compute_custom)
+ self.module_name = __name__
+
+ def load_command_table(self, args):
+ super(ComputeCommandsLoader, self).load_command_table(args)
+ from azure.cli.command_modules.vm.commands import load_command_table
+ load_command_table(self, args)
+ return self.command_table
+
+
+ def load_arguments(self, command):
+ super(ComputeCommandsLoader, self).load_arguments(command)
+ from azure.cli.command_modules.vm._params import load_arguments
+ load_arguments(self, command)
-def load_commands():
- import azure.cli.command_modules.vm.commands # pylint: disable=redefined-outer-name, unused-variable
+COMMAND_LOADER_CLS = ComputeCommandsLoader
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_actions.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_actions.py
index 623039c5bbf..0ba8bab4464 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_actions.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_actions.py
@@ -6,7 +6,7 @@
import json
import re
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.core.commands.parameters import get_one_of_subscription_locations
from azure.cli.core.commands.arm import resource_exists
@@ -31,12 +31,12 @@ def _get_thread_count():
return 5 # don't increase too much till https://github.com/Azure/msrestazure-for-python/issues/6 is fixed
-def load_images_thru_services(publisher, offer, sku, location):
+def load_images_thru_services(cli_ctx, publisher, offer, sku, location):
from concurrent.futures import ThreadPoolExecutor, as_completed
all_images = []
- client = _compute_client_factory()
+ client = _compute_client_factory(cli_ctx)
if location is None:
- location = get_one_of_subscription_locations()
+ location = get_one_of_subscription_locations(cli_ctx)
def _load_images_from_publisher(publisher):
offers = client.virtual_machine_images.list_offers(location, publisher)
@@ -71,11 +71,10 @@ def _load_images_from_publisher(publisher):
return all_images
-def load_images_from_aliases_doc(publisher=None, offer=None, sku=None):
- from azure.cli.core.cloud import get_active_cloud, CloudEndpointNotSetException
- cloud = get_active_cloud()
+def load_images_from_aliases_doc(cli_ctx, publisher=None, offer=None, sku=None):
+ from azure.cli.core.cloud import CloudEndpointNotSetException
try:
- target_url = cloud.endpoints.vm_image_alias_doc
+ target_url = cli_ctx.cloud.endpoints.vm_image_alias_doc
except CloudEndpointNotSetException:
raise CLIError("'endpoint_vm_image_alias_doc' isn't configured. Please invoke 'az cloud update' to configure "
"it or use '--all' to retrieve images from server")
@@ -102,13 +101,13 @@ def load_images_from_aliases_doc(publisher=None, offer=None, sku=None):
raise CLIError('Could not retrieve image list from {}'.format(target_url))
-def load_extension_images_thru_services(publisher, name, version, location, show_latest=False):
+def load_extension_images_thru_services(cli_ctx, publisher, name, version, location, show_latest=False):
from concurrent.futures import ThreadPoolExecutor, as_completed
from distutils.version import LooseVersion # pylint: disable=no-name-in-module,import-error
all_images = []
- client = _compute_client_factory()
+ client = _compute_client_factory(cli_ctx)
if location is None:
- location = get_one_of_subscription_locations()
+ location = get_one_of_subscription_locations(cli_ctx)
def _load_extension_images_from_publisher(publisher):
types = client.virtual_machine_extension_images.list_types(location, publisher)
@@ -152,8 +151,8 @@ def _load_extension_images_from_publisher(publisher):
return all_images
-def get_vm_sizes(location):
- return list(_compute_client_factory().virtual_machine_sizes.list(location))
+def get_vm_sizes(cli_ctx, location):
+ return list(_compute_client_factory(cli_ctx).virtual_machine_sizes.list(location))
def _partial_matched(pattern, string):
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 6368c5b8e69..8e52b2c0b7d 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
@@ -4,81 +4,81 @@
# --------------------------------------------------------------------------------------------
-def _compute_client_factory(**_):
+def _compute_client_factory(cli_ctx, **_):
from azure.cli.core.profiles import ResourceType
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- return get_mgmt_service_client(ResourceType.MGMT_COMPUTE)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_COMPUTE)
-def cf_ni(_):
+def cf_ni(cli_ctx, _):
from azure.cli.core.profiles import ResourceType
from azure.cli.core.commands.client_factory import get_mgmt_service_client
# TODO: Remove hard coded api-version once
# https://github.com/Azure/azure-rest-api-specs/issues/570
# is fixed.
- ni = get_mgmt_service_client(ResourceType.MGMT_NETWORK).network_interfaces
+ ni = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_NETWORK).network_interfaces
ni.api_version = '2016-03-30'
return ni
-def cf_public_ip_addresses():
+def cf_public_ip_addresses(cli_ctx):
from azure.cli.core.profiles import ResourceType
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- public_ip_ops = get_mgmt_service_client(ResourceType.MGMT_NETWORK).public_ip_addresses
+ public_ip_ops = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_NETWORK).public_ip_addresses
return public_ip_ops
-def cf_avail_set(_):
- return _compute_client_factory().availability_sets
+def cf_avail_set(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).availability_sets
-def cf_vm(_):
- return _compute_client_factory().virtual_machines
+def cf_vm(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machines
-def cf_vm_ext(_):
- return _compute_client_factory().virtual_machine_extensions
+def cf_vm_ext(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machine_extensions
-def cf_vm_ext_image(_):
- return _compute_client_factory().virtual_machine_extension_images
+def cf_vm_ext_image(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machine_extension_images
-def cf_vm_image(_):
- return _compute_client_factory().virtual_machine_images
+def cf_vm_image(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machine_images
-def cf_usage(_):
- return _compute_client_factory().usage
+def cf_usage(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).usage
-def cf_vmss(_):
- return _compute_client_factory().virtual_machine_scale_sets
+def cf_vmss(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machine_scale_sets
-def cf_vmss_vm(_):
- return _compute_client_factory().virtual_machine_scale_set_vms
+def cf_vmss_vm(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machine_scale_set_vms
-def cf_vm_sizes(_):
- return _compute_client_factory().virtual_machine_sizes
+def cf_vm_sizes(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machine_sizes
-def cf_disks(_):
- return _compute_client_factory().disks
+def cf_disks(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).disks
-def cf_snapshots(_):
- return _compute_client_factory().snapshots
+def cf_snapshots(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).snapshots
-def cf_images(_):
- return _compute_client_factory().images
+def cf_images(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).images
-def cf_run_commands(_):
- return _compute_client_factory().virtual_machine_run_commands
+def cf_run_commands(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machine_run_commands
-def cf_rolling_upgrade_commands(_):
- return _compute_client_factory().virtual_machine_scale_set_rolling_upgrades
+def cf_rolling_upgrade_commands(cli_ctx, _):
+ return _compute_client_factory(cli_ctx).virtual_machine_scale_set_rolling_upgrades
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_completers.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_completers.py
new file mode 100644
index 00000000000..50f48367d50
--- /dev/null
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_completers.py
@@ -0,0 +1,28 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+
+def get_urn_aliases_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
+ images = load_images_from_aliases_doc()
+ return [i['urnAlias'] for i in images]
+
+
+def get_vm_size_completion_list(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
+ try:
+ location = parsed_args.location
+ except AttributeError:
+ location = get_one_of_subscription_locations()
+ result = get_vm_sizes(location)
+ return [r.name for r in result]
+
+
+def get_vm_run_command_completion_list(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
+ from ._client_factory import _compute_client_factory
+ try:
+ location = parsed_args.location
+ except AttributeError:
+ location = get_one_of_subscription_locations()
+ result = _compute_client_factory().virtual_machine_run_commands.list(location)
+ return [r.id for r in result]
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_format.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_format.py
new file mode 100644
index 00000000000..fa199520886
--- /dev/null
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_format.py
@@ -0,0 +1,107 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+from collections import OrderedDict
+
+
+def transform_ip_addresses(result):
+ transformed = []
+ for r in result:
+ network = r['virtualMachine']['network']
+ public = network.get('publicIpAddresses')
+ public_ip_addresses = ','.join([p['ipAddress'] for p in public if p['ipAddress']]) if public else None
+ private = network.get('privateIpAddresses')
+ private_ip_addresses = ','.join(private) if private else None
+ entry = OrderedDict([('virtualMachine', r['virtualMachine']['name']),
+ ('publicIPAddresses', public_ip_addresses),
+ ('privateIPAddresses', private_ip_addresses)])
+ transformed.append(entry)
+
+ return transformed
+
+
+def transform_vm(vm):
+ result = OrderedDict([('name', vm['name']),
+ ('resourceGroup', vm['resourceGroup']),
+ ('powerState', vm.get('powerState')),
+ ('publicIps', vm.get('publicIps')),
+ ('fqdns', vm.get('fqdns')),
+ ('location', vm['location'])])
+ if 'zones' in vm:
+ result['zones'] = ','.join(vm['zones']) if vm['zones'] else ''
+ return result
+
+
+def transform_vm_create_output(result):
+ from msrestazure.tools import parse_resource_id
+ try:
+ resource_group = getattr(result, 'resource_group', None) or parse_resource_id(result.id)['resource_group']
+ output = OrderedDict([('id', result.id),
+ ('resourceGroup', resource_group),
+ ('powerState', result.power_state),
+ ('publicIpAddress', result.public_ips),
+ ('fqdns', result.fqdns),
+ ('privateIpAddress', result.private_ips),
+ ('macAddress', result.mac_addresses),
+ ('location', result.location)])
+ if getattr(result, 'identity', None):
+ output['identity'] = result.identity
+ if hasattr(result, 'zones'): # output 'zones' column even the property value is None
+ output['zones'] = result.zones[0] if result.zones else ''
+ return output
+ except AttributeError:
+ from msrest.pipeline import ClientRawResponse
+ return None if isinstance(result, ClientRawResponse) else result
+
+
+def transform_vm_usage_list(result):
+ result = list(result)
+ for item in result:
+ item.current_value = str(item.current_value)
+ item.limit = str(item.limit)
+ item.local_name = item.name.localized_value
+ return result
+
+
+def transform_vm_list(vm_list):
+ return [transform_vm(v) for v in vm_list]
+
+
+# flattern out important fields (single member arrays) to be displayed in the table output
+def transform_sku_for_table_output(skus):
+ result = []
+ for k in skus:
+ order_dict = OrderedDict()
+ order_dict['resourceType'] = k['resourceType']
+ order_dict['locations'] = str(k['locations']) if len(k['locations']) > 1 else k['locations'][0]
+ order_dict['name'] = k['name']
+ order_dict['size'] = k['size']
+ order_dict['tier'] = k['tier']
+ if k['capabilities']:
+ temp = ['{}={}'.format(pair['name'], pair['value']) for pair in k['capabilities']]
+ order_dict['capabilities'] = str(temp) if len(temp) > 1 else temp[0]
+ else:
+ order_dict['capabilities'] = None
+ if k['restrictions']:
+ reasons = [x['reasonCode'] for x in k['restrictions']]
+ order_dict['restrictions'] = str(reasons) if len(reasons) > 1 else reasons[0]
+ else:
+ order_dict['restrictions'] = None
+ result.append(order_dict)
+ return result
+
+transform_extension_show_table_output = '{Name:name, ProvisioningState:provisioningState, Publisher:publisher, ' \
+ 'Version:typeHandlerVersion, AutoUpgradeMinorVersion:autoUpgradeMinorVersion}'
+
+transform_disk_show_table_output = '{Name:name, ResourceGroup:resourceGroup, Location:location, Zones: ' \
+ '(!zones && \' \') || join(` `, zones), Sku:sku.name, OsType:osType, ' \
+ 'SizeGb:diskSizeGb, ProvisioningState:provisioningState}'
+
+def get_vmss_table_output_transformer(loader, for_list=True):
+ transform = '{Name:name, ResourceGroup:resourceGroup, Location:location, $zone$Capacity:sku.capacity, ' \
+ 'Overprovision:overprovision, UpgradePolicy:upgradePolicy.mode}'
+ transform = transform.replace('$zone$', 'Zones: (!zones && \' \') || join(` `, zones), ' \
+ if loader.supported_api_version(min_api='2017-03-30') else ' ')
+ return transform if for_list else '[].' + transform
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 2fe31dbedab..e2c22eba553 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
@@ -5,7 +5,7 @@
# pylint: disable=line-too-long, too-many-lines
-from azure.cli.core.help_files import helps
+from knack.help_files import helps
vm_ids_example = """ - name: {0}
text: >
@@ -87,6 +87,7 @@
text: >
az vm create -n MyVm -g MyResourceGroup --image centos --assign-identity --scope /subscriptions/99999999-1bf0-4dda-aec3-cb9272f09590/MyResourceGroup/myRG/providers/Microsoft.Storage/storageAccounts/storage1
- name: Create a VM in an availability zone in the current resource group's region
+ min_profile: latest
text: >
az vm create -n MyVm -g MyResourceGroup --image Centos --zone 1
"""
@@ -134,6 +135,7 @@
text: >
az vm create -n MyVm -g MyResourceGroup --image centos --assign-identity --scope /subscriptions/99999999-1bf0-4dda-aec3-cb9272f09590/MyResourceGroup/myRG/providers/Microsoft.Storage/storageAccounts/storage1
- name: Create a single zone VM scaleset in the current resource group's region
+ min_profile: latest
text: >
az vmss create -n MyVmss -g MyResourceGroup --image Centos --zones 1
"""
@@ -173,6 +175,7 @@
helps['vm extension set'] = """
type: command
short-summary: Set extensions for a VM.
+ long-summary: Get extension details from `az vm extension image list`.
examples:
- name: Add a user account to a Linux VM.
text: |
@@ -230,12 +233,30 @@
text: az vm update -n name -g group --remove networkProfile.networkInterfaces 3
"""
+helps['vmss deallocate'] = """
+ type: command
+ short-summary: Deallocate VMs within a VMSS.
+"""
+
+helps['vmss delete-instances'] = """
+ type: command
+ short-summary: Delete VMs within a VMSS.
+"""
+
helps['vmss get-instance-view'] = """
type: command
short-summary: View an instance of a VMSS.
parameters:
- name: --ids
short-summary: One or more VM scale sets or specific VM instance IDs. If provided, do not also use `--instance-id`.
+ - name: --instance-id
+ short-summary: A VM instance ID or "*" to list instance view for all VMs in a scale set.
+
+"""
+
+helps['vmss list'] = """
+ type: command
+ short-summary: List VMSS.
"""
helps['vmss reimage'] = """
@@ -244,16 +265,21 @@
parameters:
- name: --ids
short-summary: One or more VM scale sets or specific VM instance IDs. If provided, do not also use `--instance-id`.
+ - name: --instance-id
+ short-summary: VM instance ID. If missing, reimage all instances.
"""
-helps['vmss disk'] = """
- type: group
- short-summary: Manage data disks of a VMSS.
+helps['vmss restart'] = """
+ type: command
+ short-summary: Restart VMs within a VMSS.
"""
-helps['vmss nic'] = """
- type: group
- short-summary: Manage network interfaces of a VMSS.
+helps['vmss scale'] = """
+ type: command
+ short-summary: Change the number of VMs within a VMSS.
+ parameters:
+ - name: --new-capacity
+ short-summary: Number of VMs in the VMSS.
"""
helps['vmss show'] = """
@@ -262,11 +288,28 @@
parameters:
- name: --ids
short-summary: One or more VM scale sets or specific VM instance IDs. If provided, do not also use `--instance-id`.
+ - name: --instance-id
+ short-summary: VM instance ID. If missing, show the VMSS.
+"""
+
+helps['vmss start'] = """
+ type: command
+ short-summary: Start VMs within a VMSS.
+"""
+
+helps['vmss stop'] = """
+ type: command
+ short-summary: Power off (stop) VMs within a VMSS.
"""
helps['vmss update'] = """
type: command
- short-summary: Update a virtual machine scale set.
+ short-summary: Update a VMSS.
+"""
+
+helps['vmss update-instances'] = """
+ type: command
+ short-summary: Upgrade VMs within a VMSS.
"""
helps['vmss wait'] = """
@@ -274,7 +317,17 @@
short-summary: Place the CLI in a waiting state until a condition of a scale set is met.
"""
-helps['vmss rolling-ugrade'] = """
+helps['vmss disk'] = """
+ type: group
+ short-summary: Manage data disks of a VMSS.
+"""
+
+helps['vmss nic'] = """
+ type: group
+ short-summary: Manage network interfaces of a VMSS.
+"""
+
+helps['vmss rolling-upgrade'] = """
type: group
short-summary: (PREVIEW) Manage rolling upgrades.
"""
@@ -319,7 +372,10 @@
helps['vm user update'] = """
type: command
- long-summary: Update a user account.
+ short-summary: Update a user account.
+ parameters:
+ - name: --ssh-key-value
+ short-summary: SSH public key file value or public key file path
examples:
- name: Update a Windows user account.
text: az vm user update -u username -p password -n MyVm -g MyResourceGroup
@@ -357,6 +413,9 @@
helps[vm_boot_diagnostics_enable] = """
type: command
short-summary: Enable the boot diagnostics on a VM.
+ parameters:
+ - name: --storage
+ short-summary: Name or URI of a storage account (e.g. https://your_storage_account_name.blob.core.windows.net/)
examples:
{0}
""".format(vm_ids_example.format('Enable boot diagnostics on all VMs in a resource group.', vm_boot_diagnostics_enable_cmd))
@@ -657,6 +716,15 @@
helps['vm image list'] = """
type: command
short-summary: List the VM/VMSS images available in the Azure Marketplace.
+ parameters:
+ - name: --all
+ short-summary: Retrieve image list from live Azure service rather using an offline image list
+ - name: --offer -f
+ short-summary: Image offer name, partial name is accepted
+ - name: --publisher -p
+ short-summary: Image publisher name, partial name is accepted
+ - name: --sku -s
+ short-summary: Image sku name, partial name is accepted
examples:
- name: List all available images.
text: az vm image list --all
@@ -763,6 +831,17 @@
short-summary: Configure the Azure Virtual Machine Scale Set diagnostics extension.
"""
+helps['vmss diagnostics get-default-config'] = """
+ type: command
+ short-summary: Show the default config file which defines data to be collected.
+"""
+
+helps['vmss diagnostics set'] = """
+ type: command
+ short-summary: Enable diagnostics on a VMSS.
+"""
+
+
helps['vmss list-instance-connection-info'] = """
type: command
short-summary: Get the IP address and port number used to connect to individual VM instances within a set.
@@ -778,11 +857,48 @@
short-summary: Manage extensions on a VM scale set.
"""
+helps['vmss extension delete'] = """
+ type: command
+ short-summary: Delete an extension from a VMSS.
+"""
+
+helps['vmss extension list'] = """
+ type: command
+ short-summary: List extensions associated with a VMSS.
+"""
+
+helps['vmss extension set'] = """
+ type: command
+ short-summary: Add an extension to a VMSS or update an existing extension.
+ long-summary: Get extension details from `az vmss extension image list`.
+"""
+
+helps['vmss extension show'] = """
+ type: command
+ short-summary: Show details on a VMSS extension.
+"""
+
helps['vmss extension image'] = """
type: group
short-summary: Find the available VM extensions for a subscription and region.
"""
+helps['vmss extension image list'] = """
+ type: command
+ short-summary: List the information on available extensions.
+ examples:
+ - name: List the unique publishers for extensions.
+ text: az vmss extension image list --query "[].publisher" -o tsv | sort -u
+ - name: Find extensions with "Docker" in the name.
+ text: az vmss extension image list --query "[].name" -o tsv | sort -u | grep Docker
+ - name: List extension names where the publisher name starts with "Microsoft.Azure.App".
+ text: |
+ az vmss extension image list --query \\
+ "[?starts_with(publisher, 'Microsoft.Azure.App')].publisher" \\
+ -o tsv | sort -u | xargs -I{} az vmss extension image list-names --publisher {} -l westus
+"""
+
+
deallocate_generalize_capture = """ - name: Deallocate, generalize, and capture a stopped virtual machine.
text: |
az vm deallocate -g MyResourceGroup -n MyVm
@@ -828,6 +944,14 @@
type: command
short-summary: Capture information for a stopped VM.
long-summary: 'For an end-to-end tutorial, see https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-capture-image'
+ parameters:
+ - name: --vhd-name-prefix
+ type: string
+ short-summary: The VHD name prefix specify for the VM disks.
+ - name: --storage-container
+ short-summary: The storage account container name in which to save the disks.
+ - name: --overwrite
+ short-summary: Overwrite the existing disk file.
examples:
{0}
""".format(deallocate_generalize_capture)
@@ -925,7 +1049,13 @@
helps['vm open-port'] = """
type: command
- short-summary: Manage open ports on a VM.
+ short-summary: Opens a VM to inbound traffic on specified ports.
+ long-summary: >
+ Adds a security rule to the network security group (NSG) that is attached to the VM's
+ network interface (NIC) or subnet. The existing NSG will be used or a new one will be
+ created. The rule name is 'open-port-{{port}}' and will overwrite an existing rule with
+ this name. For multi-NIC VMs, or for more fine-grained control, use the appropriate
+ network commands directly (nsg rule create, etc).
examples:
- name: Open all ports on a VM to inbound traffic.
text: az vm open-port -g MyResourceGroup -n MyVm --port *
@@ -946,6 +1076,12 @@
helps['vm resize'] = """
type: command
short-summary: Update a VM's size.
+ parameters:
+ - name: --size
+ type: string
+ short-summary: The VM size.
+ populator-commands:
+ - az vm list-vm-resize-options
examples:
- name: Resize a VM.
text: az vm resize -g MyResourceGroup -n MyVm --size Standard_DS3_v2
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 03720cd5e1d..883f222f432 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
@@ -6,358 +6,390 @@
# pylint: disable=line-too-long
from argcomplete.completers import FilesCompleter
-from azure.mgmt.compute.models import (CachingTypes,
- UpgradeMode)
+from azure.mgmt.compute.models import CachingTypes, UpgradeMode
from azure.mgmt.storage.models import SkuName
-from azure.cli.core.commands import register_cli_argument, CliArgumentType, VersionConstraint
from azure.cli.core.profiles import ResourceType
-from azure.cli.core.commands.validators import \
- (get_default_location_from_resource_group, validate_file_or_dict)
-from azure.cli.core.commands.parameters import \
- (location_type, get_one_of_subscription_locations,
- get_resource_name_completion_list, tags_type, file_type, enum_choice_list, ignore_type, zone_type, zones_type)
-from azure.cli.command_modules.vm._actions import \
- (load_images_from_aliases_doc, get_vm_sizes, _resource_not_exists)
-from azure.cli.command_modules.vm._validators import \
- (validate_nsg_name, validate_vm_nics, validate_vm_nic, process_vm_create_namespace,
- process_vmss_create_namespace, process_image_create_namespace,
- process_disk_or_snapshot_create_namespace, validate_vm_disk, validate_asg_names_or_ids,
- process_disk_encryption_namespace, process_assign_identity_namespace,
- process_vm_secret_namespace)
-
-
-def get_urn_aliases_completion_list(prefix, **kwargs): # pylint: disable=unused-argument
- images = load_images_from_aliases_doc()
- return [i['urnAlias'] for i in images]
-
-
-def get_vm_size_completion_list(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- try:
- location = parsed_args.location
- except AttributeError:
- location = get_one_of_subscription_locations()
- result = get_vm_sizes(location)
- return [r.name for r in result]
-
-
-def get_vm_run_command_completion_list(prefix, action, parsed_args, **kwargs): # pylint: disable=unused-argument
- from ._client_factory import _compute_client_factory
- try:
- location = parsed_args.location
- except AttributeError:
- location = get_one_of_subscription_locations()
- result = _compute_client_factory().virtual_machine_run_commands.list(location)
- return [r.id for r in result]
+from azure.cli.core.commands.validators import (
+ get_default_location_from_resource_group, validate_file_or_dict)
+from azure.cli.core.commands.parameters import (
+ get_location_type, get_one_of_subscription_locations, get_resource_name_completion_list, tags_type,
+ file_type, get_enum_type, zone_type, zones_type)
+from azure.cli.command_modules.vm._actions import (
+ load_images_from_aliases_doc, get_vm_sizes, _resource_not_exists)
+from azure.cli.command_modules.vm._completers import (
+ 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_asg_names_or_ids)
+
+from knack.arguments import ignore_type, CLIArgumentType
# REUSABLE ARGUMENT DEFINITIONS
-name_arg_type = CliArgumentType(options_list=('--name', '-n'), metavar='NAME')
-multi_ids_type = CliArgumentType(nargs='+')
-existing_vm_name = CliArgumentType(overrides=name_arg_type,
+name_arg_type = CLIArgumentType(options_list=['--name', '-n'], metavar='NAME')
+multi_ids_type = CLIArgumentType(nargs='+')
+existing_vm_name = CLIArgumentType(overrides=name_arg_type,
configured_default='vm',
help="The name of the Virtual Machine. You can configure the default using `az configure --defaults vm=`",
completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachines'), id_part='name')
-vmss_name_type = CliArgumentType(name_arg_type,
+existing_disk_name = CLIArgumentType(overrides=name_arg_type, help='The name of the managed disk', completer=get_resource_name_completion_list('Microsoft.Compute/disks'), id_part='name')
+existing_snapshot_name = CLIArgumentType(overrides=name_arg_type, help='The name of the snapshot', completer=get_resource_name_completion_list('Microsoft.Compute/snapshots'), id_part='name')
+existing_image_name = CLIArgumentType(overrides=name_arg_type, help='The name of the custom image', completer=get_resource_name_completion_list('Microsoft.Compute/images'), id_part='name')
+vmss_name_type = CLIArgumentType(name_arg_type,
configured_default='vmss',
completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'),
help="Scale set name. You can configure the default using `az configure --defaults vmss=`",
id_part='name')
-disk_sku = CliArgumentType(required=False, help='underlying storage sku', **enum_choice_list(['Premium_LRS', 'Standard_LRS']))
-
-# ARGUMENT REGISTRATION
-
-register_cli_argument('vm', 'vm_name', existing_vm_name)
-register_cli_argument('vm', 'size', completer=get_vm_size_completion_list)
-for scope in ['vm', 'disk', 'snapshot', 'image']:
- register_cli_argument(scope, 'tags', tags_type)
-register_cli_argument('vm', 'name', arg_type=name_arg_type)
-
-with VersionConstraint(ResourceType.MGMT_COMPUTE, min_api='2017-03-30') as c:
- c.register_cli_argument('vm', 'zone', zone_type)
- c.register_cli_argument('disk', 'zone', zone_type, options_list=['--zone']) # TODO: --size-gb currently has claimed -z. We can do a breaking change later if we want to.
- c.register_cli_argument('vmss', 'zones', zones_type)
-
-for item in ['show', 'list']:
- register_cli_argument('vm {}'.format(item), 'show_details', action='store_true', options_list=('--show-details', '-d'), help='show public ip address, FQDN, and power states. command will run slow')
-
-register_cli_argument('vm unmanaged-disk', 'vm_name', arg_type=existing_vm_name)
-register_cli_argument('vm unmanaged-disk attach', 'disk_name', options_list=('--name', '-n'), help='The data disk name(optional when create a new disk)')
-register_cli_argument('vm unmanaged-disk detach', 'disk_name', options_list=('--name', '-n'), help='The data disk name.')
-register_cli_argument('vm unmanaged-disk', 'disk_size', help='Size of disk (GiB)', default=1023, type=int)
-register_cli_argument('vm unmanaged-disk', 'new', action="store_true", help='create a new disk')
-register_cli_argument('vm unmanaged-disk', 'lun', type=int, help='0-based logical unit number (LUN). Max value depends on the Virtual Machine size.')
-register_cli_argument('vm unmanaged-disk', 'vhd_uri', help="virtual hard disk's uri. For example:https://mystorage.blob.core.windows.net/vhds/d1.vhd")
-register_cli_argument('vm', 'caching', help='Disk caching policy', **enum_choice_list(CachingTypes))
-
-for item in ['attach', 'detach']:
- register_cli_argument('vm unmanaged-disk {}'.format(item), 'vm_name', arg_type=existing_vm_name, options_list=('--vm-name',), id_part=None)
-
-register_cli_argument('vm disk', 'vm_name', options_list=('--vm-name',), id_part=None,
- completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachines'))
-register_cli_argument('vm disk', 'disk', validator=validate_vm_disk, help='disk name or id',
- completer=get_resource_name_completion_list('Microsoft.Compute/disks'))
-register_cli_argument('vm disk detach', 'disk_name', options_list=('--name', '-n'), help='The data disk name.')
-register_cli_argument('vm disk', 'new', action="store_true", help='create a new disk')
-register_cli_argument('vm disk', 'sku', arg_type=disk_sku)
-register_cli_argument('vm disk', 'size_gb', options_list=('--size-gb', '-z'), help='size in GB.')
-register_cli_argument('vm disk', 'lun', type=int, help='0-based logical unit number (LUN). Max value depends on the Virtual Machine size.')
-
-register_cli_argument('vm availability-set', 'availability_set_name', name_arg_type, id_part='name',
- completer=get_resource_name_completion_list('Microsoft.Compute/availabilitySets'), help='Name of the availability set')
-register_cli_argument('vm availability-set create', 'availability_set_name', name_arg_type, validator=get_default_location_from_resource_group, help='Name of the availability set')
-register_cli_argument('vm availability-set create', 'platform_update_domain_count', type=int,
- help='Update Domain count. If unspecified, server picks the most optimal number like 5. For the latest defaults see https://docs.microsoft.com/en-us/rest/api/compute/availabilitysets/availabilitysets-create')
-register_cli_argument('vm availability-set create', 'platform_fault_domain_count', type=int, help='Fault Domain count.')
-register_cli_argument('vm availability-set create', 'validate', help='Generate and validate the ARM template without creating any resources.', action='store_true')
-
-with VersionConstraint(ResourceType.MGMT_COMPUTE, min_api='2016-04-30-preview') as c:
- c.register_cli_argument('vm availability-set create', 'unmanaged', action='store_true', help='contained VMs should use unmanaged disks')
-
-register_cli_argument('vm user', 'username', options_list=('--username', '-u'), help='The user name')
-register_cli_argument('vm user', 'password', options_list=('--password', '-p'), help='The user password')
-
-register_cli_argument('vm capture', 'overwrite', action='store_true')
-
-register_cli_argument('vm diagnostics', 'vm_name', arg_type=existing_vm_name, options_list=('--vm-name',))
-register_cli_argument('vm diagnostics set', 'storage_account', completer=get_resource_name_completion_list('Microsoft.Storage/storageAccounts'))
-
-register_cli_argument('vm extension', 'vm_extension_name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachines/extensions'), id_part='child_name_1')
-register_cli_argument('vm extension', 'vm_name', arg_type=existing_vm_name, options_list=('--vm-name',), id_part='name')
-
-register_cli_argument('vm extension image', 'image_location', options_list=('--location', '-l'))
-register_cli_argument('vm extension image', 'publisher_name', options_list=('--publisher', '-p'), help='Image publisher name')
-register_cli_argument('vm extension image', 'type', options_list=('--name', '-n'), help='Name of the extension')
-register_cli_argument('vm extension image', 'latest', action='store_true')
-register_cli_argument('vm extension image', 'version', help='Extension version')
-
-for dest in ['vm_scale_set_name', 'virtual_machine_scale_set_name', 'name']:
- register_cli_argument('vmss', dest, vmss_name_type)
- register_cli_argument('vmss deallocate', dest, vmss_name_type, id_part=None) # due to instance-ids parameter
- register_cli_argument('vmss delete-instances', dest, vmss_name_type, id_part=None) # due to instance-ids parameter
- register_cli_argument('vmss restart', dest, vmss_name_type, id_part=None) # due to instance-ids parameter
- register_cli_argument('vmss start', dest, vmss_name_type, id_part=None) # due to instance-ids parameter
- register_cli_argument('vmss stop', dest, vmss_name_type, id_part=None) # due to instance-ids parameter
- register_cli_argument('vmss show', dest, vmss_name_type, id_part=None) # due to instance-ids parameter
- register_cli_argument('vmss update-instances', dest, vmss_name_type, id_part=None) # due to instance-ids parameter
-
-register_cli_argument('vmss', 'instance_id', id_part='child_name_1')
-register_cli_argument('vmss', 'instance_ids', multi_ids_type, help='Space separated list of IDs (ex: 1 2 3 ...) or * for all instances. If not provided, the action will be applied on the scaleset itself')
-register_cli_argument('vmss', 'tags', tags_type)
-register_cli_argument('vmss', 'caching', help='Disk caching policy', **enum_choice_list(CachingTypes))
-
-register_cli_argument('vmss disk', 'lun', type=int, help='0-based logical unit number (LUN). Max value depends on the Virtual Machine instance size.')
-register_cli_argument('vmss disk', 'size_gb', options_list=('--size-gb', '-z'), help='size in GB.')
-register_cli_argument('vmss disk', 'vmss_name', vmss_name_type, completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'))
-
-register_cli_argument('vmss extension', 'extension_name', name_arg_type, help='Name of the extension.')
-register_cli_argument('vmss extension', 'vmss_name', id_part=None)
-register_cli_argument('vmss diagnostics', 'vmss_name', id_part=None, help='Scale set name')
-
-register_cli_argument('vmss extension image', 'publisher_name', options_list=('--publisher', '-p'), help='Image publisher name')
-register_cli_argument('vmss extension image', 'type', options_list=('--name', '-n'), help='Extension name')
-register_cli_argument('vmss extension image', 'latest', action='store_true')
-register_cli_argument('vmss extension image', 'image_name', help='Image name')
-register_cli_argument('vmss extension image', 'orderby', help='The sort to apply on the operation')
-register_cli_argument('vmss extension image', 'top', help='Return top number of records')
-register_cli_argument('vmss extension image', 'version', help='Extension version')
-
-for scope in ['update-instances', 'delete-instances']:
- register_cli_argument('vmss ' + scope, 'instance_ids', multi_ids_type, help='Space separated list of IDs (ex: 1 2 3 ...) or * for all instances.')
-
-for scope in ['vm diagnostics', 'vmss diagnostics']:
- register_cli_argument(scope, 'version', help='version of the diagnostics extension. Will use the latest if not specfied')
- register_cli_argument(scope, 'settings', help='json string or a file path, which defines data to be collected.', type=validate_file_or_dict, completer=FilesCompleter())
- register_cli_argument(scope, 'protected_settings', help='json string or a file path containing private configurations such as storage account keys, etc.', type=validate_file_or_dict, completer=FilesCompleter())
-
-for scope in ['vm', 'vmss']:
- register_cli_argument(scope, 'no_auto_upgrade', action='store_true', help='by doing this, extension system will not pick the highest minor version for the specified version number, and will not auto update to the latest build/revision number on any scale set updates in future.')
- register_cli_argument('{} create'.format(scope), 'generate_ssh_keys', action='store_true', help='Generate SSH public and private key files if missing. The keys will be stored in the ~/.ssh directory', arg_group='Authentication')
- register_cli_argument('{} extension'.format(scope), 'settings', type=validate_file_or_dict)
- register_cli_argument('{} extension'.format(scope), 'protected_settings', type=validate_file_or_dict)
-
-
-register_cli_argument('vm image list', 'image_location', location_type)
-register_cli_argument('vm image', 'publisher_name', options_list=('--publisher', '-p'))
-register_cli_argument('vm image', 'offer', options_list=('--offer', '-f'))
-register_cli_argument('vm image', 'sku', options_list=('--sku', '-s'))
-# overriding skus from the sdk operation to be a single sku
-register_cli_argument('vm image show', 'skus', options_list=('--sku', '-s'))
-
-register_cli_argument('vm open-port', 'vm_name', name_arg_type, help='The name of the virtual machine to open inbound traffic on.')
-register_cli_argument('vm open-port', 'network_security_group_name', options_list=('--nsg-name',), help='The name of the network security group to create if one does not exist. Ignored if an NSG already exists.', validator=validate_nsg_name)
-register_cli_argument('vm open-port', 'apply_to_subnet', help='Allow inbound traffic on the subnet instead of the NIC', action='store_true')
-register_cli_argument('vm open-port', 'port', help="The port or port range (ex: 80-100) to open inbound traffic to. Use '*' to allow traffic to all ports.")
-register_cli_argument('vm open-port', 'priority', help='Rule priority, between 100 (highest priority) and 4096 (lowest priority). Must be unique for each rule in the collection.', type=int)
-
-register_cli_argument('vm nic', 'vm_name', existing_vm_name, options_list=('--vm-name',), id_part=None)
-register_cli_argument('vm nic', 'nics', nargs='+', help='Names or IDs of NICs.', validator=validate_vm_nics)
-register_cli_argument('vm nic show', 'nic', help='NIC name or ID.', validator=validate_vm_nic)
-
-register_cli_argument('vmss nic', 'virtual_machine_scale_set_name', options_list=('--vmss-name',), help='Scale set name.', completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'), id_part='name')
-register_cli_argument('vmss nic', 'virtualmachine_index', options_list=('--instance-id',), id_part='child_name_1')
-register_cli_argument('vmss nic', 'network_interface_name', options_list=('--name', '-n'), metavar='NIC_NAME', help='The network interface (NIC).', completer=get_resource_name_completion_list('Microsoft.Network/networkInterfaces'), id_part='child_name_2')
-
-register_cli_argument('network nic scale-set list', 'virtual_machine_scale_set_name', options_list=('--vmss-name',), completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'), id_part='name')
-
-# VM CREATE PARAMETER CONFIGURATION
-register_cli_argument('vm create', 'name', name_arg_type, validator=_resource_not_exists('Microsoft.Compute/virtualMachines'))
-
-register_cli_argument('vmss create', 'name', name_arg_type)
-register_cli_argument('vmss create', 'nat_backend_port', default=None, help='Backend port to open with NAT rules. Defaults to 22 on Linux and 3389 on Windows.')
-register_cli_argument('vmss create', 'single_placement_group', default=None, help="Enable single placement group. This flag will default to True if instance count <=100, and default to False for instance count >100.", **enum_choice_list(['true', 'false']))
-
-for scope in ['vm create', 'vmss create']:
- register_cli_argument(scope, 'location', location_type, help='Location in which to create VM and related resources. If default location is not configured, will default to the resource group\'s location')
- register_cli_argument(scope, 'tags', tags_type)
- register_cli_argument(scope, 'no_wait', help='Do not wait for the long running operation to finish.')
- register_cli_argument(scope, 'validate', options_list=('--validate',), help='Generate and validate the ARM template without creating any resources.', action='store_true')
- register_cli_argument(scope, 'size', help='The VM size to be created. See https://azure.microsoft.com/en-us/pricing/details/virtual-machines/ for size info.')
- register_cli_argument(scope, 'image', completer=get_urn_aliases_completion_list)
-
- register_cli_argument(scope, 'admin_username', help='Username for the VM.', arg_group='Authentication')
- register_cli_argument(scope, 'admin_password', help="Password for the VM if authentication type is 'Password'.", arg_group='Authentication')
- register_cli_argument(scope, 'ssh_key_value', help='SSH public key or public key file path.', completer=FilesCompleter(), type=file_type, arg_group='Authentication')
- register_cli_argument(scope, 'custom_data', help='Custom init script file or text (cloud-init, cloud-config, etc..)', completer=FilesCompleter(), type=file_type)
- register_cli_argument(scope, 'ssh_dest_key_path', help='Destination file path on the VM for the SSH key.', arg_group='Authentication')
- register_cli_argument(scope, 'authentication_type', help='Type of authentication to use with the VM. Defaults to password for Windows and SSH public key for Linux.', arg_group='Authentication', **enum_choice_list(['ssh', 'password']))
-
- register_cli_argument(scope, 'os_disk_name', help='The name of the new VM OS disk.', arg_group='Storage')
- register_cli_argument(scope, 'os_type', help='Type of OS installed on a custom VHD. Do not use when specifying an URN or URN alias.', arg_group='Storage', **enum_choice_list(['windows', 'linux']))
- register_cli_argument(scope, 'storage_account', help="Only applicable when use with '--use-unmanaged-disk'. The name to use when creating a new storage account or referencing an existing one. If omitted, an appropriate storage account in the same resource group and location will be used, or a new one will be created.", arg_group='Storage')
- register_cli_argument(scope, 'storage_sku', help='The sku of storage account to persist VM. By default, only Standard_LRS and Premium_LRS are allowed. Using with --use-unmanaged-disk, all are available.', arg_group='Storage', **enum_choice_list(SkuName))
- register_cli_argument(scope, 'storage_container_name', help="Only applicable when use with '--use-unmanaged-disk'. Name of the storage container for the VM OS disk. Default: vhds", arg_group='Storage')
- register_cli_argument(scope, 'os_publisher', ignore_type)
- register_cli_argument(scope, 'os_offer', ignore_type)
- register_cli_argument(scope, 'os_sku', ignore_type)
- register_cli_argument(scope, 'os_version', ignore_type)
- register_cli_argument(scope, 'storage_profile', ignore_type)
- register_cli_argument(scope, 'use_unmanaged_disk', action='store_true', help='Do not use managed disk to persist VM', arg_group='Storage')
- register_cli_argument(scope, 'data_disk_sizes_gb', nargs='+', type=int, help='space separated empty managed data disk sizes in GB to create', arg_group='Storage')
- register_cli_argument(scope, 'image_data_disks', ignore_type)
- register_cli_argument(scope, 'plan_name', arg_group='Marketplace Image Plan', help='plan name')
- register_cli_argument(scope, 'plan_product', arg_group='Marketplace Image Plan', help='plan product')
- register_cli_argument(scope, 'plan_publisher', arg_group='Marketplace Image Plan', help='plan publisher')
- register_cli_argument(scope, 'plan_promotion_code', arg_group='Marketplace Image Plan', help='plan promotion code')
- for item in ['storage_account', 'public_ip', 'nsg', 'nic', 'vnet', 'load_balancer', 'app_gateway']:
- register_cli_argument(scope, '{}_type'.format(item), ignore_type)
-
- register_cli_argument(scope, 'vnet_name', help='Name of the virtual network when creating a new one or referencing an existing one.', arg_group='Network')
- register_cli_argument(scope, 'vnet_address_prefix', help='The IP address prefix to use when creating a new VNet in CIDR format.', arg_group='Network')
- register_cli_argument(scope, 'subnet', help='The name of the subnet when creating a new VNet or referencing an existing one. Can also reference an existing subnet by ID. If omitted, an appropriate VNet and subnet will be selected automatically, or a new one will be created.', arg_group='Network')
- register_cli_argument(scope, 'subnet_address_prefix', help='The subnet IP address prefix to use when creating a new VNet in CIDR format.', arg_group='Network')
- register_cli_argument(scope, 'nics', nargs='+', help='Names or IDs of existing NICs to attach to the VM. The first NIC will be designated as primary. If omitted, a new NIC will be created. If an existing NIC is specified, do not specify subnet, vnet, public IP or NSG.', arg_group='Network')
- register_cli_argument(scope, 'private_ip_address', help='Static private IP address (e.g. 10.0.0.5).', arg_group='Network')
- register_cli_argument(scope, 'public_ip_address', help='Name of the public IP address when creating one (default) or referencing an existing one. Can also reference an existing public IP by ID or specify "" for None.', arg_group='Network')
- register_cli_argument(scope, 'public_ip_address_allocation', help=None, arg_group='Network', **enum_choice_list(['dynamic', 'static']))
- register_cli_argument(scope, 'public_ip_address_dns_name', help='Globally unique DNS name for a newly created Public IP.', arg_group='Network')
- register_cli_argument(scope, 'secrets', multi_ids_type, help='One or many Key Vault secrets as JSON strings or files via `@` containing `[{ "sourceVault": { "id": "value" }, "vaultCertificates": [{ "certificateUrl": "value", "certificateStore": "cert store name (only on windows)"}] }]`', type=file_type, completer=FilesCompleter())
- register_cli_argument(scope, 'os_caching', options_list=['--storage-caching', '--os-disk-caching'], arg_group='Storage', help='Storage caching type for the VM OS disk.', **enum_choice_list([CachingTypes.read_only.value, CachingTypes.read_write.value]))
- register_cli_argument(scope, 'data_caching', options_list=['--data-disk-caching'], arg_group='Storage', help='Storage caching type for the VM data disk(s).', **enum_choice_list(CachingTypes))
-
- register_cli_argument(scope, 'license_type', help="license type if the Windows image or disk used was licensed on-premises", **enum_choice_list(['Windows_Server', 'Windows_Client']))
-
- register_cli_argument(scope, 'assign_identity', action='store_true', arg_group='Managed Service Identity',
- help='enables the VM/VMSS to autonomously, using its own managed identity, to directly authenticate and interact with other Azure services using bearer tokens')
-
-for scope in ['vm create', 'vmss create', 'vm assign-identity', 'vmss assign-identity']:
- arg_group = 'Managed Service Identity' if scope.split()[-1] == 'create' else None
- register_cli_argument(scope, 'identity_scope', options_list='--scope', arg_group=arg_group,
- help="The scope the managed identity has access to")
- register_cli_argument(scope, 'identity_role', options_list='--role', arg_group=arg_group,
- help="Role name or id the managed identity will be assigned")
- register_cli_argument(scope, 'identity_role_id', ignore_type)
-
-for scope in ['vm assign-identity', 'vmss assign-identity']:
- register_cli_argument(scope, 'port', type=int, help="The port to fetch AAD token. Default: 50342")
-register_cli_argument('vm assign-identity', 'vm_name', existing_vm_name, validator=process_assign_identity_namespace)
-register_cli_argument('vmss assign-identity', 'vmss_name', vmss_name_type, validator=process_assign_identity_namespace)
-
-register_cli_argument('vm create', 'vm_name', name_arg_type, id_part=None, help='Name of the virtual machine.', validator=process_vm_create_namespace, completer=None)
-register_cli_argument('vm create', 'os_disk_size_gb', type=int, help='the size of the os disk in GB', arg_group='Storage')
-register_cli_argument('vm create', 'attach_os_disk', help='Attach an existing OS disk to the VM. Can use the name or ID of a managed disk or the URI to an unmanaged disk VHD.')
-register_cli_argument('vm create', 'attach_data_disks', nargs='+', help='Attach existing data disks to the VM. Can use the name or ID of a managed disk or the URI to an unmanaged disk VHD.')
-register_cli_argument('vm create', 'availability_set', help='Name or ID of an existing availability set to add the VM to. None by default.')
-register_cli_argument('vm create', 'nsg', help='The name to use when creating a new Network Security Group (default) or referencing an existing one. Can also reference an existing NSG by ID or specify "" for none.', arg_group='Network')
-register_cli_argument('vm create', 'nsg_rule', help='NSG rule to create when creating a new NSG. Defaults to open ports for allowing RDP on Windows and allowing SSH on Linux.', arg_group='Network', **enum_choice_list(['RDP', 'SSH']))
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-09-01') as c:
- c.register_cli_argument('vm create', 'application_security_groups', nargs='+', options_list=['--asgs'], help='Space separated list of existing application security groups to associate with the VM.', arg_group='Network', validator=validate_asg_names_or_ids)
-
-register_cli_argument('vmss create', 'vmss_name', name_arg_type, id_part=None, help='Name of the virtual machine scale set.', validator=process_vmss_create_namespace)
-register_cli_argument('vmss create', 'load_balancer', help='Name to use when creating a new load balancer (default) or referencing an existing one. Can also reference an existing load balancer by ID or specify "" for none.', options_list=['--load-balancer', '--lb'], arg_group='Network Balancer')
-register_cli_argument('vmss create', 'application_gateway', help='Name to use when creating a new application gateway (default) or referencing an existing one. Can also reference an existing application gateway by ID or specify "" for none.', options_list=['--app-gateway'], arg_group='Network Balancer')
-register_cli_argument('vmss create', 'backend_pool_name', help='Name to use for the backend pool when creating a new load balancer or application gateway.', arg_group='Network Balancer')
-register_cli_argument('vmss create', 'nat_pool_name', help='Name to use for the NAT pool when creating a new load balancer.', options_list=['--lb-nat-pool-name', '--nat-pool-name'], arg_group='Network Balancer')
-register_cli_argument('vmss create', 'backend_port', help='When creating a new load balancer, backend port to open with NAT rules (Defaults to 22 on Linux and 3389 on Windows). When creating an application gateway, the backend port to use for the backend HTTP settings.', type=int, arg_group='Network Balancer')
-register_cli_argument('vmss create', 'app_gateway_subnet_address_prefix', help='The subnet IP address prefix to use when creating a new application gateway in CIDR format.', arg_group='Network Balancer')
-register_cli_argument('vmss create', 'app_gateway_sku', help='SKU when creating a new application gateway.', arg_group='Network Balancer')
-register_cli_argument('vmss create', 'app_gateway_capacity', help='The number of instances to use when creating a new application gateway.', arg_group='Network Balancer')
-register_cli_argument('vmss create', 'instance_count', help='Number of VMs in the scale set.', type=int)
-register_cli_argument('vmss create', 'disable_overprovision', help='Overprovision option (see https://azure.microsoft.com/en-us/documentation/articles/virtual-machine-scale-sets-overview/ for details).', action='store_true')
-register_cli_argument('vmss create', 'upgrade_policy_mode', help=None, **enum_choice_list(UpgradeMode))
-register_cli_argument('vmss create', 'health_probe', help='(Preview) probe name from the existing load balancer, mainly used for rolling upgrade')
-register_cli_argument('vmss create', 'vm_sku', help='Size of VMs in the scale set. See https://azure.microsoft.com/en-us/pricing/details/virtual-machines/ for size info.')
-register_cli_argument('vmss create', 'nsg', help='reference to an existing Network Security Group by ID, or name if in the same resource group', arg_group='Network')
-with VersionConstraint(ResourceType.MGMT_NETWORK, min_api='2017-08-01') as c:
- c.register_cli_argument('vmss create', 'load_balancer_sku', help='SKU when creating a new Load Balancer.', arg_group='Network Balancer', options_list=['--lb-sku'], default='Basic') # **model_choice_list(ResourceType.MGMT_NETWORK, 'LoadBalancerSkuName'))
-
-with VersionConstraint(ResourceType.MGMT_COMPUTE, min_api='2017-03-30') as c:
- c.register_cli_argument('vmss create', 'public_ip_per_vm', action='store_true', help="Each VM instance will have a public ip. For security, you can use '--nsg' to apply appropriate rules", arg_group='Network')
- c.register_cli_argument('vmss create', 'vm_domain_name', help="domain name of VM instances, once configured, the FQDN is 'vm..<..rest..>'", arg_group='Network')
- c.register_cli_argument('vmss create', 'dns_servers', nargs='+', help="space separated IP addresses of DNS servers, e.g. 10.0.0.5 10.0.0.6", arg_group='Network')
- c.register_cli_argument('vmss create', 'accelerated_networking', action='store_true', help="enable accelerated networking", arg_group='Network')
-
-for scope in ['vm encryption', 'vmss encryption']:
- register_cli_argument(scope, 'volume_type', help='Type of volume that the encryption operation is performed on', **enum_choice_list(['DATA', 'OS', 'ALL']))
- register_cli_argument(scope, 'force', action='store_true', help='continue by ignoring client side validation errors')
- register_cli_argument(scope, 'disk_encryption_keyvault', validator=process_disk_encryption_namespace)
-register_cli_argument('vmss encryption', 'vmss_name', vmss_name_type, completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'))
-register_cli_argument('vm encryption enable', 'encrypt_format_all', action='store_true', help='Encrypts-formats data disks instead of encrypting them. Encrypt-formatting is a lot faster than in-place encryption but wipes out the partition getting encrypt-formatted.')
-
-existing_disk_name = CliArgumentType(overrides=name_arg_type, help='The name of the managed disk', completer=get_resource_name_completion_list('Microsoft.Compute/disks'), id_part='name')
-register_cli_argument('disk', 'disk_name', existing_disk_name, completer=get_resource_name_completion_list('Microsoft.Compute/disks'))
-register_cli_argument('disk', 'name', arg_type=name_arg_type)
-register_cli_argument('disk', 'sku', arg_type=disk_sku)
-
-existing_snapshot_name = CliArgumentType(overrides=name_arg_type, help='The name of the snapshot', completer=get_resource_name_completion_list('Microsoft.Compute/snapshots'), id_part='name')
-register_cli_argument('snapshot', 'snapshot_name', existing_snapshot_name, id_part='name', completer=get_resource_name_completion_list('Microsoft.Compute/snapshots'))
-register_cli_argument('snapshot', 'name', arg_type=name_arg_type)
-register_cli_argument('snapshot', 'sku', arg_type=disk_sku)
-
-existing_image_name = CliArgumentType(overrides=name_arg_type, help='The name of the custom image', completer=get_resource_name_completion_list('Microsoft.Compute/images'), id_part='name')
-register_cli_argument('image', 'os_type', **enum_choice_list(['Windows', 'Linux']))
-register_cli_argument('image', 'image_name', arg_type=name_arg_type, id_part='name', completer=get_resource_name_completion_list('Microsoft.Compute/images'))
-register_cli_argument('image create', 'name', arg_type=name_arg_type, help='new image name')
-
-# here we collpase all difference image sources to under 2 common arguments --os-disk-source --data-disk-sources
-register_cli_argument('image create', 'source', validator=process_image_create_namespace,
- help='OS disk source from the same region, including a virtual machine id or name, os disk blob uri, managed os disk id or name, or os snapshot id or name')
-register_cli_argument('image create', 'data_disk_sources', nargs='+',
- help='space separated 1 or more data disk sources, including unmanaged blob uri, managed disk id or name, or snapshot id or name')
-register_cli_argument('image create', 'source_virtual_machine', ignore_type)
-register_cli_argument('image create', 'os_blob_uri', ignore_type)
-register_cli_argument('image create', 'os_disk', ignore_type)
-register_cli_argument('image create', 'os_snapshot', ignore_type)
-register_cli_argument('image create', 'data_blob_uris', ignore_type)
-register_cli_argument('image create', 'data_disks', ignore_type)
-register_cli_argument('image create', 'data_snapshots', ignore_type)
-
-for scope in ['disk', 'snapshot']:
- register_cli_argument(scope + ' create', 'source', validator=process_disk_or_snapshot_create_namespace,
- help='source to create the disk/snapshot from, including unmanaged blob uri, managed disk id or name, or snapshot id or name')
- register_cli_argument(scope, 'source_blob_uri', ignore_type)
- register_cli_argument(scope, 'source_disk', ignore_type)
- register_cli_argument(scope, 'source_snapshot', ignore_type)
- register_cli_argument(scope, 'source_storage_account_id', help='used when source blob is in a different subscription')
- register_cli_argument(scope, 'size_gb', options_list=('--size-gb', '-z'), help='size in GB.')
- register_cli_argument(scope, 'duration_in_seconds', help='Time duration in seconds until the SAS access expires')
-
-register_cli_argument('vm format-secret', 'secrets', multi_ids_type, options_list=('--secrets', '-s'), help='Space separated list of Key Vault secret URIs. Perhaps, produced by \'az keyvault secret list-versions --vault-name vaultname -n cert1 --query "[?attributes.enabled].id" -o tsv\'')
-register_cli_argument('vm secret', 'keyvault', validator=process_vm_secret_namespace, help='Keyvault ID, name if in the same resource group')
-register_cli_argument('vm secret', 'certificate', help='keyvault certificate name or its full secret url')
-register_cli_argument('vm secret', 'certificate_store', help='Windows certificate store names. Default: My')
-
-register_cli_argument('vm run-command invoke', 'parameters', nargs='+', help="space separated parameters in the format of '[name=]value'")
-register_cli_argument('vm run-command invoke', 'scripts', nargs='+', help="script lines separated by whites spaces. Use @{file} to load from a file")
-register_cli_argument('vm run-command', 'command_id', completer=get_vm_run_command_completion_list, help="The run command id")
+disk_sku = CLIArgumentType(help='Underlying storage SKU.', arg_type=get_enum_type(['Premium_LRS', 'Standard_LRS']))
+
+
+# pylint: disable=too-many-statements
+def load_arguments(self, command):
+
+ # 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')
+
+ # region MixedScopes
+
+ for scope in ['vm', 'disk', 'snapshot', 'image']:
+ with self.argument_context(scope) as c:
+ c.argument('tags', tags_type)
+
+ for scope in ['disk', 'snapshot']:
+ with self.argument_context(scope) as c:
+ c.ignore('source_blob_uri', 'source_disk', 'source_snapshot')
+ c.argument('source_storage_account_id', help='used when source blob is in a different subscription')
+ c.argument('size_gb', options_list=['--size-gb', '-z'], help='size in GB.')
+ c.argument('duration_in_seconds', help='Time duration in seconds until the SAS access expires', type=int)
+
+ for scope in ['disk create', 'snapshot create']:
+ with self.argument_context(scope) as c:
+ c.argument('source', help='source to create the disk/snapshot from, including unmanaged blob uri, managed disk id or name, or snapshot id or name')
+
+ # endregion
+
+ # region Disks
+ with self.argument_context('disk') as c:
+ c.argument('zone', zone_type, min_api='2017-03-30', options_list=['--zone']) # TODO: --size-gb currently has claimed -z. We can do a breaking change later if we want to.
+ c.argument('disk_name', existing_disk_name, completer=get_resource_name_completion_list('Microsoft.Compute/disks'))
+ c.argument('name', arg_type=name_arg_type)
+ c.argument('sku', arg_type=disk_sku)
+ # endregion
+
+ # region Snapshots
+ with self.argument_context('snapshot') 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)
+ c.argument('sku', arg_type=disk_sku)
+ # endregion
+
+ # region Images
+ with self.argument_context('image') as c:
+ c.argument('os_type', arg_type=get_enum_type(['Windows', 'Linux']))
+ c.argument('image_name', arg_type=name_arg_type, id_part='name', completer=get_resource_name_completion_list('Microsoft.Compute/images'))
+
+ with self.argument_context('image create') as c:
+ # here we collpase all difference image sources to under 2 common arguments --os-disk-source --data-disk-sources
+ c.argument('name', arg_type=name_arg_type, help='new image name')
+ c.argument('source', help='OS disk source from the same region, including a virtual machine ID or name, OS disk blob URI, managed OS disk ID or name, or OS snapshot ID or name')
+ c.argument('data_disk_sources', nargs='+', help='Space separated list of data disk sources, including unmanaged blob URI, managed disk ID or name, or snapshot ID or name')
+ c.ignore('source_virtual_machine', 'os_blob_uri', 'os_disk', 'os_snapshot', 'data_blob_uris', 'data_disks', 'data_snapshots')
+ # endregion
+
+ # region AvailabilitySets
+ with self.argument_context('vm availability-set') as c:
+ c.argument('availability_set_name', name_arg_type, id_part='name', completer=get_resource_name_completion_list('Microsoft.Compute/availabilitySets'), help='Name of the availability set')
+
+ with self.argument_context('vm availability-set create') as c:
+ c.argument('availability_set_name', name_arg_type, validator=get_default_location_from_resource_group, help='Name of the availability set')
+ c.argument('platform_update_domain_count', type=int, help='Update Domain count. If unspecified, server picks the most optimal number like 5. For the latest defaults see https://docs.microsoft.com/en-us/rest/api/compute/availabilitysets/availabilitysets-create')
+ c.argument('platform_fault_domain_count', type=int, help='Fault Domain count.')
+ c.argument('validate', help='Generate and validate the ARM template without creating any resources.', action='store_true')
+ c.argument('unmanaged', action='store_true', min_api='2016-04-30-preview', help='contained VMs should use unmanaged disks')
+ # endregion
+
+ # region VirtualMachines
+ with self.argument_context('vm') as c:
+ c.argument('vm_name', existing_vm_name)
+ c.argument('size', completer=get_vm_size_completion_list)
+ c.argument('name', arg_type=name_arg_type)
+ c.argument('zone', zone_type, min_api='2017-03-30')
+ c.argument('caching', help='Disk caching policy', arg_type=get_enum_type(CachingTypes))
+ c.argument('nsg', help='The name to use when creating a new Network Security Group (default) or referencing an existing one. Can also reference an existing NSG by ID or specify "" for none.', arg_group='Network')
+ c.argument('nsg_rule', help='NSG rule to create when creating a new NSG. Defaults to open ports for allowing RDP on Windows and allowing SSH on Linux.', arg_group='Network', arg_type=get_enum_type(['RDP', 'SSH']))
+ c.argument('application_security_groups', min_api='2017-09-01', nargs='+', options_list=['--asgs'], help='Space separated list of existing application security groups to associate with the VM.', arg_group='Network')
+
+ with self.argument_context('vm capture') as c:
+ c.argument('overwrite', action='store_true')
+
+ with self.argument_context('vm create') as c:
+ c.argument('name', name_arg_type, validator=_resource_not_exists('Microsoft.Compute/virtualMachines'))
+ c.argument('vm_name', name_arg_type, id_part=None, help='Name of the virtual machine.', completer=None)
+ c.argument('os_disk_size_gb', type=int, help='the size of the os disk in GB', arg_group='Storage')
+ c.argument('attach_os_disk', help='Attach an existing OS disk to the VM. Can use the name or ID of a managed disk or the URI to an unmanaged disk VHD.')
+ c.argument('attach_data_disks', nargs='+', help='Attach existing data disks to the VM. Can use the name or ID of a managed disk or the URI to an unmanaged disk VHD.')
+ c.argument('availability_set', help='Name or ID of an existing availability set to add the VM to. None by default.')
+ c.argument('nsg', help='The name to use when creating a new Network Security Group (default) or referencing an existing one. Can also reference an existing NSG by ID or specify "" for none.', arg_group='Network')
+ c.argument('nsg_rule', help='NSG rule to create when creating a new NSG. Defaults to open ports for allowing RDP on Windows and allowing SSH on Linux.', arg_group='Network', arg_type=get_enum_type(['RDP', 'SSH']))
+ c.argument('application_security_groups', resource_type=ResourceType.MGMT_NETWORK, min_api='2017-09-01', nargs='+', options_list=['--asgs'], help='Space separated list of existing application security groups to associate with the VM.', arg_group='Network', validator=validate_asg_names_or_ids)
+
+ with self.argument_context('vm open-port') as c:
+ c.argument('vm_name', name_arg_type, help='The name of the virtual machine to open inbound traffic on.')
+ c.argument('network_security_group_name', options_list=('--nsg-name',), help='The name of the network security group to create if one does not exist. Ignored if an NSG already exists.', validator=validate_nsg_name)
+ c.argument('apply_to_subnet', help='Allow inbound traffic on the subnet instead of the NIC', action='store_true')
+ c.argument('port', help="The port or port range (ex: 80-100) to open inbound traffic to. Use '*' to allow traffic to all ports.")
+ c.argument('priority', help='Rule priority, between 100 (highest priority) and 4096 (lowest priority). Must be unique for each rule in the collection.', type=int)
+
+ for scope in ['vm show', 'vm list']:
+ with self.argument_context(scope) as c:
+ c.argument('show_details', action='store_true', options_list=['--show-details', '-d'], help='show public ip address, FQDN, and power states. command will run slow')
+
+ with self.argument_context('vm diagnostics') as c:
+ c.argument('vm_name', arg_type=existing_vm_name, options_list=['--vm-name'])
+
+ with self.argument_context('vm diagnostics set') as c:
+ c.argument('storage_account', completer=get_resource_name_completion_list('Microsoft.Storage/storageAccounts'))
+
+ with self.argument_context('vm disk') as c:
+ c.argument('vm_name', options_list=['--vm-name'], id_part=None, completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachines'))
+ c.argument('disk', validator=validate_vm_disk, help='disk name or ID', completer=get_resource_name_completion_list('Microsoft.Compute/disks'))
+ c.argument('new', action='store_true', help='create a new disk')
+ c.argument('sku', arg_type=disk_sku)
+ c.argument('size_gb', options_list=['--size-gb', '-z'], help='size in GB.')
+ c.argument('lun', type=int, help='0-based logical unit number (LUN). Max value depends on the Virtual Machine size.')
+
+ with self.argument_context('vm disk detach') as c:
+ c.argument('disk_name', options_list=['--name', '-n'], help='The data disk name.')
+
+ with self.argument_context('vm encryption enable') as c:
+ c.argument('encrypt_format_all', action='store_true', help='Encrypts-formats data disks instead of encrypting them. Encrypt-formatting is a lot faster than in-place encryption but wipes out the partition getting encrypt-formatted.')
+
+ with self.argument_context('vm extension') as c:
+ c.argument('vm_extension_name', name_arg_type, completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachines/extensions'), id_part='child_name_1')
+ c.argument('vm_name', arg_type=existing_vm_name, options_list=['--vm-name'], id_part='name')
+
+ for scope in ['vm format-secret', 'vm secret']:
+ with self.argument_context(scope) as c:
+ c.argument('secrets', multi_ids_type, options_list=['--secrets', '-s'], help='Space separated list of key vault secret URIs. Perhaps, produced by \'az keyvault secret list-versions --vault-name vaultname -n cert1 --query "[?attributes.enabled].id" -o tsv\'')
+ c.argument('keyvault', help='Name or ID of the key vault.')
+ c.argument('certificate', help='key vault certificate name or its full secret URL')
+ c.argument('certificate_store', help='Windows certificate store names. Default: My')
+
+ with self.argument_context('vm image') as c:
+ c.argument('publisher_name', options_list=['--publisher', '-p'])
+ c.argument('offer', options_list=['--offer', '-f'])
+ c.argument('sku', options_list=['--sku', '-s'])
+
+ with self.argument_context('vm image list') as c:
+ c.argument('image_location', get_location_type(self.cli_ctx))
+
+ with self.argument_context('vm image show') as c:
+ c.argument('skus', options_list=['--sku', '-s'])
+
+ with self.argument_context('vm nic') as c:
+ c.argument('vm_name', existing_vm_name, options_list=['--vm-name'], id_part=None)
+ c.argument('nics', nargs='+', help='Names or IDs of NICs.', validator=validate_vm_nics)
+ c. argument('primary_nic', help='Name or ID of the primary NIC. If missing, the first NIC in the list will be the primary.')
+
+ with self.argument_context('vm nic show') as c:
+ c.argument('nic', help='NIC name or ID.', validator=validate_vm_nic)
+
+ with self.argument_context('vm run-command') as c:
+ c.argument('command_id', completer=get_vm_run_command_completion_list, help="The run command ID")
+
+ with self.argument_context('vm run-command invoke') as c:
+ c.argument('parameters', nargs='+', help="space separated parameters in the format of '[name=]value'")
+ c.argument('scripts', nargs='+', help="script lines separated by whites spaces. Use @{file} to load from a file")
+
+ with self.argument_context('vm unmanaged-disk') as c:
+ c.argument( 'vm_name', arg_type=existing_vm_name)
+ c.argument('disk_size', help='Size of disk (GiB)', default=1023, type=int)
+ c.argument('new', action='store_true', help='Create a new disk.')
+ c.argument('lun', type=int, help='0-based logical unit number (LUN). Max value depends on the Virtual Machine size.')
+ c.argument('vhd_uri', help="Virtual hard disk URI. For example: https://mystorage.blob.core.windows.net/vhds/d1.vhd")
+
+ with self.argument_context('vm unmanaged-disk attach') as c:
+ c.argument('disk_name', options_list=['--name', '-n'], help='The data disk name(optional when create a new disk)')
+
+ with self.argument_context('vm unmanaged-disk detach') as c:
+ c.argument('disk_name', options_list=['--name', '-n'], help='The data disk name.')
+
+ for scope in ['vm unmanaged-disk attach', 'vm unmanaged-disk detach']:
+ with self.argument_context(scope) as c:
+ c.argument('vm_name', arg_type=existing_vm_name, options_list=['--vm-name'], id_part=None)
+
+ with self.argument_context('vm user') as c:
+ c.argument('username', options_list=['--username', '-u'], help='The user name')
+ c.argument('password', options_list=['--password', '-p'], help='The user password')
+ # endregion
+
+ # region VMSS
+ scaleset_name_aliases = ['vm_scale_set_name', 'virtual_machine_scale_set_name', 'name']
+
+ with self.argument_context('vmss') as c:
+ c.argument('zones', zones_type, min_api='2017-03-30')
+ c.argument('instance_id', id_part='child_name_1')
+ c.argument('instance_ids', multi_ids_type, help='Space separated list of IDs (ex: 1 2 3 ...) or * for all instances. If not provided, the action will be applied on the scaleset itself')
+ c.argument('tags', tags_type)
+ c.argument('caching', help='Disk caching policy', arg_type=get_enum_type(CachingTypes))
+ for dest in scaleset_name_aliases:
+ c.argument(dest, vmss_name_type)
+
+ for scope in ['vmss deallocate', 'vmss delete-instances', 'vmss restart', 'vmss start', 'vmss stop', 'vmss show', 'vmss update-instances']:
+ with self.argument_context(scope) as c:
+ for dest in scaleset_name_aliases:
+ c.argument(dest, vmss_name_type, id_part=None) # due to instance-ids parameter
+
+ with self.argument_context('vmss create') as c:
+ c.argument('name', name_arg_type)
+ c.argument('nat_backend_port', default=None, help='Backend port to open with NAT rules. Defaults to 22 on Linux and 3389 on Windows.')
+ c.argument('single_placement_group', default=None, help="Enable single placement group. This flag will default to True if instance count <=100, and default to False for instance count >100.", arg_type=get_enum_type(['true', 'false']))
+ c.argument('vmss_name', name_arg_type, id_part=None, help='Name of the virtual machine scale set.')
+ c.argument('instance_count', help='Number of VMs in the scale set.', type=int)
+ c.argument('disable_overprovision', help='Overprovision option (see https://azure.microsoft.com/en-us/documentation/articles/virtual-machine-scale-sets-overview/ for details).', action='store_true')
+ c.argument('upgrade_policy_mode', help=None, arg_type=get_enum_type(UpgradeMode))
+ c.argument('health_probe', help='(Preview) probe name from the existing load balancer, mainly used for rolling upgrade')
+ c.argument('vm_sku', help='Size of VMs in the scale set. See https://azure.microsoft.com/en-us/pricing/details/virtual-machines/ for size info.')
+ c.argument('nsg', help='Name or ID of an existing Network Security Group.', arg_group='Network')
+
+ with self.argument_context('vmss create', arg_group='Network Balancer') as c:
+ LoadBalancerSkuName = self.get_models('LoadBalancerSkuName', resource_type=ResourceType.MGMT_NETWORK)
+ c.argument('application_gateway', help='Name to use when creating a new application gateway (default) or referencing an existing one. Can also reference an existing application gateway by ID or specify "" for none.', options_list=['--app-gateway'])
+ c.argument('app_gateway_capacity', help='The number of instances to use when creating a new application gateway.')
+ c.argument('app_gateway_sku', help='SKU when creating a new application gateway.')
+ c.argument('app_gateway_subnet_address_prefix', help='The subnet IP address prefix to use when creating a new application gateway in CIDR format.')
+ c.argument('backend_pool_name', help='Name to use for the backend pool when creating a new load balancer or application gateway.')
+ c.argument('backend_port', help='When creating a new load balancer, backend port to open with NAT rules (Defaults to 22 on Linux and 3389 on Windows). When creating an application gateway, the backend port to use for the backend HTTP settings.', type=int)
+ c.argument('load_balancer', help='Name to use when creating a new load balancer (default) or referencing an existing one. Can also reference an existing load balancer by ID or specify "" for none.', options_list=['--load-balancer', '--lb'])
+ c.argument('load_balancer_sku', resource_type=ResourceType.MGMT_NETWORK, min_api='2017-08-01', help='SKU when creating a new Load Balancer.', options_list=['--lb-sku'], arg_type=get_enum_type(LoadBalancerSkuName, default='Basic'))
+ c.argument('nat_pool_name', help='Name to use for the NAT pool when creating a new load balancer.', options_list=['--lb-nat-pool-name', '--nat-pool-name'])
+
+ with self.argument_context('vmss create', min_api='2017-03-30', arg_group='Network') as c:
+ c.argument('public_ip_per_vm', action='store_true', help="Each VM instance will have a public ip. For security, you can use '--nsg' to apply appropriate rules")
+ c.argument('vm_domain_name', help="domain name of VM instances, once configured, the FQDN is 'vm..<..rest..>'")
+ c.argument('dns_servers', nargs='+', help="space separated IP addresses of DNS servers, e.g. 10.0.0.5 10.0.0.6")
+ c.argument('accelerated_networking', action='store_true', help="enable accelerated networking")
+
+ for scope in ['vmss update-instances', 'vmss delete-instances']:
+ with self.argument_context(scope) as c:
+ c.argument('instance_ids', multi_ids_type, help='Space separated list of IDs (ex: 1 2 3 ...) or * for all instances.')
+
+ with self.argument_context('vmss diagnostics') as c:
+ c.argument('vmss_name', id_part=None, help='Scale set name')
+
+ with self.argument_context('vmss disk') as c:
+ c.argument('lun', type=int, help='0-based logical unit number (LUN). Max value depends on the Virtual Machine instance size.')
+ c.argument('size_gb', options_list=['--size-gb', '-z'], help='size in GB.')
+ c.argument('vmss_name', vmss_name_type, completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'))
+
+ with self.argument_context('vmss encryption') as c:
+ c.argument('vmss_name', vmss_name_type, completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'))
+
+ with self.argument_context('vmss extension') as c:
+ c.argument('extension_name', name_arg_type, help='Name of the extension.')
+ c.argument('vmss_name', vmss_name_type, options_list=['--vmss-name'], id_part=None)
+
+ with self.argument_context('vmss nic') as c:
+ c.argument('virtual_machine_scale_set_name', options_list=['--vmss-name'], help='Scale set name.', completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'), id_part='name')
+ c.argument('virtualmachine_index', options_list=['--instance-id'], id_part='child_name_1')
+ c.argument('network_interface_name', options_list=['--name', '-n'], metavar='NIC_NAME', help='The network interface (NIC).', completer=get_resource_name_completion_list('Microsoft.Network/networkInterfaces'), id_part='child_name_2')
+ # endregion
+
+ # region VM & VMSS Shared
+ for scope in ['vm', 'vmss']:
+ with self.argument_context(scope) as c:
+ c.argument('no_auto_upgrade', action='store_true', help='by doing this, extension system will not pick the highest minor version for the specified version number, and will not auto update to the latest build/revision number on any scale set updates in future.')
+
+ for scope in ['vm assign-identity', 'vmss assign-identity']:
+ with self.argument_context(scope) as c:
+ c.argument('port', type=int, help="The port to fetch AAD token. Default: 50342")
+ c.argument('vm_name', existing_vm_name)
+ c.argument('vmss_name', vmss_name_type)
+
+ for scope in ['vm create', 'vmss create']:
+ with self.argument_context(scope) as c:
+ c.argument('location', get_location_type(self.cli_ctx), help='Location in which to create VM and related resources. If default location is not configured, will default to the resource group\'s location')
+ c.argument('tags', tags_type)
+ c.argument('no_wait', help='Do not wait for the long running operation to finish.')
+ c.argument('validate', options_list=['--validate'], help='Generate and validate the ARM template without creating any resources.', action='store_true')
+ c.argument('size', help='The VM size to be created. See https://azure.microsoft.com/en-us/pricing/details/virtual-machines/ for size info.')
+ c.argument('image', completer=get_urn_aliases_completion_list)
+ c.argument('custom_data', help='Custom init script file or text (cloud-init, cloud-config, etc..)', completer=FilesCompleter(), type=file_type)
+ c.argument('secrets', multi_ids_type, help='One or many Key Vault secrets as JSON strings or files via `@` containing `[{ "sourceVault": { "id": "value" }, "vaultCertificates": [{ "certificateUrl": "value", "certificateStore": "cert store name (only on windows)"}] }]`', type=file_type, completer=FilesCompleter())
+ c.argument('license_type', help="license type if the Windows image or disk used was licensed on-premises", arg_type=get_enum_type(['Windows_Server', 'Windows_Client']))
+ c.argument('assign_identity', action='store_true', help='enables the VM/VMSS to autonomously, using its own managed identity, to directly authenticate and interact with other Azure services using bearer tokens', arg_group='Managed Service Identity')
+
+ with self.argument_context(scope, arg_group='Authentication') as c:
+ c.argument('generate_ssh_keys', action='store_true', help='Generate SSH public and private key files if missing. The keys will be stored in the ~/.ssh directory')
+ c.argument('admin_username', help='Username for the VM.')
+ c.argument('admin_password', help="Password for the VM if authentication type is 'Password'.")
+ c.argument('ssh_key_value', help='SSH public key or public key file path.', completer=FilesCompleter(), type=file_type)
+ c.argument('ssh_dest_key_path', help='Destination file path on the VM for the SSH key.')
+ c.argument('authentication_type', help='Type of authentication to use with the VM. Defaults to password for Windows and SSH public key for Linux.', arg_type=get_enum_type(['ssh', 'password']))
+
+ with self.argument_context(scope, arg_group='Storage') as c:
+ c.argument('os_disk_name', help='The name of the new VM OS disk.')
+ c.argument('os_type', help='Type of OS installed on a custom VHD. Do not use when specifying an URN or URN alias.', arg_type=get_enum_type(['windows', 'linux']))
+ c.argument('storage_account', help="Only applicable when used with `--use-unmanaged-disk`. The name to use when creating a new storage account or referencing an existing one. If omitted, an appropriate storage account in the same resource group and location will be used, or a new one will be created.")
+ c.argument('storage_sku', help='The SKU of the storage account with which to persist VM. By default, only Standard_LRS and Premium_LRS are allowed. With `--use-unmanaged-disk`, all are available.', arg_type=get_enum_type(SkuName))
+ c.argument('storage_container_name', help="Only applicable when used with `--use-unmanaged-disk`. Name of the storage container for the VM OS disk. Default: vhds")
+ c.ignore('os_publisher', 'os_offer', 'os_sku', 'os_version', 'storage_profile')
+ c.argument('use_unmanaged_disk', action='store_true', help='Do not use managed disk to persist VM')
+ c.argument('data_disk_sizes_gb', nargs='+', type=int, help='space separated empty managed data disk sizes in GB to create')
+ c.ignore('image_data_disks', 'storage_account_type', 'public_ip_type', 'nsg_type', 'nic_type', 'vnet_type', 'load_balancer_type', 'app_gateway_type')
+ c.argument('os_caching', options_list=['--storage-caching', '--os-disk-caching'], help='Storage caching type for the VM OS disk.', arg_type=get_enum_type([CachingTypes.read_only.value, CachingTypes.read_write.value], default=CachingTypes.read_write.value))
+ c.argument('data_caching', options_list=['--data-disk-caching'], help='Storage caching type for the VM data disk(s).', arg_type=get_enum_type(CachingTypes))
+
+ with self.argument_context(scope, arg_group='Network') as c:
+ c.argument('vnet_name', help='Name of the virtual network when creating a new one or referencing an existing one.')
+ c.argument('vnet_address_prefix', help='The IP address prefix to use when creating a new VNet in CIDR format.')
+ c.argument('subnet', help='The name of the subnet when creating a new VNet or referencing an existing one. Can also reference an existing subnet by ID. If omitted, an appropriate VNet and subnet will be selected automatically, or a new one will be created.')
+ c.argument('subnet_address_prefix', help='The subnet IP address prefix to use when creating a new VNet in CIDR format.')
+ c.argument('nics', nargs='+', help='Names or IDs of existing NICs to attach to the VM. The first NIC will be designated as primary. If omitted, a new NIC will be created. If an existing NIC is specified, do not specify subnet, VNet, public IP or NSG.')
+ c.argument('private_ip_address', help='Static private IP address (e.g. 10.0.0.5).')
+ c.argument('public_ip_address', help='Name of the public IP address when creating one (default) or referencing an existing one. Can also reference an existing public IP by ID or specify "" for None.')
+ c.argument('public_ip_address_allocation', help=None, arg_type=get_enum_type(['dynamic', 'static']))
+ c.argument('public_ip_address_dns_name', help='Globally unique DNS name for a newly created public IP.')
+
+ with self.argument_context(scope, arg_group='Marketplace Image Plan') as c:
+ c.argument('plan_name', help='plan name')
+ c.argument('plan_product', help='plan product')
+ c.argument('plan_publisher', help='plan publisher')
+ c.argument('plan_promotion_code', help='plan promotion code')
+
+ for scope in ['vm create', 'vmss create', 'vm assign-identity', 'vmss assign-identity']:
+ with self.argument_context(scope) as c:
+ arg_group = 'Managed Service Identity' if scope.split()[-1] == 'create' else None
+ c.argument('identity_scope', options_list='--scope', arg_group=arg_group, help="The scope the managed identity has access to")
+ c.argument('identity_role', options_list='--role', arg_group=arg_group, help="Role name or id the managed identity will be assigned")
+ c.ignore('identity_role_id')
+
+ for scope in ['vm diagnostics', 'vmss diagnostics']:
+ with self.argument_context(scope) as c:
+ c.argument('version', help='version of the diagnostics extension. Will use the latest if not specfied')
+ c.argument('settings', help='json string or a file path, which defines data to be collected.', type=validate_file_or_dict, completer=FilesCompleter())
+ c.argument('protected_settings', help='json string or a file path containing private configurations such as storage account keys, etc.', type=validate_file_or_dict, completer=FilesCompleter())
+
+ for scope in ['vm encryption', 'vmss encryption']:
+ with self.argument_context(scope) as c:
+ c.argument('volume_type', help='Type of volume that the encryption operation is performed on', arg_type=get_enum_type(['DATA', 'OS', 'ALL']))
+ c.argument('force', action='store_true', help='continue by ignoring client side validation errors')
+
+ for scope in ['vm extension', 'vmss extension']:
+ with self.argument_context(scope) as c:
+ c.argument('publisher', help='The name of the extension publisher.')
+ c.argument('settings', type=validate_file_or_dict, help='Extension settings in JSON format. A JSON file path is also accepted.')
+ c.argument('protected_settings', type=validate_file_or_dict, help='Protected settings in JSON format for sensitive information like credentials. A JSON file path is also accepted.')
+ c.argument('version', help='The version of the extension')
+
+ for scope in ['vm extension image', 'vmss extension image']:
+ with self.argument_context(scope) as c:
+ c.argument('image_location', options_list=['--location', '-l'], help='Image location.')
+ c.argument('name', help='Image name', id_part=None)
+ c.argument('publisher_name', options_list=['--publisher', '-p'], help='Image publisher name')
+ c.argument('type', options_list=['--name', '-n'], help='Name of the extension')
+ c.argument('latest', action='store_true', help='Show the latest version only.')
+ c.argument('version', help='Extension version')
+ # 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 ca238b034e4..8104f5ddda6 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
@@ -115,7 +115,7 @@ def build_output_deployment_resource(key, property_name, property_provider, prop
return deployment
-def build_storage_account_resource(name, location, tags, sku):
+def build_storage_account_resource(_, name, location, tags, sku):
storage_account = {
'type': 'Microsoft.Storage/storageAccounts',
'name': name,
@@ -128,14 +128,14 @@ def build_storage_account_resource(name, location, tags, sku):
return storage_account
-def build_public_ip_resource(name, location, tags, address_allocation, dns_name, sku, zone):
+def build_public_ip_resource(cmd, name, location, tags, address_allocation, dns_name, sku, zone):
public_ip_properties = {'publicIPAllocationMethod': address_allocation}
if dns_name:
public_ip_properties['dnsSettings'] = {'domainNameLabel': dns_name}
public_ip = {
- 'apiVersion': get_api_version(ResourceType.MGMT_NETWORK),
+ 'apiVersion': cmd.get_api_version(ResourceType.MGMT_NETWORK),
'type': 'Microsoft.Network/publicIPAddresses',
'name': name,
'location': location,
@@ -145,12 +145,12 @@ def build_public_ip_resource(name, location, tags, address_allocation, dns_name,
}
if zone:
public_ip['zones'] = zone
- if sku and supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-08-01'):
+ if sku and cmd.supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-08-01'):
public_ip['sku'] = {'name': sku}
return public_ip
-def build_nic_resource(name, location, tags, vm_name, subnet_id, private_ip_address=None,
+def build_nic_resource(_, name, location, tags, vm_name, subnet_id, private_ip_address=None,
nsg_id=None, public_ip_id=None, application_security_groups=None):
private_ip_allocation = 'Static' if private_ip_address else 'Dynamic'
@@ -195,7 +195,7 @@ def build_nic_resource(name, location, tags, vm_name, subnet_id, private_ip_addr
return nic
-def build_nsg_resource(name, location, tags, nsg_rule_type):
+def build_nsg_resource(_, name, location, tags, nsg_rule_type):
rule_name = 'rdp' if nsg_rule_type == 'rdp' else 'default-allow-ssh'
rule_dest_port = '3389' if nsg_rule_type == 'rdp' else '22'
@@ -230,7 +230,7 @@ def build_nsg_resource(name, location, tags, nsg_rule_type):
return nsg
-def build_vnet_resource(name, location, tags, vnet_prefix=None, subnet=None,
+def build_vnet_resource(_, name, location, tags, vnet_prefix=None, subnet=None,
subnet_prefix=None, dns_servers=None):
vnet = {
'name': name,
@@ -257,7 +257,7 @@ def build_vnet_resource(name, location, tags, vnet_prefix=None, subnet=None,
return vnet
-def build_msi_role_assignment(vm_vmss_name, vm_vmss_resource_id, role_definition_id,
+def build_msi_role_assignment(cmd, vm_vmss_name, vm_vmss_resource_id, role_definition_id,
role_assignment_guid, identity_scope, is_vm=True):
from msrestazure.tools import parse_resource_id
from azure.mgmt.authorization import AuthorizationManagementClient
@@ -272,7 +272,7 @@ def build_msi_role_assignment(vm_vmss_name, vm_vmss_resource_id, role_definition
# pylint: disable=line-too-long
msi_rp_api_version = '2015-08-31-PREVIEW'
- authorization_api_version = get_mgmt_service_client(AuthorizationManagementClient).api_version
+ authorization_api_version = get_mgmt_service_client(cmd.cli_ctx, AuthorizationManagementClient).api_version
return {
'name': name,
'type': assignment_type,
@@ -289,12 +289,12 @@ def build_msi_role_assignment(vm_vmss_name, vm_vmss_resource_id, role_definition
}
-def build_vm_msi_extension(vm_name, location, role_assignment_guid, port, is_linux, extension_version):
+def build_vm_msi_extension(cmd, vm_name, location, role_assignment_guid, port, is_linux, extension_version):
ext_type_name = 'ManagedIdentityExtensionFor' + ('Linux' if is_linux else 'Windows')
return {
'type': 'Microsoft.Compute/virtualMachines/extensions',
'name': vm_name + '/' + ext_type_name,
- 'apiVersion': get_api_version(ResourceType.MGMT_COMPUTE),
+ 'apiVersion': cmd.get_api_version(ResourceType.MGMT_COMPUTE),
'location': location,
'dependsOn': [role_assignment_guid or 'Microsoft.Compute/virtualMachines/' + vm_name],
'properties': {
@@ -308,7 +308,7 @@ def build_vm_msi_extension(vm_name, location, role_assignment_guid, port, is_lin
def build_vm_resource( # pylint: disable=too-many-locals
- name, location, tags, size, storage_profile, nics, admin_username,
+ cmd, name, location, tags, size, storage_profile, nics, admin_username,
availability_set_id=None, admin_password=None, ssh_key_value=None, ssh_key_path=None,
image_reference=None, os_disk_name=None, custom_image_os_type=None,
os_caching=None, data_caching=None, storage_sku=None,
@@ -439,9 +439,8 @@ def _build_storage_profile():
if license_type:
vm_properties['licenseType'] = license_type
- vm_api_version = get_api_version(ResourceType.MGMT_COMPUTE)
vm = {
- 'apiVersion': vm_api_version,
+ 'apiVersion': cmd.get_api_version(ResourceType.MGMT_COMPUTE),
'type': 'Microsoft.Compute/virtualMachines',
'name': name,
'location': location,
@@ -528,7 +527,7 @@ def _build_frontend_ip_config(name, public_ip_id=None, private_ip_address=None,
return frontend_ip_config
-def build_application_gateway_resource(name, location, tags, backend_pool_name, backend_port, frontend_ip_name,
+def build_application_gateway_resource(_, name, location, tags, backend_pool_name, backend_port, frontend_ip_name,
public_ip_id, subnet_id, gateway_subnet_id,
private_ip_address, private_ip_allocation, sku, capacity):
frontend_ip_config = _build_frontend_ip_config(frontend_ip_name, public_ip_id,
@@ -619,7 +618,7 @@ def _ag_subresource_id(_type, name):
return ag
-def build_load_balancer_resource(name, location, tags, backend_pool_name, nat_pool_name,
+def build_load_balancer_resource(cmd, name, location, tags, backend_pool_name, nat_pool_name,
backend_port, frontend_ip_name, public_ip_id, subnet_id,
private_ip_address, private_ip_allocation, sku):
lb_id = "resourceId('Microsoft.Network/loadBalancers', '{}')".format(name)
@@ -656,16 +655,16 @@ def build_load_balancer_resource(name, location, tags, backend_pool_name, nat_po
'name': name,
'location': location,
'tags': tags,
- 'apiVersion': get_api_version(ResourceType.MGMT_NETWORK),
+ 'apiVersion': cmd.get_api_version(ResourceType.MGMT_NETWORK),
'dependsOn': [],
'properties': lb_properties
}
- if sku and supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-08-01'):
+ if sku and cmd.supported_api_version(ResourceType.MGMT_NETWORK, min_api='2017-08-01'):
lb['sku'] = {'name': sku}
return lb
-def build_vmss_storage_account_pool_resource(loop_name, location, tags, storage_sku):
+def build_vmss_storage_account_pool_resource(_, loop_name, location, tags, storage_sku):
storage_resource = {
'type': 'Microsoft.Storage/storageAccounts',
@@ -685,7 +684,7 @@ def build_vmss_storage_account_pool_resource(loop_name, location, tags, storage_
# pylint: disable=too-many-locals, too-many-branches, too-many-statements
-def build_vmss_resource(name, naming_prefix, location, tags, overprovision, upgrade_policy_mode,
+def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision, upgrade_policy_mode,
vm_sku, instance_count, ip_config_name, nic_name, subnet_id,
public_ip_per_vm, vm_domain_name, dns_servers, nsg, accelerated_networking,
admin_username, authentication_type, storage_profile, os_disk_name,
@@ -832,19 +831,18 @@ def build_vmss_resource(name, naming_prefix, location, tags, overprovision, upgr
if license_type:
vmss_properties['virtualMachineProfile']['licenseType'] = license_type
- if health_probe and supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
+ if health_probe and cmd.supported_api_version(min_api='2017-03-30'):
vmss_properties['virtualMachineProfile']['networkProfile']['healthProbe'] = {'id': health_probe}
- if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2016-04-30-preview'):
+ if cmd.supported_api_version(min_api='2016-04-30-preview'):
vmss_properties['singlePlacementGroup'] = single_placement_group
- vmss_api_version = get_api_version(ResourceType.MGMT_COMPUTE)
vmss = {
'type': 'Microsoft.Compute/virtualMachineScaleSets',
'name': name,
'location': location,
'tags': tags,
- 'apiVersion': vmss_api_version,
+ 'apiVersion': cmd.get_api_version(ResourceType.MGMT_COMPUTE),
'dependsOn': [],
'sku': {
'name': vm_sku,
@@ -857,21 +855,20 @@ def build_vmss_resource(name, naming_prefix, location, tags, overprovision, upgr
return vmss
-def build_av_set_resource(name, location, tags,
+def build_av_set_resource(cmd, name, location, tags,
platform_update_domain_count, platform_fault_domain_count, unmanaged):
- av_set_api_version = get_api_version(ResourceType.MGMT_COMPUTE)
av_set = {
'type': 'Microsoft.Compute/availabilitySets',
'name': name,
'location': location,
'tags': tags,
- 'apiVersion': av_set_api_version,
+ 'apiVersion': cmd.get_api_version(ResourceType.MGMT_COMPUTE),
"properties": {
'platformFaultDomainCount': platform_fault_domain_count,
}
}
- if supported_api_version(ResourceType.MGMT_COMPUTE, '2016-04-30-preview'):
+ if cmd.supported_api_version(min_api='2016-04-30-preview'):
av_set['sku'] = {
'name': 'Classic' if unmanaged else 'Aligned'
}
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 528cef81860..d9e251e86cf 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
@@ -8,29 +8,30 @@
import os
import re
-from msrestazure.azure_exceptions import CloudError
-from msrestazure.tools import resource_id, parse_resource_id, is_valid_resource_id
-
-from azure.mgmt.keyvault import KeyVaultManagementClient
-import azure.cli.core.azlogging as azlogging
from azure.cli.core.commands.validators import \
(get_default_location_from_resource_group, validate_file_or_dict, validate_parameter_set)
-from azure.cli.core.util import CLIError, hash_string
+from azure.cli.core.util import hash_string
from azure.cli.command_modules.vm._vm_utils import check_existence
from azure.cli.command_modules.vm._template_builder import StorageProfile
import azure.cli.core.keys as keys
+
+from knack.log import get_logger
+from knack.util import CLIError
+
from ._client_factory import _compute_client_factory
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
def validate_asg_names_or_ids(namespace):
- from azure.cli.core.profiles import get_sdk, ResourceType
+ from msrestazure.tools import resource_id, parse_resource_id, is_valid_resource_id
+ from azure.cli.core.profiles import ResourceType
from azure.cli.core.commands.client_factory import get_subscription_id
- ApplicationSecurityGroup = get_sdk(ResourceType.MGMT_NETWORK, 'ApplicationSecurityGroup', mod='models')
+ ApplicationSecurityGroup = namespace.cmd.get_models('ApplicationSecurityGroup',
+ resource_type=ResourceType.MGMT_NETWORK)
resource_group = namespace.resource_group_name
- subscription_id = get_subscription_id()
+ subscription_id = get_subscription_id(namespace.cmd.cli_ctx)
names_or_ids = getattr(namespace, 'application_security_groups')
ids = []
@@ -50,10 +51,11 @@ def validate_asg_names_or_ids(namespace):
def validate_nsg_name(namespace):
+ from msrestazure.tools import resource_id, parse_resource_id, is_valid_resource_id
from azure.cli.core.commands.client_factory import get_subscription_id
vm_id = resource_id(name=namespace.vm_name, resource_group=namespace.resource_group_name,
namespace='Microsoft.Compute', type='virtualMachines',
- subscription=get_subscription_id())
+ subscription=get_subscription_id(namespace.cmd.cli_ctx))
namespace.network_security_group_name = namespace.network_security_group_name \
or '{}_NSG_{}'.format(namespace.vm_name, hash_string(vm_id, length=8))
@@ -63,15 +65,16 @@ def process_vm_secret_namespace(namespace):
'vaults', 'Microsoft.KeyVault')
-def _get_resource_group_from_vault_name(vault_name):
+def _get_resource_group_from_vault_name(cli_ctx, vault_name):
"""
Fetch resource group from vault name
:param str vault_name: name of the key vault
:return: resource group name or None
:rtype: str
"""
+ from azure.mgmt.keyvault import KeyVaultManagementClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- client = get_mgmt_service_client(KeyVaultManagementClient).vaults
+ client = get_mgmt_service_client(cli_ctx, KeyVaultManagementClient).vaults
for vault in client.list():
id_comps = parse_resource_id(vault.id)
if id_comps['name'] == vault_name:
@@ -79,22 +82,23 @@ def _get_resource_group_from_vault_name(vault_name):
return None
-def _get_resource_id(val, resource_group, resource_type, resource_namespace):
+def _get_resource_id(cli_ctx, val, resource_group, resource_type, resource_namespace):
+ from msrestazure.tools import resource_id, parse_resource_id, is_valid_resource_id
from azure.cli.core.commands.client_factory import get_subscription_id
if is_valid_resource_id(val):
return val
return resource_id(name=val, resource_group=resource_group, namespace=resource_namespace, type=resource_type,
- subscription=get_subscription_id())
+ subscription=get_subscription_id(cli_ctx))
-def _get_nic_id(val, resource_group):
- return _get_resource_id(val, resource_group,
+def _get_nic_id(cli_ctx, val, resource_group):
+ return _get_resource_id(cli_ctx, val, resource_group,
'networkInterfaces', 'Microsoft.Network')
def validate_vm_nic(namespace):
- namespace.nic = _get_nic_id(namespace.nic, namespace.resource_group_name)
+ namespace.nic = _get_nic_id(namespace.cmd.cli_ctx, namespace.nic, namespace.resource_group_name)
def validate_vm_nics(namespace):
@@ -106,7 +110,7 @@ def validate_vm_nics(namespace):
namespace.nics = nic_ids
if hasattr(namespace, 'primary_nic') and namespace.primary_nic:
- namespace.primary_nic = _get_nic_id(namespace.primary_nic, rg)
+ namespace.primary_nic = _get_nic_id(namespace.cmd.cli_ctx, namespace.primary_nic, rg)
def _validate_secrets(secrets, os_type):
@@ -165,13 +169,15 @@ def _validate_secrets(secrets, os_type):
def _parse_image_argument(namespace):
""" Systematically determines what type is supplied for the --image parameter. Updates the
namespace and returns the type for subsequent processing. """
+ from msrestazure.tools import resource_id, parse_resource_id, is_valid_resource_id
+ from msrestazure.azure_exceptions import CloudError
# 1 - easy check for URI
if namespace.image.lower().endswith('.vhd'):
return 'uri'
# 2 - attempt to match an URN alias (most likely)
from azure.cli.command_modules.vm._actions import load_images_from_aliases_doc
- images = load_images_from_aliases_doc()
+ images = load_images_from_aliases_doc(namespace.cmd.cli_ctx)
matched = next((x for x in images if x['urnAlias'].lower() == namespace.image.lower()), None)
if matched:
namespace.os_publisher = matched['publisher']
@@ -363,7 +369,7 @@ def _validate_vm_create_storage_profile(namespace, for_scale_set=False):
if namespace.storage_profile == StorageProfile.ManagedCustomImage:
# extract additional information from a managed custom image
res = parse_resource_id(namespace.image)
- compute_client = _compute_client_factory()
+ compute_client = _compute_client_factory(namespace.cmd.cli_ctx)
image_info = compute_client.images.get(res['resource_group'], res['name'])
# pylint: disable=no-member
namespace.os_type = image_info.storage_profile.os_disk.os_type.value
@@ -372,11 +378,11 @@ def _validate_vm_create_storage_profile(namespace, for_scale_set=False):
elif namespace.storage_profile == StorageProfile.ManagedSpecializedOSDisk:
# accept disk name or ID
namespace.attach_os_disk = _get_resource_id(
- namespace.attach_os_disk, namespace.resource_group_name, 'disks', 'Microsoft.Compute')
+ namespace.cmd.cli_ctx, namespace.attach_os_disk, namespace.resource_group_name, 'disks', 'Microsoft.Compute')
if getattr(namespace, 'attach_data_disks', None):
if not namespace.use_unmanaged_disk:
- namespace.attach_data_disks = [_get_resource_id(d, namespace.resource_group_name, 'disks',
+ namespace.attach_data_disks = [_get_resource_id(namespace.cmd.cli_ctx, d, namespace.resource_group_name, 'disks',
'Microsoft.Compute') for d in namespace.attach_data_disks]
if not namespace.os_type:
@@ -388,7 +394,7 @@ def _validate_vm_create_storage_account(namespace):
if namespace.storage_account:
storage_id = parse_resource_id(namespace.storage_account)
rg = storage_id.get('resource_group', namespace.resource_group_name)
- if check_existence(storage_id['name'], rg, 'Microsoft.Storage', 'storageAccounts'):
+ if check_existence(namespace.cmd.cli_ctx, storage_id['name'], rg, 'Microsoft.Storage', 'storageAccounts'):
# 1 - existing storage account specified
namespace.storage_account_type = 'existing'
logger.debug("using specified existing storage account '%s'", storage_id['name'])
@@ -399,7 +405,7 @@ def _validate_vm_create_storage_account(namespace):
else:
from azure.cli.core.profiles import ResourceType
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- storage_client = get_mgmt_service_client(ResourceType.MGMT_STORAGE).storage_accounts
+ storage_client = get_mgmt_service_client(namespace.cmd.cli_ctx, ResourceType.MGMT_STORAGE).storage_accounts
# find storage account in target resource group that matches the VM's location
sku_tier = 'Premium' if 'Premium' in namespace.storage_sku else 'Standard'
@@ -425,11 +431,11 @@ def _validate_vm_create_availability_set(namespace):
name = as_id['name']
rg = as_id.get('resource_group', namespace.resource_group_name)
- if not check_existence(name, rg, 'Microsoft.Compute', 'availabilitySets'):
+ if not check_existence(namespace.cmd.cli_ctx, name, rg, 'Microsoft.Compute', 'availabilitySets'):
raise CLIError("Availability set '{}' does not exist.".format(name))
namespace.availability_set = resource_id(
- subscription=get_subscription_id(),
+ subscription=get_subscription_id(namespace.cmd.cli_ctx),
resource_group=rg,
namespace='Microsoft.Compute',
type='availabilitySets',
@@ -438,7 +444,7 @@ def _validate_vm_create_availability_set(namespace):
def _validate_vm_vmss_create_vnet(namespace, for_scale_set=False):
-
+ from msrestazure.tools import resource_id, parse_resource_id, is_valid_resource_id
vnet = namespace.vnet_name
subnet = namespace.subnet
rg = namespace.resource_group_name
@@ -449,7 +455,7 @@ def _validate_vm_vmss_create_vnet(namespace, for_scale_set=False):
logger.debug('no subnet specified. Attempting to find an existing Vnet and subnet...')
# if nothing specified, try to find an existing vnet and subnet in the target resource group
- client = get_network_client().virtual_networks
+ client = get_network_client(namespace.cmd.cli_ctx).virtual_networks
# find VNET in target resource group that matches the VM's location with a matching subnet
for vnet_match in (v for v in client.list(rg) if v.location == location and v.subnets):
@@ -481,7 +487,7 @@ def _check_subnet(s):
"--subnet SUBNET_NAME --vnet-name VNET_NAME")
subnet_exists = \
- check_existence(subnet, rg, 'Microsoft.Network', 'subnets', vnet, 'virtualNetworks')
+ check_existence(namespace.cmd.cli_ctx, subnet, rg, 'Microsoft.Network', 'subnets', vnet, 'virtualNetworks')
if subnet_is_id and not subnet_exists:
raise CLIError("Subnet '{}' does not exist.".format(subnet))
@@ -553,7 +559,7 @@ def _convert_to_int(address, bit_mask_len):
def _validate_vm_create_nsg(namespace):
if namespace.nsg:
- if check_existence(namespace.nsg, namespace.resource_group_name,
+ if check_existence(namespace.cmd.cli_ctx, namespace.nsg, namespace.resource_group_name,
'Microsoft.Network', 'networkSecurityGroups'):
namespace.nsg_type = 'existing'
logger.debug("using specified NSG '%s'", namespace.nsg)
@@ -570,13 +576,13 @@ def _validate_vm_create_nsg(namespace):
def _validate_vmss_create_nsg(namespace):
if namespace.nsg:
- namespace.nsg = _get_resource_id(namespace.nsg, namespace.resource_group_name,
+ namespace.nsg = _get_resource_id(namespace.cmd.cli_ctx, namespace.nsg, namespace.resource_group_name,
'networkSecurityGroups', 'Microsoft.Network')
def _validate_vm_create_public_ip(namespace):
if namespace.public_ip_address:
- if check_existence(namespace.public_ip_address, namespace.resource_group_name,
+ if check_existence(namespace.cmd.cli_ctx, namespace.public_ip_address, namespace.resource_group_name,
'Microsoft.Network', 'publicIPAddresses'):
namespace.public_ip_type = 'existing'
logger.debug("using existing specified public IP '%s'", namespace.public_ip_address)
@@ -656,7 +662,7 @@ def _validate_vm_vmss_create_auth(namespace):
"incorrect usage for authentication-type 'password': "
"[--admin-username USERNAME] --admin-password PASSWORD")
- from azure.cli.core.prompting import prompt_pass, NoTTYException
+ from knack.prompting import prompt_pass, NoTTYException
try:
if not namespace.admin_password:
namespace.admin_password = prompt_pass('Admin Password: ', confirm=True)
@@ -762,11 +768,11 @@ def _validate_vm_vmss_msi(namespace, from_set_command=False):
raise CLIError('usage error: --assign-identity [--scope SCOPE] [--role ROLE]')
-def _resolve_role_id(role, scope):
+def _resolve_role_id(cli_ctx, role, scope):
import uuid
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.authorization import AuthorizationManagementClient
- client = get_mgmt_service_client(AuthorizationManagementClient).role_definitions
+ client = get_mgmt_service_client(cli_ctx, AuthorizationManagementClient).role_definitions
role_id = None
if re.match(r'/subscriptions/.+/providers/Microsoft.Authorization/roleDefinitions/',
@@ -793,6 +799,7 @@ def _resolve_role_id(role, scope):
def process_vm_create_namespace(namespace):
get_default_location_from_resource_group(namespace)
+ validate_asg_names_or_ids(namespace)
_validate_vm_create_storage_profile(namespace)
if namespace.storage_profile in [StorageProfile.SACustomImage,
StorageProfile.SAPirImage]:
@@ -819,9 +826,9 @@ def _get_vmss_create_instance_threshold():
return 100
-def _get_default_address_pool(resource_group, balancer_name, balancer_type):
+def _get_default_address_pool(cli_ctx, resource_group, balancer_name, balancer_type):
option_name = '--backend-pool-name'
- client = getattr(get_network_client(), balancer_type, None)
+ client = getattr(get_network_client(cli_ctx), balancer_type, None)
if not client:
raise CLIError('unrecognized balancer type: {}'.format(balancer_type))
@@ -837,7 +844,7 @@ def _get_default_address_pool(resource_group, balancer_name, balancer_type):
def _validate_vmss_create_load_balancer_or_app_gateway(namespace):
-
+ from msrestazure.azure_exceptions import CloudError
INSTANCE_THRESHOLD = _get_vmss_create_instance_threshold()
# convert the single_placement_group to boolean for simpler logic beyond
@@ -874,7 +881,7 @@ def _validate_vmss_create_load_balancer_or_app_gateway(namespace):
if balancer_type == 'applicationGateway':
if namespace.application_gateway:
- client = get_network_client().application_gateways
+ client = get_network_client(namespace.cmd.cli_ctx).application_gateways
try:
rg = parse_resource_id(namespace.application_gateway).get(
'resource_group', namespace.resource_group_name)
@@ -941,14 +948,15 @@ def _validate_vmss_create_load_balancer_or_app_gateway(namespace):
logger.debug('new load balancer will be created')
-def get_network_client():
+def get_network_client(cli_ctx):
from azure.cli.core.profiles import ResourceType
from azure.cli.core.commands.client_factory import get_mgmt_service_client
- return get_mgmt_service_client(ResourceType.MGMT_NETWORK)
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_NETWORK)
-def get_network_lb(resource_group_name, lb_name):
- network_client = get_network_client()
+def get_network_lb(cli_ctx, resource_group_name, lb_name):
+ from msrestazure.azure_exceptions import CloudError
+ network_client = get_network_client(cli_ctx)
try:
return network_client.load_balancers.get(resource_group_name, lb_name)
except CloudError:
@@ -979,10 +987,12 @@ def process_vmss_create_namespace(namespace):
def validate_vm_disk(namespace):
- namespace.disk = _get_resource_id(namespace.disk, namespace.resource_group_name, 'disks', 'Microsoft.Compute')
+ namespace.disk = _get_resource_id(namespace.cmd.cli_ctx, namespace.disk,
+ namespace.resource_group_name, 'disks', 'Microsoft.Compute')
def process_disk_or_snapshot_create_namespace(namespace):
+ from msrestazure.azure_exceptions import CloudError
if namespace.source:
usage_error = 'usage error: --source {SNAPSHOT | DISK} | --source VHD_BLOB_URI [--source-storage-account-id ID]'
try:
@@ -994,9 +1004,10 @@ def process_disk_or_snapshot_create_namespace(namespace):
def process_image_create_namespace(namespace):
+ from msrestazure.azure_exceptions import CloudError
try:
# try capturing from VM, a most common scenario
- compute_client = _compute_client_factory()
+ compute_client = _compute_client_factory(namespace.cmd.cli_ctx)
res_id = _get_resource_id(namespace.source, namespace.resource_group_name,
'virtualMachines', 'Microsoft.Compute')
res = parse_resource_id(res_id)
@@ -1008,7 +1019,7 @@ def process_image_create_namespace(namespace):
raise CLIError("'--data-disk-sources' is not allowed when capturing "
"images from virtual machines")
except CloudError:
- namespace.os_blob_uri, namespace.os_disk, namespace.os_snapshot = _figure_out_storage_source(namespace.resource_group_name, namespace.source) # pylint: disable=line-too-long
+ namespace.os_blob_uri, namespace.os_disk, namespace.os_snapshot = _figure_out_storage_source(namespace.cmd.cli_ctx, namespace.resource_group_name, namespace.source) # pylint: disable=line-too-long
namespace.data_blob_uris = []
namespace.data_disks = []
namespace.data_snapshots = []
@@ -1027,7 +1038,8 @@ def process_image_create_namespace(namespace):
"please specify '--os-type OS_TYPE'")
-def _figure_out_storage_source(resource_group_name, source):
+def _figure_out_storage_source(cli_ctx, resource_group_name, source):
+ from msrestazure.azure_exceptions import CloudError
source_blob_uri = None
source_disk = None
source_snapshot = None
@@ -1038,7 +1050,7 @@ def _figure_out_storage_source(resource_group_name, source):
elif '/snapshots/' in source.lower():
source_snapshot = source
else:
- compute_client = _compute_client_factory()
+ compute_client = _compute_client_factory(cli_ctx)
# pylint: disable=no-member
try:
info = compute_client.snapshots.get(resource_group_name, source)
@@ -1051,7 +1063,7 @@ def _figure_out_storage_source(resource_group_name, source):
def process_disk_encryption_namespace(namespace):
- namespace.disk_encryption_keyvault = _get_resource_id(namespace.disk_encryption_keyvault,
+ namespace.disk_encryption_keyvault = _get_resource_id(namespace.cmd.cli_ctx, namespace.disk_encryption_keyvault,
namespace.resource_group_name,
'vaults', 'Microsoft.KeyVault')
@@ -1059,7 +1071,7 @@ def process_disk_encryption_namespace(namespace):
if not namespace.key_encryption_key:
raise CLIError("Incorrect usage '--key-encryption-keyvault': "
"'--key-encryption-key' is required")
- namespace.key_encryption_keyvault = _get_resource_id(namespace.key_encryption_keyvault,
+ namespace.key_encryption_keyvault = _get_resource_id(namespace.cmd.cli_ctx, namespace.key_encryption_keyvault,
namespace.resource_group_name,
'vaults', 'Microsoft.KeyVault')
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_vm_utils.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_vm_utils.py
index b7050047ef0..b71353e2dca 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_vm_utils.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_vm_utils.py
@@ -5,9 +5,11 @@
import json
import os
-from azure.cli.core.util import CLIError
-from msrestazure.tools import parse_resource_id
+from knack.log import get_logger
+from knack.util import CLIError
+
+logger = get_logger(__name__)
def read_content_if_is_file(string_or_file):
content = string_or_file
@@ -17,10 +19,10 @@ def read_content_if_is_file(string_or_file):
return content
-def _resolve_api_version(provider_namespace, resource_type, parent_path):
+def _resolve_api_version(cli_ctx, provider_namespace, resource_type, parent_path):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
+ client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
provider = client.providers.get(provider_namespace)
# If available, we will use parent resource's api-version
@@ -40,21 +42,19 @@ def _resolve_api_version(provider_namespace, resource_type, parent_path):
def log_pprint_template(template):
- import azure.cli.core.azlogging as azlogging
-
- logger = azlogging.get_az_logger(__name__)
logger.info('==== BEGIN TEMPLATE ====')
logger.info(json.dumps(template, indent=2))
logger.info('==== END TEMPLATE ====')
-def check_existence(value, resource_group, provider_namespace, resource_type,
+def check_existence(cli_ctx, value, resource_group, provider_namespace, resource_type,
parent_name=None, parent_type=None):
# check for name or ID and set the type flags
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from msrestazure.azure_exceptions import CloudError
+ from msrestazure.tools import parse_resource_id
from azure.cli.core.profiles import ResourceType
- resource_client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).resources
+ resource_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).resources
id_parts = parse_resource_id(value)
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 a189fb4ac62..a026a935672 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
@@ -3,8 +3,6 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from collections import OrderedDict
-
from azure.cli.command_modules.vm._client_factory import (cf_vm, cf_avail_set, cf_ni,
cf_vm_ext,
cf_vm_ext_image, cf_vm_image, cf_usage,
@@ -12,342 +10,277 @@
cf_vm_sizes, cf_disks, cf_snapshots,
cf_images, cf_run_commands,
cf_rolling_upgrade_commands)
-from azure.cli.core.commands import DeploymentOutputLongRunningOperation, cli_command
-from azure.cli.core.commands.arm import \
- (cli_generic_update_command, cli_generic_wait_command, deployment_validate_table_format)
+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,
+ get_vmss_table_output_transformer)
+from azure.cli.command_modules.vm._validators import (
+ process_vm_create_namespace, process_vmss_create_namespace, process_image_create_namespace,
+ process_disk_or_snapshot_create_namespace, process_disk_encryption_namespace, process_assign_identity_namespace,
+ process_vm_secret_namespace)
+
+from azure.cli.core.commands import DeploymentOutputLongRunningOperation
+from azure.cli.core.commands.arm import handle_long_running_operation_exception, deployment_validate_table_format
from azure.cli.core.util import empty_on_404
-from azure.cli.core.profiles import supported_api_version, ResourceType
+from azure.cli.core.profiles import ResourceType
+from azure.cli.core.sdk.util import CliCommandType
# pylint: disable=line-too-long
-
-custom_path = 'azure.cli.command_modules.vm.custom#{}'
-mgmt_path = 'azure.mgmt.compute.operations.{}#{}.{}'
-
-
-# VM
-def transform_ip_addresses(result):
- transformed = []
- for r in result:
- network = r['virtualMachine']['network']
- public = network.get('publicIpAddresses')
- public_ip_addresses = ','.join([p['ipAddress'] for p in public if p['ipAddress']]) if public else None
- private = network.get('privateIpAddresses')
- private_ip_addresses = ','.join(private) if private else None
- entry = OrderedDict([('virtualMachine', r['virtualMachine']['name']),
- ('publicIPAddresses', public_ip_addresses),
- ('privateIPAddresses', private_ip_addresses)])
- transformed.append(entry)
-
- return transformed
-
-
-def transform_vm(vm):
- result = OrderedDict([('name', vm['name']),
- ('resourceGroup', vm['resourceGroup']),
- ('powerState', vm.get('powerState')),
- ('publicIps', vm.get('publicIps')),
- ('fqdns', vm.get('fqdns')),
- ('location', vm['location'])])
- if 'zones' in vm:
- result['zones'] = ','.join(vm['zones']) if vm['zones'] else ''
- return result
-
-
-def transform_vm_create_output(result):
- from msrestazure.tools import parse_resource_id
- try:
- output = OrderedDict([('id', result.id),
- ('resourceGroup', getattr(result, 'resource_group', None) or parse_resource_id(result.id)['resource_group']),
- ('powerState', result.power_state),
- ('publicIpAddress', result.public_ips),
- ('fqdns', result.fqdns),
- ('privateIpAddress', result.private_ips),
- ('macAddress', result.mac_addresses),
- ('location', result.location)])
- if getattr(result, 'identity', None):
- output['identity'] = result.identity
- if hasattr(result, 'zones'): # output 'zones' column even the property value is None
- output['zones'] = result.zones[0] if result.zones else ''
- return output
- except AttributeError:
- from msrest.pipeline import ClientRawResponse
- return None if isinstance(result, ClientRawResponse) else result
-
-
-def transform_vm_usage_list(result):
- result = list(result)
- for item in result:
- item.current_value = str(item.current_value)
- item.limit = str(item.limit)
- item.local_name = item.name.localized_value
- return result
-
-
-def transform_vm_list(vm_list):
- return [transform_vm(v) for v in vm_list]
-
-
-# flattern out important fields (single member arrays) to be displayed in the table output
-def transform_sku_for_table_output(skus):
- result = []
- for k in skus:
- order_dict = OrderedDict()
- order_dict['resourceType'] = k['resourceType']
- order_dict['locations'] = str(k['locations']) if len(k['locations']) > 1 else k['locations'][0]
- order_dict['name'] = k['name']
- order_dict['size'] = k['size']
- order_dict['tier'] = k['tier']
- if k['capabilities']:
- temp = ['{}={}'.format(pair['name'], pair['value']) for pair in k['capabilities']]
- order_dict['capabilities'] = str(temp) if len(temp) > 1 else temp[0]
- else:
- order_dict['capabilities'] = None
- if k['restrictions']:
- reasons = [x['reasonCode'] for x in k['restrictions']]
- order_dict['restrictions'] = str(reasons) if len(reasons) > 1 else reasons[0]
- else:
- order_dict['restrictions'] = None
- result.append(order_dict)
- return result
-
-
-op_var = 'virtual_machines_operations'
-op_class = 'VirtualMachinesOperations'
-cli_command(__name__, 'vm create', custom_path.format('create_vm'), transform=transform_vm_create_output, no_wait_param='no_wait', table_transformer=deployment_validate_table_format)
-cli_command(__name__, 'vm delete', mgmt_path.format(op_var, op_class, 'delete'), cf_vm, confirmation=True, no_wait_param='raw')
-cli_command(__name__, 'vm deallocate', mgmt_path.format(op_var, op_class, 'deallocate'), cf_vm, no_wait_param='raw')
-cli_command(__name__, 'vm generalize', mgmt_path.format(op_var, op_class, 'generalize'), cf_vm, no_wait_param='raw')
-cli_command(__name__, 'vm show', custom_path.format('show_vm'), table_transformer=transform_vm, exception_handler=empty_on_404)
-cli_command(__name__, 'vm list-vm-resize-options', mgmt_path.format(op_var, op_class, 'list_available_sizes'), cf_vm)
-cli_command(__name__, 'vm stop', mgmt_path.format(op_var, op_class, 'power_off'), cf_vm, no_wait_param='raw')
-cli_command(__name__, 'vm restart', mgmt_path.format(op_var, op_class, 'restart'), cf_vm, no_wait_param='raw')
-cli_command(__name__, 'vm start', mgmt_path.format(op_var, op_class, 'start'), cf_vm, no_wait_param='raw')
-cli_command(__name__, 'vm redeploy', mgmt_path.format(op_var, op_class, 'redeploy'), cf_vm, no_wait_param='raw')
-cli_command(__name__, 'vm list-ip-addresses', custom_path.format('list_ip_addresses'), table_transformer=transform_ip_addresses)
-cli_command(__name__, 'vm get-instance-view', custom_path.format('get_instance_view'),
- table_transformer='{Name:name, ResourceGroup:resourceGroup, Location:location, ProvisioningState:provisioningState, PowerState:instanceView.statuses[1].displayStatus}')
-cli_command(__name__, 'vm list', custom_path.format('list_vm'), table_transformer=transform_vm_list)
-cli_command(__name__, 'vm resize', custom_path.format('resize_vm'), no_wait_param='no_wait')
-cli_command(__name__, 'vm capture', custom_path.format('capture_vm'))
-cli_command(__name__, 'vm open-port', custom_path.format('vm_open_port'))
-cli_command(__name__, 'vm format-secret', custom_path.format('get_vm_format_secret'), deprecate_info='az vm secret format')
-cli_command(__name__, 'vm secret format', custom_path.format('get_vm_format_secret'))
-cli_command(__name__, 'vm secret add', custom_path.format('add_vm_secret'))
-cli_command(__name__, 'vm secret list', custom_path.format('list_vm_secrets'))
-cli_command(__name__, 'vm secret remove', custom_path.format('remove_vm_secret'))
-cli_generic_update_command(__name__, 'vm update',
- mgmt_path.format(op_var, op_class, 'get'),
- mgmt_path.format(op_var, op_class, 'create_or_update'),
- cf_vm,
- no_wait_param='raw')
-cli_generic_wait_command(__name__, 'vm wait', 'azure.cli.command_modules.vm.custom#get_instance_view')
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- cli_command(__name__, 'vm perform-maintenance', mgmt_path.format(op_var, op_class, 'perform_maintenance'), cf_vm)
-
-
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2016-04-30-preview'):
- cli_command(__name__, 'vm convert', mgmt_path.format(op_var, op_class, 'convert_to_managed_disks'), cf_vm)
-
-# VM encryption
-cli_command(__name__, 'vm encryption enable', 'azure.cli.command_modules.vm.disk_encryption#encrypt_vm')
-cli_command(__name__, 'vm encryption disable', 'azure.cli.command_modules.vm.disk_encryption#decrypt_vm')
-cli_command(__name__, 'vm encryption show', 'azure.cli.command_modules.vm.disk_encryption#show_vm_encryption_status', exception_handler=empty_on_404)
-
-# VMSS encryption
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- cli_command(__name__, 'vmss encryption enable', 'azure.cli.command_modules.vm.disk_encryption#encrypt_vmss')
- cli_command(__name__, 'vmss encryption disable', 'azure.cli.command_modules.vm.disk_encryption#decrypt_vmss')
- cli_command(__name__, 'vmss encryption show', 'azure.cli.command_modules.vm.disk_encryption#show_vmss_encryption_status', exception_handler=empty_on_404)
-
-# VM NIC
-cli_command(__name__, 'vm nic add', custom_path.format('vm_add_nics'))
-cli_command(__name__, 'vm nic remove', custom_path.format('vm_remove_nics'))
-cli_command(__name__, 'vm nic set', custom_path.format('vm_set_nics'))
-cli_command(__name__, 'vm nic show', custom_path.format('vm_show_nic'), exception_handler=empty_on_404)
-cli_command(__name__, 'vm nic list', custom_path.format('vm_list_nics'))
-
-# VMSS NIC
-cli_command(__name__, 'vmss nic list', 'azure.mgmt.network.operations.network_interfaces_operations#NetworkInterfacesOperations.list_virtual_machine_scale_set_network_interfaces', cf_ni)
-cli_command(__name__, 'vmss nic list-vm-nics', 'azure.mgmt.network.operations.network_interfaces_operations#NetworkInterfacesOperations.list_virtual_machine_scale_set_vm_network_interfaces', cf_ni)
-cli_command(__name__, 'vmss nic show', 'azure.mgmt.network.operations.network_interfaces_operations#NetworkInterfacesOperations.get_virtual_machine_scale_set_network_interface', cf_ni, exception_handler=empty_on_404)
-
-# VM Access
-cli_command(__name__, 'vm user update', custom_path.format('set_user'), no_wait_param='no_wait')
-cli_command(__name__, 'vm user delete', custom_path.format('delete_user'), no_wait_param='no_wait')
-cli_command(__name__, 'vm user reset-ssh', custom_path.format('reset_linux_ssh'), no_wait_param='no_wait')
-
-# # VM Availability Set
-cli_command(__name__, 'vm availability-set create', custom_path.format('create_av_set'), table_transformer=deployment_validate_table_format, no_wait_param='no_wait')
-
-op_var = 'availability_sets_operations'
-op_class = 'AvailabilitySetsOperations'
-cli_command(__name__, 'vm availability-set delete', mgmt_path.format(op_var, op_class, 'delete'), cf_avail_set)
-cli_command(__name__, 'vm availability-set show', mgmt_path.format(op_var, op_class, 'get'), cf_avail_set, exception_handler=empty_on_404)
-cli_command(__name__, 'vm availability-set list', mgmt_path.format(op_var, op_class, 'list'), cf_avail_set)
-cli_command(__name__, 'vm availability-set list-sizes', mgmt_path.format(op_var, op_class, 'list_available_sizes'), cf_avail_set)
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2016-04-30-preview'):
- cli_command(__name__, 'vm availability-set convert', custom_path.format('convert_av_set_to_managed_disk'))
-
-cli_generic_update_command(__name__, 'vm availability-set update',
- custom_path.format('availset_get'),
- custom_path.format('availset_set'))
-
-cli_generic_update_command(__name__, 'vmss update',
- custom_path.format('vmss_get'),
- custom_path.format('vmss_set'),
- no_wait_param='no_wait')
-cli_generic_wait_command(__name__, 'vmss wait', custom_path.format('vmss_get'))
-
-# VM Boot Diagnostics
-cli_command(__name__, 'vm boot-diagnostics disable', custom_path.format('disable_boot_diagnostics'))
-cli_command(__name__, 'vm boot-diagnostics enable', custom_path.format('enable_boot_diagnostics'))
-cli_command(__name__, 'vm boot-diagnostics get-boot-log', custom_path.format('get_boot_log'))
-
-# VM Diagnostics
-cli_command(__name__, 'vm diagnostics set', custom_path.format('set_diagnostics_extension'))
-cli_command(__name__, 'vm diagnostics get-default-config', custom_path.format('show_default_diagnostics_configuration'))
-
-# VMSS Diagnostics
-cli_command(__name__, 'vmss diagnostics set', custom_path.format('set_vmss_diagnostics_extension'))
-cli_command(__name__, 'vmss diagnostics get-default-config', custom_path.format('show_default_diagnostics_configuration'))
-
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- cli_command(__name__, 'vm disk attach', custom_path.format('attach_managed_data_disk'))
- cli_command(__name__, 'vm disk detach', custom_path.format('detach_data_disk'))
-
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- cli_command(__name__, 'vmss disk attach', custom_path.format('attach_managed_data_disk_to_vmss'))
- cli_command(__name__, 'vmss disk detach', custom_path.format('detach_disk_from_vmss'))
-
-cli_command(__name__, 'vm unmanaged-disk attach', custom_path.format('attach_unmanaged_data_disk'))
-cli_command(__name__, 'vm unmanaged-disk detach', custom_path.format('detach_data_disk'))
-cli_command(__name__, 'vm unmanaged-disk list', custom_path.format('list_unmanaged_disks'))
-
-# VM Extension
-op_var = 'virtual_machine_extensions_operations'
-op_class = 'VirtualMachineExtensionsOperations'
-cli_command(__name__, 'vm extension delete', mgmt_path.format(op_var, op_class, 'delete'), cf_vm_ext)
-_extension_show_transform = '{Name:name, ProvisioningState:provisioningState, Publisher:publisher, Version:typeHandlerVersion, AutoUpgradeMinorVersion:autoUpgradeMinorVersion}'
-cli_command(__name__, 'vm extension show', mgmt_path.format(op_var, op_class, 'get'), cf_vm_ext, exception_handler=empty_on_404,
- table_transformer=_extension_show_transform)
-cli_command(__name__, 'vm extension set', custom_path.format('set_extension'))
-cli_command(__name__, 'vm extension list', custom_path.format('list_extensions'),
- table_transformer='[].' + _extension_show_transform)
-
-# VMSS Extension
-cli_command(__name__, 'vmss extension delete', custom_path.format('delete_vmss_extension'))
-cli_command(__name__, 'vmss extension show', custom_path.format('get_vmss_extension'), exception_handler=empty_on_404)
-cli_command(__name__, 'vmss extension set', custom_path.format('set_vmss_extension'))
-cli_command(__name__, 'vmss extension list', custom_path.format('list_vmss_extensions'))
-
-# VM Extension Image
-op_var = 'virtual_machine_extension_images_operations'
-op_class = 'VirtualMachineExtensionImagesOperations'
-cli_command(__name__, 'vm extension image show', mgmt_path.format(op_var, op_class, 'get'), cf_vm_ext_image, exception_handler=empty_on_404)
-cli_command(__name__, 'vm extension image list-names', mgmt_path.format(op_var, op_class, 'list_types'), cf_vm_ext_image)
-cli_command(__name__, 'vm extension image list-versions', mgmt_path.format(op_var, op_class, 'list_versions'), cf_vm_ext_image)
-cli_command(__name__, 'vm extension image list', custom_path.format('list_vm_extension_images'))
-
-# VMSS Extension Image (convenience copy of VM Extension Image)
-cli_command(__name__, 'vmss extension image show', mgmt_path.format(op_var, op_class, 'get'), cf_vm_ext_image, exception_handler=empty_on_404)
-cli_command(__name__, 'vmss extension image list-names', mgmt_path.format(op_var, op_class, 'list_types'), cf_vm_ext_image)
-cli_command(__name__, 'vmss extension image list-versions', mgmt_path.format(op_var, op_class, 'list_versions'), cf_vm_ext_image)
-cli_command(__name__, 'vmss extension image list', custom_path.format('list_vm_extension_images'))
-
-# VM Image
-op_var = 'virtual_machine_images_operations'
-op_class = 'VirtualMachineImagesOperations'
-cli_command(__name__, 'vm image show', mgmt_path.format(op_var, op_class, 'get'), cf_vm_image, exception_handler=empty_on_404)
-cli_command(__name__, 'vm image list-offers', mgmt_path.format(op_var, op_class, 'list_offers'), cf_vm_image)
-cli_command(__name__, 'vm image list-publishers', mgmt_path.format(op_var, op_class, 'list_publishers'), cf_vm_image)
-cli_command(__name__, 'vm image list-skus', mgmt_path.format(op_var, op_class, 'list_skus'), cf_vm_image)
-cli_command(__name__, 'vm image list', custom_path.format('list_vm_images'))
-
-# VM Usage
-cli_command(__name__, 'vm list-usage', mgmt_path.format('usage_operations', 'UsageOperations', 'list'), cf_usage, transform=transform_vm_usage_list,
- table_transformer='[].{Name:localName, CurrentValue:currentValue, Limit:limit}')
-
-# VMSS
-vmss_show_table_transform = '{Name:name, ResourceGroup:resourceGroup, Location:location, $zone$Capacity:sku.capacity, Overprovision:overprovision, UpgradePolicy:upgradePolicy.mode}'
-vmss_show_table_transform = vmss_show_table_transform.replace('$zone$', 'Zones: (!zones && \' \') || join(` `, zones), ' if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30') else ' ')
-cli_command(__name__, 'vmss delete', mgmt_path.format('virtual_machine_scale_sets_operations', 'VirtualMachineScaleSetsOperations', 'delete'), cf_vmss, no_wait_param='raw')
-cli_command(__name__, 'vmss list-skus', mgmt_path.format('virtual_machine_scale_sets_operations', 'VirtualMachineScaleSetsOperations', 'list_skus'), cf_vmss)
-
-cli_command(__name__, 'vmss list-instances', mgmt_path.format('virtual_machine_scale_set_vms_operations', 'VirtualMachineScaleSetVMsOperations', 'list'), cf_vmss_vm)
-
-cli_command(__name__, 'vmss create', custom_path.format('create_vmss'), transform=DeploymentOutputLongRunningOperation('Starting vmss create'), no_wait_param='no_wait', table_transformer=deployment_validate_table_format)
-cli_command(__name__, 'vmss deallocate', custom_path.format('deallocate_vmss'), no_wait_param='no_wait')
-cli_command(__name__, 'vmss delete-instances', custom_path.format('delete_vmss_instances'), no_wait_param='no_wait')
-cli_command(__name__, 'vmss get-instance-view', custom_path.format('get_vmss_instance_view'),
- table_transformer='{ProvisioningState:statuses[0].displayStatus, PowerState:statuses[1].displayStatus}')
-cli_command(__name__, 'vmss show', custom_path.format('show_vmss'), exception_handler=empty_on_404,
- table_transformer=vmss_show_table_transform)
-cli_command(__name__, 'vmss list', custom_path.format('list_vmss'), table_transformer='[].' + vmss_show_table_transform)
-cli_command(__name__, 'vmss stop', custom_path.format('stop_vmss'), no_wait_param='no_wait')
-cli_command(__name__, 'vmss restart', custom_path.format('restart_vmss'), no_wait_param='no_wait')
-cli_command(__name__, 'vmss start', custom_path.format('start_vmss'), no_wait_param='no_wait')
-cli_command(__name__, 'vmss update-instances', custom_path.format('update_vmss_instances'), no_wait_param='no_wait')
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- cli_command(__name__, 'vmss reimage', custom_path.format('reimage_vmss'), no_wait_param='no_wait')
-cli_command(__name__, 'vmss scale', custom_path.format('scale_vmss'), no_wait_param='no_wait')
-cli_command(__name__, 'vmss list-instance-connection-info', custom_path.format('list_vmss_instance_connection_info'))
-cli_command(__name__, 'vmss list-instance-public-ips', custom_path.format('list_vmss_instance_public_ips'))
-
-# VM Size
-cli_command(__name__, 'vm list-sizes', mgmt_path.format('virtual_machine_sizes_operations', 'VirtualMachineSizesOperations', 'list'), cf_vm_sizes)
-
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- # VM Disk
- disk_show_table_transform = '{Name:name, ResourceGroup:resourceGroup, Location:location, $zone$Sku:sku.name, OsType:osType, SizeGb:diskSizeGb, ProvisioningState:provisioningState}'
- disk_show_table_transform = disk_show_table_transform.replace('$zone$', 'Zones: (!zones && \' \') || join(` `, zones), ' if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30') else ' ')
- op_var = 'disks_operations'
- op_class = 'DisksOperations'
- cli_command(__name__, 'disk create', custom_path.format('create_managed_disk'), no_wait_param='no_wait', table_transformer=disk_show_table_transform)
- cli_command(__name__, 'disk list', custom_path.format('list_managed_disks'), table_transformer='[].' + disk_show_table_transform)
- cli_command(__name__, 'disk show', mgmt_path.format(op_var, op_class, 'get'), cf_disks, exception_handler=empty_on_404, table_transformer=disk_show_table_transform)
- cli_command(__name__, 'disk delete', mgmt_path.format(op_var, op_class, 'delete'), cf_disks, no_wait_param='raw', confirmation=True)
- cli_command(__name__, 'disk grant-access', custom_path.format('grant_disk_access'))
- cli_command(__name__, 'disk revoke-access', mgmt_path.format(op_var, op_class, 'revoke_access'), cf_disks)
- cli_generic_update_command(__name__, 'disk update', 'azure.mgmt.compute.operations.{}#{}.get'.format(op_var, op_class),
- 'azure.mgmt.compute.operations.{}#{}.create_or_update'.format(op_var, op_class),
- custom_function_op=custom_path.format('update_managed_disk'),
- setter_arg_name='disk', factory=cf_disks, no_wait_param='raw')
- cli_generic_wait_command(__name__, 'disk wait', 'azure.mgmt.compute.operations.{}#{}.get'.format(op_var, op_class), cf_disks)
-
- op_var = 'snapshots_operations'
- op_class = 'SnapshotsOperations'
- cli_command(__name__, 'snapshot create', custom_path.format('create_snapshot'))
- cli_command(__name__, 'snapshot list', custom_path.format('list_snapshots'))
- cli_command(__name__, 'snapshot show', mgmt_path.format(op_var, op_class, 'get'), cf_snapshots, exception_handler=empty_on_404)
- cli_command(__name__, 'snapshot delete', mgmt_path.format(op_var, op_class, 'delete'), cf_snapshots)
- cli_command(__name__, 'snapshot grant-access', custom_path.format('grant_snapshot_access'))
- cli_command(__name__, 'snapshot revoke-access', mgmt_path.format(op_var, op_class, 'revoke_access'), cf_snapshots)
- cli_generic_update_command(__name__, 'snapshot update', 'azure.mgmt.compute.operations.{}#{}.get'.format(op_var, op_class),
- 'azure.mgmt.compute.operations.{}#{}.create_or_update'.format(op_var, op_class),
- custom_function_op=custom_path.format('update_snapshot'),
- setter_arg_name='snapshot', factory=cf_snapshots)
-
-op_var = 'images_operations'
-op_class = 'ImagesOperations'
-cli_command(__name__, 'image create', custom_path.format('create_image'))
-cli_command(__name__, 'image list', custom_path.format('list_images'))
-cli_command(__name__, 'image show', mgmt_path.format(op_var, op_class, 'get'), cf_images, exception_handler=empty_on_404)
-cli_command(__name__, 'image delete', mgmt_path.format(op_var, op_class, 'delete'), cf_images)
-
-if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- cli_command(__name__, 'vm list-skus', custom_path.format('list_skus'), table_transformer=transform_sku_for_table_output)
- op_var = 'virtual_machine_run_commands_operations'
- op_class = 'VirtualMachineRunCommandsOperations'
- cli_command(__name__, 'vm run-command show', mgmt_path.format(op_var, op_class, 'get'), cf_run_commands)
- cli_command(__name__, 'vm run-command list', mgmt_path.format(op_var, op_class, 'list'), cf_run_commands)
- cli_command(__name__, 'vm run-command invoke', custom_path.format('run_command_invoke'))
-
- op_var = 'virtual_machine_scale_set_rolling_upgrades_operations'
- op_class = 'VirtualMachineScaleSetRollingUpgradesOperations'
- cli_command(__name__, 'vmss rolling-upgrade cancel', mgmt_path.format(op_var, op_class, 'cancel'), cf_rolling_upgrade_commands)
- cli_command(__name__, 'vmss rolling-upgrade get-latest', mgmt_path.format(op_var, op_class, 'get_latest'), cf_rolling_upgrade_commands)
- cli_command(__name__, 'vmss rolling-upgrade start', mgmt_path.format(op_var, op_class, 'start_os_upgrade'), cf_rolling_upgrade_commands)
-
-# MSI
-cli_command(__name__, 'vm assign-identity', custom_path.format('assign_vm_identity'))
-cli_command(__name__, 'vmss assign-identity', custom_path.format('assign_vmss_identity'))
+def load_command_table(self, args):
+
+ compute_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.vm.custom#{}')
+
+ compute_disk_encryption_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.vm.disk_encryption#{}')
+
+ compute_availset_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.availability_sets_operations#AvailabilitySetsOperations.{}',
+ client_factory=cf_avail_set
+ )
+
+ compute_disk_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.disks_operations#DisksOperations.{}',
+ client_factory=cf_disks
+ )
+
+ compute_image_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.images_operations#ImagesOperations.{}',
+ client_factory=cf_images
+ )
+
+ compute_snapshot_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.snapshots_operations#SnapshotsOperations.{}',
+ client_factory=cf_snapshots
+ )
+
+ compute_vm_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.virtual_machines_operations#VirtualMachinesOperations.{}',
+ client_factory=cf_vm
+ )
+
+ compute_vm_extension_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.virtual_machine_extensions_operations#VirtualMachineExtensionsOperations.{}',
+ client_factory=cf_vm_ext
+ )
+
+ compute_vm_extension_image_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.virtual_machine_extension_images_operations#VirtualMachineExtensionImagesOperations.{}',
+ client_factory=cf_vm_ext_image
+ )
+
+ compute_vm_image_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.virtual_machine_images_operations#VirtualMachineImagesOperations.{}',
+ client_factory=cf_vm_image
+ )
+
+ compute_vm_usage_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.usage_operations#UsageOperations.{}',
+ client_factory=cf_usage
+ )
+
+ compute_vm_run_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.virtual_machine_run_commands_operations#VirtualMachineRunCommandsOperations.{}',
+ client_factory=cf_run_commands
+ )
+
+ compute_vm_size_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.virtual_machine_sizes_operations#VirtualMachineSizesOperations.{}',
+ client_factory=cf_vm_sizes
+ )
+
+ compute_vmss_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.virtual_machine_scale_sets_operations#VirtualMachineScaleSetsOperations.{}',
+ client_factory=cf_vmss
+ )
+
+ compute_vmss_rolling_upgrade_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.compute.operations.virtual_machine_scale_set_rolling_upgrades_operations#VirtualMachineScaleSetRollingUpgradesOperations.{}',
+ client_factory=cf_rolling_upgrade_commands
+ )
+
+ network_nic_sdk = CliCommandType(
+ operations_tmpl='azure.mgmt.network.operations.network_interfaces_operations#NetworkInterfacesOperations{}',
+ client_factory=cf_ni
+ )
+
+ with self.command_group('disk', compute_disk_sdk, min_api='2017-03-30') as g:
+ g.custom_command('create', 'create_managed_disk', no_wait_param='no_wait', table_transformer=transform_disk_show_table_output, validator=process_disk_or_snapshot_create_namespace)
+ g.command('delete', 'delete', no_wait_param='raw', confirmation=True)
+ g.custom_command('grant-access', 'grant_disk_access')
+ g.custom_command('list', 'list_managed_disks', table_transformer='[].' + transform_disk_show_table_output)
+ g.command('revoke-access', 'revoke_access')
+ g.command('show', 'get', exception_handler=empty_on_404, table_transformer=transform_disk_show_table_output)
+ g.generic_update_command('update', custom_func_name='update_managed_disk', setter_arg_name='disk', no_wait_param='raw')
+ g.generic_wait_command('wait')
+
+ with self.command_group('image', compute_image_sdk) as g:
+ g.custom_command('create', 'create_image')
+ g.custom_command('list', 'list_images')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('delete', 'delete')
+
+ with self.command_group('snapshot', compute_snapshot_sdk) as g:
+ g.custom_command('create', 'create_snapshot', validator=process_disk_or_snapshot_create_namespace)
+ g.command('delete', 'delete')
+ g.custom_command('grant-access', 'grant_snapshot_access')
+ g.custom_command('list', 'list_snapshots')
+ g.command('revoke-access', 'revoke_access')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.generic_update_command('update', custom_func_name='update_snapshot', setter_arg_name='snapshot')
+
+ with self.command_group('vm', compute_vm_sdk) as g:
+ g.custom_command('assign-identity', 'assign_vm_identity', validator=process_assign_identity_namespace)
+ g.custom_command('capture', 'capture_vm')
+ g.custom_command('create', 'create_vm', transform=transform_vm_create_output, no_wait_param='no_wait', table_transformer=deployment_validate_table_format, validator=process_vm_create_namespace)
+ g.command('convert', 'convert_to_managed_disks', min_api='2016-04-30-preview')
+ g.command('deallocate', 'deallocate', no_wait_param='raw')
+ g.command('delete', 'delete', confirmation=True, no_wait_param='raw')
+ g.custom_command('format-secret', 'get_vm_format_secret', deprecate_info='az vm secret format')
+ g.command('generalize', 'generalize', no_wait_param='raw')
+ g.custom_command('get-instance-view', 'get_instance_view', table_transformer='{Name:name, ResourceGroup:resourceGroup, Location:location, ProvisioningState:provisioningState, PowerState:instanceView.statuses[1].displayStatus}')
+ g.custom_command('list', 'list_vm', table_transformer=transform_vm_list)
+ g.custom_command('list-ip-addresses', 'list_vm_ip_addresses', table_transformer=transform_ip_addresses)
+ g.command('list-sizes', 'list', command_type=compute_vm_size_sdk)
+ g.custom_command('list-skus', 'list_skus', table_transformer=transform_sku_for_table_output, min_api='2017-03-30')
+ g.command('list-usage', 'list', command_type=compute_vm_usage_sdk, transform=transform_vm_usage_list, table_transformer='[].{Name:localName, CurrentValue:currentValue, Limit:limit}')
+ g.command('list-vm-resize-options', 'list_available_sizes')
+ g.custom_command('open-port', 'open_vm_port')
+ g.command('perform-maintenance', 'perform_maintenance', min_api='2017-03-30')
+ g.command('redeploy', 'redeploy', no_wait_param='raw')
+ g.custom_command('resize', 'resize_vm', no_wait_param='no_wait')
+ g.command('restart', 'restart', no_wait_param='raw')
+ g.custom_command('show', 'show_vm', table_transformer=transform_vm, exception_handler=empty_on_404)
+ g.command('start', 'start', no_wait_param='raw')
+ g.command('stop', 'power_off', no_wait_param='raw')
+ g.generic_update_command('update', no_wait_param='raw')
+ g.generic_wait_command('wait', 'azure.cli.command_modules.vm.custom#get_instance_view')
+
+ with self.command_group('vm availability-set', compute_availset_sdk) as g:
+ g.custom_command('convert', 'convert_av_set_to_managed_disk', min_api='2016-04-30-preview')
+ g.custom_command('create', 'create_av_set', table_transformer=deployment_validate_table_format, no_wait_param='no_wait')
+ g.command('delete', 'delete')
+ g.command('list', 'list')
+ g.command('list-sizes', 'list_available_sizes')
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.generic_update_command('update')
+
+ with self.command_group('vm boot-diagnostics', compute_vm_sdk) as g:
+ g.custom_command('disable', 'disable_boot_diagnostics')
+ g.custom_command('enable', 'enable_boot_diagnostics')
+ g.custom_command('get-boot-log', 'get_boot_log')
+
+ with self.command_group('vm diagnostics', compute_vm_sdk) as g:
+ g.custom_command('set', 'set_diagnostics_extension')
+ g.custom_command('get-default-config', 'show_default_diagnostics_configuration')
+
+ with self.command_group('vm disk', compute_vm_sdk, min_api='2017-03-30') as g:
+ g.custom_command('attach', 'attach_managed_data_disk')
+ g.custom_command('detach', 'detach_data_disk')
+
+ with self.command_group('vm encryption', custom_command_type=compute_disk_encryption_custom) as g:
+ g.custom_command('enable', 'encrypt_vm', validator=process_disk_encryption_namespace)
+ g.custom_command('disable', 'decrypt_vm')
+ g.custom_command('show', 'show_vm_encryption_status', exception_handler=empty_on_404)
+
+ with self.command_group('vm extension', compute_vm_extension_sdk) as g:
+ g.command('delete', 'delete')
+ g.command('show', 'get', exception_handler=empty_on_404, table_transformer=transform_extension_show_table_output)
+ g.custom_command('set', 'set_extension')
+ g.custom_command('list', 'list_extensions', table_transformer='[].' + transform_extension_show_table_output)
+
+ with self.command_group('vm extension image', compute_vm_extension_image_sdk) as g:
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list-names', 'list_types')
+ g.command('list-versions', 'list_versions')
+ g.custom_command('list', 'list_vm_extension_images')
+
+ with self.command_group('vm image', compute_vm_image_sdk) as g:
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list-offers', 'list_offers')
+ g.command('list-publishers', 'list_publishers')
+ g.command('list-skus', 'list_skus')
+ g.custom_command('list', 'list_vm_images')
+
+ with self.command_group('vm nic', compute_vm_sdk) as g:
+ g.custom_command('add', 'add_vm_nic')
+ g.custom_command('remove', 'remove_vm_nic')
+ g.custom_command('set', 'set_vm_nic')
+ g.custom_command('show', 'show_vm_nic', exception_handler=empty_on_404)
+ g.custom_command('list', 'list_vm_nics')
+
+ with self.command_group('vm run-command', compute_vm_run_sdk) as g:
+ g.custom_command('invoke', 'run_command_invoke')
+ g.command('list', 'list')
+ g.command('show', 'get')
+
+ with self.command_group('vm secret', compute_vm_sdk) as g:
+ g.custom_command('format', 'get_vm_format_secret')
+ g.custom_command('add', 'add_vm_secret', validator=process_vm_secret_namespace)
+ g.custom_command('list', 'list_vm_secrets')
+ g.custom_command('remove', 'remove_vm_secret', validator=process_vm_secret_namespace)
+
+ with self.command_group('vm unmanaged-disk', compute_vm_sdk) as g:
+ g.custom_command('attach', 'attach_unmanaged_data_disk')
+ g.custom_command('detach', 'detach_data_disk')
+ g.custom_command('list', 'list_unmanaged_disks')
+
+ with self.command_group('vm user', compute_vm_sdk, no_wait_param='no_wait') as g:
+ g.custom_command('update', 'set_user')
+ g.custom_command('delete', 'delete_user')
+ g.custom_command('reset-ssh', 'reset_linux_ssh')
+
+ with self.command_group('vmss', compute_vmss_sdk) as g:
+ g.custom_command('assign-identity', 'assign_vmss_identity', validator=process_assign_identity_namespace)
+ g.custom_command('create', 'create_vmss', transform=DeploymentOutputLongRunningOperation(self.cli_ctx, 'Starting vmss create'), no_wait_param='no_wait', table_transformer=deployment_validate_table_format, validator=process_vmss_create_namespace)
+ g.custom_command('deallocate', 'deallocate_vmss', no_wait_param='no_wait')
+ g.command('delete', 'delete', no_wait_param='raw')
+ g.custom_command('delete-instances', 'delete_vmss_instances', no_wait_param='no_wait')
+ g.custom_command('get-instance-view', 'get_vmss_instance_view', table_transformer='{ProvisioningState:statuses[0].displayStatus, PowerState:statuses[1].displayStatus}')
+ g.custom_command('list', 'list_vmss', table_transformer=get_vmss_table_output_transformer(self))
+ g.command('list-instances', 'list')
+ g.custom_command('list-instance-connection-info', 'list_vmss_instance_connection_info')
+ g.custom_command('list-instance-public-ips', 'list_vmss_instance_public_ips')
+ g.command('list-skus', 'list_skus')
+ g.custom_command('reimage', 'reimage_vmss', no_wait_param='no_wait', min_api='2017-03-30')
+ g.custom_command('restart', 'restart_vmss', no_wait_param='no_wait')
+ g.custom_command('scale', 'scale_vmss', no_wait_param='no_wait')
+ g.custom_command('show', 'show_vmss', exception_handler=empty_on_404, table_transformer=get_vmss_table_output_transformer(self, False))
+ g.custom_command('start', 'start_vmss', no_wait_param='no_wait')
+ g.custom_command('stop', 'stop_vmss', no_wait_param='no_wait')
+ g.generic_update_command('update', getter_name='get_vmss', setter_name='set_vmss', no_wait_param='no_wait', command_type=compute_custom)
+ g.custom_command('update-instances', 'update_vmss_instances', no_wait_param='no_wait')
+ g.generic_wait_command('wait', getter_name='get_vmss', command_type=compute_custom)
+
+ with self.command_group('vmss diagnostics', compute_vmss_sdk) as g:
+ g.custom_command('set', 'set_vmss_diagnostics_extension')
+ g.custom_command('get-default-config', 'show_default_diagnostics_configuration')
+
+ with self.command_group('vmss disk', compute_vmss_sdk, min_api='2017-03-30') as g:
+ g.command('attach', 'attach_managed_data_disk_to_vmss')
+ g.command('detach', 'detach_disk_from_vmss')
+
+ with self.command_group('vmss encryption', custom_command_type=compute_disk_encryption_custom, min_api='2017-03-30') as g:
+ g.custom_command('enable', 'encrypt_vmss', validator=process_disk_encryption_namespace)
+ g.custom_command('disable', 'decrypt_vmss')
+ g.custom_command('show', 'show_vmss_encryption_status', exception_handler=empty_on_404)
+
+ with self.command_group('vmss extension', compute_vmss_sdk) as g:
+ g.custom_command('delete', 'delete_vmss_extension')
+ g.custom_command('show', 'get_vmss_extension', exception_handler=empty_on_404)
+ g.custom_command('set', 'set_vmss_extension')
+ g.custom_command('list', 'list_vmss_extensions')
+
+ with self.command_group('vmss extension image', compute_vm_extension_image_sdk) as g:
+ g.command('show', 'get', exception_handler=empty_on_404)
+ g.command('list-names', 'list_types')
+ g.command('list-versions', 'list_versions')
+ g.custom_command('list', 'list_vm_extension_images')
+
+ with self.command_group('vmss nic', network_nic_sdk) as g:
+ g.command('list', 'list_virtual_machine_scale_set_network_interfaces')
+ g.command('list-vm-nics', 'list_virtual_machine_scale_set_vm_network_interfaces')
+ g.command('show', 'get_virtual_machine_scale_set_network_interface', exception_handler=empty_on_404)
+
+ with self.command_group('vmss rolling-upgrade', compute_vmss_rolling_upgrade_sdk) as g:
+ g.command('cancel', 'cancel')
+ g.command('get-latest', 'get_latest')
+ g.command('start', 'start_os_upgrade')
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 10fd440c4e1..f7ea9dd7f9f 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
@@ -22,68 +22,24 @@
from azure.cli.core.commands import LongRunningOperation, DeploymentOutputLongRunningOperation
from azure.cli.core.commands.client_factory import get_mgmt_service_client, get_data_service_client
-from azure.cli.core.util import CLIError
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.profiles import get_sdk, ResourceType, supported_api_version
+from azure.cli.core.profiles import ResourceType
-from msrestazure.tools import parse_resource_id, resource_id, is_valid_resource_id
+from knack.log import get_logger
+from knack.util import CLIError
+
+from msrestazure.tools import resource_id, is_valid_resource_id, parse_resource_id
from ._vm_utils import read_content_if_is_file
from ._vm_diagnostics_templates import get_default_diag_config
-from ._actions import (load_images_from_aliases_doc,
- load_extension_images_thru_services,
- load_images_thru_services)
+from ._actions import load_images_from_aliases_doc, load_extension_images_thru_services, load_images_thru_services
from ._client_factory import _compute_client_factory, cf_public_ip_addresses
-logger = azlogging.get_az_logger(__name__)
+logger = get_logger(__name__)
_MSI_PORT = 50342
_MSI_EXTENSION_VERSION = '1.0'
-CachingTypes, VirtualHardDisk, VirtualMachineScaleSet, VirtualMachineCaptureParameters, \
- VirtualMachineScaleSetExtension, VirtualMachineScaleSetExtensionProfile = get_sdk(
- ResourceType.MGMT_COMPUTE,
- 'CachingTypes', 'VirtualHardDisk', 'VirtualMachineScaleSet', 'VirtualMachineCaptureParameters',
- 'VirtualMachineScaleSetExtension', 'VirtualMachineScaleSetExtensionProfile',
- mod='models')
-
-
-def get_resource_group_location(resource_group_name):
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES)
- # pylint: disable=no-member
- return client.resource_groups.get(resource_group_name).location
-
-
-def get_vm(resource_group_name, vm_name, expand=None):
- '''Retrieves a VM'''
- client = _compute_client_factory()
- return client.virtual_machines.get(resource_group_name,
- vm_name,
- expand=expand)
-
-
-def set_vm(instance, lro_operation=None, no_wait=False):
- '''Update the given Virtual Machine instance'''
- instance.resources = None # Issue: https://github.com/Azure/autorest/issues/934
- client = _compute_client_factory()
- parsed_id = _parse_rg_name(instance.id)
- poller = client.virtual_machines.create_or_update(
- resource_group_name=parsed_id[0],
- vm_name=parsed_id[1],
- parameters=instance, raw=no_wait)
- if lro_operation:
- return lro_operation(poller)
-
- return LongRunningOperation()(poller)
-
-
-def _parse_rg_name(strid):
- '''From an ID, extract the contained (resource group, name) tuple
- '''
- parts = parse_resource_id(strid)
- return (parts['resource_group'], parts['name'])
-
# Use the same name by portal, so people can update from both cli and portal
# (VM doesn't allow multiple handlers for the same extension)
@@ -113,6 +69,28 @@ def _parse_rg_name(strid):
}
+def _construct_identity_info(identity_scope, identity_role, port):
+ return {
+ 'scope': identity_scope or '',
+ 'role': str(identity_role), # could be DefaultStr, so convert to string
+ 'port': port
+ }
+
+
+def _detect_os_type_for_diagnostics_ext(os_profile):
+ is_linux_os = bool(os_profile.linux_configuration)
+ is_windows_os = bool(os_profile.windows_configuration)
+ if not is_linux_os and not is_windows_os:
+ raise CLIError('Diagnostics extension can only be installed on Linux or Windows VM')
+ return is_linux_os
+
+
+# for injecting test seams to produce predicatable role assignment id for playback
+def _gen_guid():
+ import uuid
+ return uuid.uuid4()
+
+
def _get_access_extension_upgrade_info(extensions, name):
version = extension_mappings[name]['version']
publisher = extension_mappings[name]['publisher']
@@ -130,182 +108,160 @@ def _get_access_extension_upgrade_info(extensions, name):
return publisher, version, auto_upgrade
-def _get_storage_management_client():
- return get_mgmt_service_client(ResourceType.MGMT_STORAGE)
+def _get_extension_instance_name(instance_view, publisher, extension_type_name,
+ suggested_name=None):
+ extension_instance_name = suggested_name or extension_type_name
+ full_type_name = '.'.join([publisher, extension_type_name])
+ if instance_view.extensions:
+ ext = next((x for x in instance_view.extensions
+ if x.type and (x.type.lower() == full_type_name.lower())), None)
+ if ext:
+ extension_instance_name = ext.name
+ return extension_instance_name
-def _trim_away_build_number(version):
- # workaround a known issue: the version must only contain "major.minor", even though
- # "extension image list" gives more detail
- return '.'.join(version.split('.')[0:2])
+def _get_storage_management_client(cli_ctx):
+ return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_STORAGE)
-# Hide extension information from output as the info is not correct and unhelpful; also
-# commands using it mean to hide the extension concept from users.
+def _get_disk_lun(data_disks):
+ # start from 0, search for unused int for lun
+ if not data_disks:
+ return 0
+ existing_luns = sorted([d.lun for d in data_disks])
+ for i, current in enumerate(existing_luns):
+ if current != i:
+ return i
+ return len(existing_luns)
-class ExtensionUpdateLongRunningOperation(LongRunningOperation): # pylint: disable=too-few-public-methods
- def __call__(self, poller):
- super(ExtensionUpdateLongRunningOperation, self).__call__(poller)
- # That said, we surppress the output. Operation failures will still
- # be caught through the base class
- return None
+def _get_private_config(cli_ctx, resource_group_name, storage_account):
+ storage_mgmt_client = _get_storage_management_client(cli_ctx)
+ # pylint: disable=no-member
+ keys = storage_mgmt_client.storage_accounts.list_keys(resource_group_name, storage_account).keys
-def list_vm(resource_group_name=None, show_details=False):
- ''' List Virtual Machines. '''
- ccf = _compute_client_factory()
- vm_list = ccf.virtual_machines.list(resource_group_name=resource_group_name) \
- if resource_group_name else ccf.virtual_machines.list_all()
- if show_details:
- return [get_vm_details(_parse_rg_name(v.id)[0], v.name) for v in vm_list]
+ private_config = {
+ 'storageAccountName': storage_account,
+ 'storageAccountKey': keys[0].value
+ }
+ return private_config
- return list(vm_list)
+def _get_resource_group_location(cli_ctx, resource_group_name):
+ client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
+ # pylint: disable=no-member
+ return client.resource_groups.get(resource_group_name).location
-def show_vm(resource_group_name, vm_name, show_details=False):
- return get_vm_details(resource_group_name, vm_name) if show_details else get_vm(resource_group_name, vm_name)
+def _get_sku_object(cmd, sku):
+ if cmd.supported_api_version(min_api='2017-03-30'):
+ DiskSku = cmd.get_models('DiskSku')
+ return DiskSku(sku)
+ return sku
-def get_vm_details(resource_group_name, vm_name):
- result = get_instance_view(resource_group_name, vm_name)
- network_client = get_mgmt_service_client(ResourceType.MGMT_NETWORK)
- public_ips = []
- fqdns = []
- private_ips = []
- mac_addresses = []
- # pylint: disable=line-too-long,no-member
- for nic_ref in result.network_profile.network_interfaces:
- nic_parts = parse_resource_id(nic_ref.id)
- nic = network_client.network_interfaces.get(nic_parts['resource_group'], nic_parts['name'])
- if nic.mac_address:
- mac_addresses.append(nic.mac_address)
- for ip_configuration in nic.ip_configurations:
- if ip_configuration.private_ip_address:
- private_ips.append(ip_configuration.private_ip_address)
- if ip_configuration.public_ip_address:
- res = parse_resource_id(ip_configuration.public_ip_address.id)
- public_ip_info = network_client.public_ip_addresses.get(res['resource_group'],
- res['name'])
- if public_ip_info.ip_address:
- public_ips.append(public_ip_info.ip_address)
- if public_ip_info.dns_settings:
- fqdns.append(public_ip_info.dns_settings.fqdn)
- setattr(result, 'power_state',
- ','.join([s.display_status for s in result.instance_view.statuses if s.code.startswith('PowerState/')]))
- setattr(result, 'public_ips', ','.join(public_ips))
- setattr(result, 'fqdns', ','.join(fqdns))
- setattr(result, 'private_ips', ','.join(private_ips))
- setattr(result, 'mac_addresses', ','.join(mac_addresses))
- del result.instance_view # we don't need other instance_view info as people won't care
- return result
+def _grant_access(cmd, resource_group_name, name, duration_in_seconds, is_disk):
+ AccessLevel = cmd.get_models('AccessLevel')
+ client = _compute_client_factory(cmd.cli_ctx)
+ op = client.disks if is_disk else client.snapshots
+ return op.grant_access(resource_group_name, name, AccessLevel.read, duration_in_seconds)
-def list_vm_images(image_location=None, publisher_name=None, offer=None, sku=None,
- all=False): # pylint: disable=redefined-builtin
- '''vm image list
- :param str image_location:Image location
- :param str publisher_name:Image publisher name, partial name is accepted
- :param str offer:Image offer name, partial name is accepted
- :param str sku:Image sku name, partial name is accepted
- :param bool all:Retrieve image list from live Azure service rather using an offline image list
- '''
- load_thru_services = all
+def _is_linux_vm(vm):
+ os_type = vm.storage_profile.os_disk.os_type.value
+ return os_type.lower() == 'linux'
- if load_thru_services:
- if not publisher_name and not offer and not sku:
- logger.warning("You are retrieving all the images from server which could take more than a minute. "
- "To shorten the wait, provide '--publisher', '--offer' or '--sku'. Partial name search "
- "is supported.")
- all_images = load_images_thru_services(publisher_name, offer, sku, image_location)
- else:
- all_images = load_images_from_aliases_doc(publisher_name, offer, sku)
- logger.warning(
- 'You are viewing an offline list of images, use --all to retrieve an up-to-date list')
- for i in all_images:
- i['urn'] = ':'.join([i['publisher'], i['offer'], i['sku'], i['version']])
- return all_images
+def _merge_secrets(secrets):
+ """
+ Merge a list of secrets. Each secret should be a dict fitting the following JSON structure:
+ [{ "sourceVault": { "id": "value" },
+ "vaultCertificates": [{ "certificateUrl": "value",
+ "certificateStore": "cert store name (only on windows)"}] }]
+ The array of secrets is merged on sourceVault.id.
+ :param secrets:
+ :return:
+ """
+ merged = {}
+ vc_name = 'vaultCertificates'
+ for outer in secrets:
+ for secret in outer:
+ if secret['sourceVault']['id'] not in merged:
+ merged[secret['sourceVault']['id']] = []
+ merged[secret['sourceVault']['id']] = \
+ secret[vc_name] + merged[secret['sourceVault']['id']]
+ # transform the reduced map to vm format
+ formatted = [{'sourceVault': {'id': source_id},
+ 'vaultCertificates': value}
+ for source_id, value in list(merged.items())]
+ return formatted
-def list_vm_extension_images(
- image_location=None, publisher_name=None, name=None, version=None, latest=False):
- '''vm extension image list
- :param str image_location:Image location
- :param str publisher_name:Image publisher name
- :param str name:Image name
- :param str version:Image version
- :param bool latest: Show the latest version only.
- '''
- return load_extension_images_thru_services(
- publisher_name, name, version, image_location, latest)
+def _normalize_extension_version(cli_ctx, publisher, vm_extension_name, version, location):
-def list_ip_addresses(resource_group_name=None, vm_name=None):
- ''' Get IP addresses from one or more Virtual Machines
- :param str resource_group_name:Name of resource group.
- :param str vm_name:Name of virtual machine.
- '''
- # We start by getting NICs as they are the smack in the middle of all data that we
- # want to collect for a VM (as long as we don't need any info on the VM than what
- # is available in the Id, we don't need to make any calls to the compute RP)
- #
- # Since there is no guarantee that a NIC is in the same resource group as a given
- # Virtual Machine, we can't constrain the lookup to only a single group...
- network_client = get_mgmt_service_client(ResourceType.MGMT_NETWORK)
- nics = network_client.network_interfaces.list_all()
- public_ip_addresses = network_client.public_ip_addresses.list_all()
+ def _trim_away_build_number(version):
+ # workaround a known issue: the version must only contain "major.minor", even though
+ # "extension image list" gives more detail
+ return '.'.join(version.split('.')[0:2])
- ip_address_lookup = {pip.id: pip for pip in list(public_ip_addresses)}
+ if not version:
+ result = load_extension_images_thru_services(cli_ctx, publisher, vm_extension_name, None, location,
+ show_latest=True)
+ if not result:
+ raise CLIError('Failed to find the latest version for the extension "{}"'.format(vm_extension_name))
- result = []
- for nic in [n for n in list(nics) if n.virtual_machine]:
- nic_resource_group, nic_vm_name = _parse_rg_name(nic.virtual_machine.id)
+ # with 'show_latest' enabled, we will only get one result.
+ version = result[0]['version']
- # If provided, make sure that resource group name and vm name match the NIC we are
- # looking at before adding it to the result...
- same_resource_group_name = (resource_group_name is None or
- resource_group_name.lower() == nic_resource_group.lower())
- same_vm_name = (vm_name is None or
- vm_name.lower() == nic_vm_name.lower())
- if same_resource_group_name and same_vm_name:
- network_info = {
- 'privateIpAddresses': [],
- 'publicIpAddresses': []
- }
- for ip_configuration in nic.ip_configurations:
- network_info['privateIpAddresses'].append(ip_configuration.private_ip_address)
- if ip_configuration.public_ip_address:
- public_ip_address = ip_address_lookup[ip_configuration.public_ip_address.id]
- network_info['publicIpAddresses'].append({
- 'id': public_ip_address.id,
- 'name': public_ip_address.name,
- 'ipAddress': public_ip_address.ip_address,
- 'ipAllocationMethod': public_ip_address.public_ip_allocation_method
- })
+ version = _trim_away_build_number(version)
+ return version
- result.append({
- 'virtualMachine': {
- 'resourceGroup': nic_resource_group,
- 'name': nic_vm_name,
- 'network': network_info
- }
- })
- return result
+def _parse_rg_name(strid):
+ '''From an ID, extract the contained (resource group, name) tuple.'''
+ parts = parse_resource_id(strid)
+ return (parts['resource_group'], parts['name'])
+
+
+def _set_sku(cmd, instance, sku):
+ if cmd.supported_api_version(min_api='2017-03-30'):
+ instance.sku = cmd.get_models('DiskSku')(sku)
+ else:
+ instance.account_type = sku
+
+
+def _show_missing_access_warning(resource_group, name, command):
+ warn = ("No access was given yet to the '{1}', because '--scope' was not provided. "
+ "You should setup by creating a role assignment, e.g. "
+ "'az role assignment create --assignee --role contributor -g {0}' "
+ "would let it access the current resource group. To get the pricipal id, run "
+ "'az {2} show -g {0} -n {1} --query \"identity.principalId\" -otsv'".format(resource_group, name, command))
+ logger.warning(warn)
-def create_managed_disk(resource_group_name, disk_name, location=None,
+# Hide extension information from output as the info is not correct and unhelpful; also
+# commands using it mean to hide the extension concept from users.
+
+
+class ExtensionUpdateLongRunningOperation(LongRunningOperation): # pylint: disable=too-few-public-methods
+ def __call__(self, poller):
+ super(ExtensionUpdateLongRunningOperation, self).__call__(poller)
+ # That said, we surppress the output. Operation failures will still
+ # be caught through the base class
+ return None
+
+# region Disks (Managed)
+def create_managed_disk(cmd, resource_group_name, disk_name, location=None,
size_gb=None, sku='Premium_LRS',
source=None, # pylint: disable=unused-argument
# below are generated internally from 'source'
source_blob_uri=None, source_disk=None, source_snapshot=None,
source_storage_account_id=None, no_wait=False, tags=None, zone=None):
- Disk, CreationData, DiskCreateOption = get_sdk(ResourceType.MGMT_COMPUTE, 'Disk', 'CreationData',
- 'DiskCreateOption', mod='models')
+ Disk, CreationData, DiskCreateOption = cmd.get_models('Disk', 'CreationData', 'DiskCreateOption')
- location = location or get_resource_group_location(resource_group_name)
+ location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name)
if source_blob_uri:
option = DiskCreateOption.import_enum
elif source_disk or source_snapshot:
@@ -320,107 +276,94 @@ def create_managed_disk(resource_group_name, disk_name, location=None,
if size_gb is None and option == DiskCreateOption.empty:
raise CLIError('usage error: --size-gb required to create an empty disk')
- disk = Disk(location, creation_data, (tags or {}), _get_sku_object(sku), disk_size_gb=size_gb)
+ disk = Disk(location, creation_data, (tags or {}), _get_sku_object(cmd, sku), disk_size_gb=size_gb)
if zone:
disk.zones = zone
- client = _compute_client_factory()
+ client = _compute_client_factory(cmd.cli_ctx)
return client.disks.create_or_update(resource_group_name, disk_name, disk, raw=no_wait)
-def update_managed_disk(instance, size_gb=None, sku=None):
+def grant_disk_access(cmd, resource_group_name, disk_name, duration_in_seconds):
+ return _grant_access(cmd, resource_group_name, disk_name, duration_in_seconds, True)
+
+
+def list_managed_disks(cmd, resource_group_name=None):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if resource_group_name:
+ return client.disks.list_by_resource_group(resource_group_name)
+ return client.disks.list()
+
+
+def update_managed_disk(cmd, instance, size_gb=None, sku=None):
if size_gb is not None:
instance.disk_size_gb = size_gb
if sku is not None:
- _set_sku(instance, sku)
+ _set_sku(cmd, instance, sku)
return instance
+# endregion
-def attach_managed_data_disk(resource_group_name, vm_name, disk,
- new=False, sku=None, size_gb=None, lun=None, caching=None):
- '''attach a managed disk'''
- vm = get_vm(resource_group_name, vm_name)
- DataDisk, ManagedDiskParameters, DiskCreateOption = get_sdk(ResourceType.MGMT_COMPUTE, 'DataDisk',
- 'ManagedDiskParameters', 'DiskCreateOptionTypes',
- mod='models')
+# 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,
+ os_blob_uri=None, data_blob_uris=None,
+ os_snapshot=None, data_snapshots=None,
+ os_disk=None, data_disks=None, tags=None):
+ ImageOSDisk, ImageDataDisk, ImageStorageProfile, Image, SubResource, OperatingSystemStateTypes = cmd.get_models(
+ 'ImageOSDisk', 'ImageDataDisk', 'ImageStorageProfile', 'Image', 'SubResource', 'OperatingSystemStateTypes')
- # pylint: disable=no-member
- if lun is None:
- luns = ([d.lun for d in vm.storage_profile.data_disks]
- if vm.storage_profile.data_disks else [])
- lun = max(luns) + 1 if luns else 0
- if new:
- if not size_gb:
- raise CLIError('usage error: --size-gb required to create an empty disk for attach')
- data_disk = DataDisk(lun, DiskCreateOption.empty,
- name=parse_resource_id(disk)['name'],
- disk_size_gb=size_gb, caching=caching,
- managed_disk=ManagedDiskParameters(storage_account_type=sku))
+ if source_virtual_machine:
+ location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name)
+ image = Image(location, source_virtual_machine=SubResource(source_virtual_machine))
else:
- params = ManagedDiskParameters(id=disk, storage_account_type=sku)
- data_disk = DataDisk(lun, DiskCreateOption.attach, managed_disk=params, caching=caching)
-
- vm.storage_profile.data_disks.append(data_disk)
- set_vm(vm)
-
-
-def detach_data_disk(resource_group_name, vm_name, disk_name):
- # here we handle both unmanaged or managed disk
- vm = get_vm(resource_group_name, vm_name)
- # pylint: disable=no-member
- leftovers = [d for d in vm.storage_profile.data_disks if d.name.lower() != disk_name.lower()]
- if len(vm.storage_profile.data_disks) == len(leftovers):
- raise CLIError("No disk with the name '{}' was found".format(disk_name))
- vm.storage_profile.data_disks = leftovers
- set_vm(vm)
-
-
-def attach_managed_data_disk_to_vmss(resource_group_name, vmss_name, size_gb, lun=None,
- caching=None):
- DiskCreateOptionTypes, VirtualMachineScaleSetDataDisk = get_sdk(ResourceType.MGMT_COMPUTE, 'DiskCreateOptionTypes',
- 'VirtualMachineScaleSetDataDisk', mod='models')
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name,
- vmss_name)
- # pylint: disable=no-member
- data_disks = vmss.virtual_machine_profile.storage_profile.data_disks or []
- if lun is None:
- luns = [d.lun for d in data_disks]
- lun = max(luns) + 1 if luns else 0
- data_disk = VirtualMachineScaleSetDataDisk(lun, DiskCreateOptionTypes.empty,
- disk_size_gb=size_gb, caching=caching)
- data_disks.append(data_disk)
- vmss.virtual_machine_profile.storage_profile.data_disks = data_disks
- return client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss)
+ os_disk = ImageOSDisk(os_type=os_type,
+ os_state=OperatingSystemStateTypes.generalized,
+ snapshot=SubResource(os_snapshot) if os_snapshot else None,
+ managed_disk=SubResource(os_disk) if os_disk else None,
+ blob_uri=os_blob_uri)
+ all_data_disks = []
+ lun = 0
+ if data_blob_uris:
+ for d in data_blob_uris:
+ all_data_disks.append(ImageDataDisk(lun, blob_uri=d))
+ lun += 1
+ if data_snapshots:
+ for d in data_snapshots:
+ all_data_disks.append(ImageDataDisk(lun, snapshot=SubResource(d)))
+ lun += 1
+ if data_disks:
+ for d in data_disks:
+ all_data_disks.append(ImageDataDisk(lun, managed_disk=SubResource(d)))
+ lun += 1
+ image_storage_profile = image_storage_profile = ImageStorageProfile(os_disk=os_disk, data_disks=all_data_disks)
+ location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name)
+ # pylint disable=no-member
+ image = Image(location, storage_profile=image_storage_profile, tags=(tags or {}))
-def detach_disk_from_vmss(resource_group_name, vmss_name, lun):
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name,
- vmss_name)
- # pylint: disable=no-member
- data_disks = vmss.virtual_machine_profile.storage_profile.data_disks
- leftovers = [d for d in data_disks if d.lun != lun]
- if len(data_disks) == len(leftovers):
- raise CLIError("Could not find the data disk with lun '{}'".format(lun))
- vmss.virtual_machine_profile.storage_profile.data_disks = leftovers
- return client.virtual_machine_scale_sets.create_or_update(resource_group_name,
- vmss_name, vmss)
+ client = _compute_client_factory(cmd.cli_ctx)
+ return client.images.create_or_update(resource_group_name, name, image)
-def grant_disk_access(resource_group_name, disk_name, duration_in_seconds):
- return _grant_access(resource_group_name, disk_name, duration_in_seconds, True)
+def list_images(cmd, resource_group_name=None):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if resource_group_name:
+ return client.images.list_by_resource_group(resource_group_name)
+ return client.images.list()
+# endregion
-def create_snapshot(resource_group_name, snapshot_name, location=None, size_gb=None, sku='Standard_LRS',
+# region Snapshots
+def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size_gb=None, sku='Standard_LRS',
source=None, # pylint: disable=unused-argument
# below are generated internally from 'source'
source_blob_uri=None, source_disk=None, source_snapshot=None, source_storage_account_id=None,
tags=None):
- Snapshot, CreationData, DiskCreateOption = get_sdk(ResourceType.MGMT_COMPUTE, 'Snapshot', 'CreationData',
- 'DiskCreateOption', mod='models')
+ Snapshot, CreationData, DiskCreateOption = cmd.get_models('Snapshot', 'CreationData', 'DiskCreateOption')
- location = location or get_resource_group_location(resource_group_name)
+ location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name)
if source_blob_uri:
option = DiskCreateOption.import_enum
elif source_disk or source_snapshot:
@@ -436,335 +379,526 @@ def create_snapshot(resource_group_name, snapshot_name, location=None, size_gb=N
if size_gb is None and option == DiskCreateOption.empty:
raise CLIError('Please supply size for the snapshots')
- snapshot = Snapshot(location, creation_data, (tags or {}), _get_sku_object(sku), disk_size_gb=size_gb)
- client = _compute_client_factory()
+ snapshot = Snapshot(location, creation_data, (tags or {}), _get_sku_object(cmd, sku), disk_size_gb=size_gb)
+ client = _compute_client_factory(cmd.cli_ctx)
return client.snapshots.create_or_update(resource_group_name, snapshot_name, snapshot)
-def _get_sku_object(sku):
- if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- DiskSku = get_sdk(ResourceType.MGMT_COMPUTE, 'DiskSku', mod='models')
- return DiskSku(sku)
- return sku
-
-
-def _set_sku(instance, sku):
- if supported_api_version(ResourceType.MGMT_COMPUTE, min_api='2017-03-30'):
- instance.sku = get_sdk(ResourceType.MGMT_COMPUTE, 'DiskSku', mod='models')(sku)
- else:
- instance.account_type = sku
-
-
-def update_snapshot(instance, sku=None):
- if sku is not None:
- _set_sku(instance, sku)
- return instance
-
-
-def list_managed_disks(resource_group_name=None):
- client = _compute_client_factory()
- if resource_group_name:
- return client.disks.list_by_resource_group(resource_group_name)
-
- return client.disks.list()
+def grant_snapshot_access(cmd, resource_group_name, snapshot_name, duration_in_seconds):
+ return _grant_access(cmd, resource_group_name, snapshot_name, duration_in_seconds, False)
-def list_snapshots(resource_group_name=None):
- client = _compute_client_factory()
+def list_snapshots(cmd, resource_group_name=None):
+ client = _compute_client_factory(cmd.cli_ctx)
if resource_group_name:
return client.snapshots.list_by_resource_group(resource_group_name)
-
return client.snapshots.list()
-def grant_snapshot_access(resource_group_name, snapshot_name, duration_in_seconds):
- return _grant_access(resource_group_name, snapshot_name, duration_in_seconds, False)
+def update_snapshot(cmd, instance, sku=None):
+ if sku is not None:
+ _set_sku(cmd, instance, sku)
+ return instance
+# endregion
-def _grant_access(resource_group_name, name, duration_in_seconds, is_disk):
- AccessLevel = get_sdk(ResourceType.MGMT_COMPUTE, 'AccessLevel', mod='models')
- client = _compute_client_factory()
- op = client.disks if is_disk else client.snapshots
- return op.grant_access(resource_group_name, name, AccessLevel.read, duration_in_seconds)
+# region VirtualMachines
+def assign_vm_identity(cmd, resource_group_name, vm_name, identity_role=DefaultStr('Contributor'),
+ identity_role_id=None, identity_scope=None, port=None):
+ VirtualMachineIdentity = cmd.get_models('VirtualMachineIdentity')
+ from azure.cli.core.commands.arm import assign_implict_identity
+ client = _compute_client_factory(cmd.cli_ctx)
+ def getter():
+ return client.virtual_machines.get(resource_group_name, vm_name)
-def list_images(resource_group_name=None):
- client = _compute_client_factory()
- if resource_group_name:
- return client.images.list_by_resource_group(resource_group_name)
+ def setter(vm):
+ vm.identity = VirtualMachineIdentity(type='SystemAssigned')
+ return set_vm(cmd, vm)
- return client.images.list()
+ vm = assign_implict_identity(getter, setter, identity_role=identity_role_id, identity_scope=identity_scope)
+ port = port or _MSI_PORT
+ ext_name = 'ManagedIdentityExtensionFor' + ('Linux' if _is_linux_vm(vm) else 'Windows')
+ logger.info("Provisioning extension: '%s'", ext_name)
+ poller = set_extension(cmd, resource_group_name, vm_name,
+ publisher='Microsoft.ManagedIdentity',
+ vm_extension_name=ext_name,
+ version=_MSI_EXTENSION_VERSION,
+ settings={'port': port})
+ LongRunningOperation(cmd.cli_ctx)(poller)
+ return _construct_identity_info(identity_scope, identity_role, port)
-def create_image(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,
- os_blob_uri=None, data_blob_uris=None,
- os_snapshot=None, data_snapshots=None,
- os_disk=None, data_disks=None, tags=None):
- ImageOSDisk, ImageDataDisk, ImageStorageProfile, Image, SubResource, OperatingSystemStateTypes = get_sdk(
- ResourceType.MGMT_COMPUTE, 'ImageOSDisk', 'ImageDataDisk', 'ImageStorageProfile', 'Image', 'SubResource',
- 'OperatingSystemStateTypes', mod='models')
- if source_virtual_machine:
- location = location or get_resource_group_location(resource_group_name)
- image = Image(location, source_virtual_machine=SubResource(source_virtual_machine))
- else:
- os_disk = ImageOSDisk(os_type=os_type,
- os_state=OperatingSystemStateTypes.generalized,
- snapshot=SubResource(os_snapshot) if os_snapshot else None,
- managed_disk=SubResource(os_disk) if os_disk else None,
- blob_uri=os_blob_uri)
- all_data_disks = []
- lun = 0
- if data_blob_uris:
- for d in data_blob_uris:
- all_data_disks.append(ImageDataDisk(lun, blob_uri=d))
- lun += 1
- if data_snapshots:
- for d in data_snapshots:
- all_data_disks.append(ImageDataDisk(lun, snapshot=SubResource(d)))
- lun += 1
- if data_disks:
- for d in data_disks:
- all_data_disks.append(ImageDataDisk(lun, managed_disk=SubResource(d)))
- lun += 1
- image_storage_profile = image_storage_profile = ImageStorageProfile(os_disk=os_disk, data_disks=all_data_disks)
- location = location or get_resource_group_location(resource_group_name)
- # pylint disable=no-member
- image = Image(location, storage_profile=image_storage_profile, tags=(tags or {}))
+def capture_vm(cmd, resource_group_name, vm_name, vhd_name_prefix,
+ storage_container='vhds', overwrite=True):
+ VirtualMachineCaptureParameters = cmd.get_models('VirtualMachineCaptureParameters')
+ client = _compute_client_factory(cmd.cli_ctx)
+ parameter = VirtualMachineCaptureParameters(vhd_name_prefix, storage_container, overwrite)
+ poller = client.virtual_machines.capture(resource_group_name, vm_name, parameter)
+ result = LongRunningOperation(cmd.cli_ctx)(poller)
+ print(json.dumps(result.output, indent=2)) # pylint: disable=no-member
- client = _compute_client_factory()
- return client.images.create_or_update(resource_group_name, name, image)
+# pylint: disable=too-many-locals, unused-argument, too-many-statements, too-many-branches
+def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_v2', location=None, tags=None,
+ no_wait=False, authentication_type=None, admin_password=None,
+ admin_username=DefaultStr(getpass.getuser()), ssh_dest_key_path=None, ssh_key_value=None,
+ generate_ssh_keys=False, availability_set=None, nics=None, nsg=None, nsg_rule=None,
+ private_ip_address=None, public_ip_address=None, public_ip_address_allocation='dynamic',
+ public_ip_address_dns_name=None, os_disk_name=None, os_type=None, storage_account=None,
+ os_caching=None, data_caching=None, storage_container_name=None, storage_sku=None,
+ use_unmanaged_disk=False, attach_os_disk=None, os_disk_size_gb=None,
+ attach_data_disks=None, data_disk_sizes_gb=None, image_data_disks=None,
+ vnet_name=None, vnet_address_prefix='10.0.0.0/16', subnet=None, subnet_address_prefix='10.0.0.0/24',
+ storage_profile=None, os_publisher=None, os_offer=None, os_sku=None, os_version=None,
+ storage_account_type=None, vnet_type=None, nsg_type=None, public_ip_type=None, nic_type=None,
+ validate=False, custom_data=None, secrets=None, plan_name=None, plan_product=None, plan_publisher=None,
+ plan_promotion_code=None, license_type=None, assign_identity=False, identity_scope=None,
+ identity_role=DefaultStr('Contributor'), identity_role_id=None, application_security_groups=None,
+ zone=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.command_modules.vm._template_builder import (ArmTemplateBuilder, build_vm_resource,
+ build_storage_account_resource, build_nic_resource,
+ build_vnet_resource, build_nsg_resource,
+ build_public_ip_resource, StorageProfile,
+ build_msi_role_assignment, build_vm_msi_extension)
-def attach_unmanaged_data_disk(resource_group_name, vm_name, new=False, vhd_uri=None, lun=None,
- disk_name=None, size_gb=1023, caching=None):
- ''' Attach an unmanaged disk'''
- DataDisk, DiskCreateOptionTypes = get_sdk(ResourceType.MGMT_COMPUTE, 'DataDisk',
- 'DiskCreateOptionTypes', mod='models')
- if not new and not disk_name:
- raise CLIError('Pleae provide the name of the existing disk to attach')
- create_option = DiskCreateOptionTypes.empty if new else DiskCreateOptionTypes.attach
+ subscription_id = get_subscription_id(cmd.cli_ctx)
+ network_id_template = resource_id(
+ subscription=subscription_id, resource_group=resource_group_name,
+ namespace='Microsoft.Network')
- vm = get_vm(resource_group_name, vm_name)
- if disk_name is None:
- import datetime
- disk_name = vm_name + '-' + datetime.datetime.now().strftime("%Y-%m-%d-%H-%M-%S")
- # pylint: disable=no-member
- if vhd_uri is None:
- if not hasattr(vm.storage_profile.os_disk, 'vhd') or not vm.storage_profile.os_disk.vhd:
- raise CLIError('Adding unmanaged disks to a VM with managed disks is not supported')
- blob_uri = vm.storage_profile.os_disk.vhd.uri
- vhd_uri = blob_uri[0:blob_uri.rindex('/') + 1] + disk_name + '.vhd'
+ vm_id = resource_id(
+ subscription=subscription_id, resource_group=resource_group_name,
+ namespace='Microsoft.Compute', type='virtualMachines', name=vm_name)
- if lun is None:
- lun = _get_disk_lun(vm.storage_profile.data_disks)
- disk = DataDisk(lun=lun, vhd=VirtualHardDisk(vhd_uri), name=disk_name,
- create_option=create_option,
- caching=caching, disk_size_gb=size_gb if new else None)
- if vm.storage_profile.data_disks is None:
- vm.storage_profile.data_disks = []
- vm.storage_profile.data_disks.append(disk)
- return set_vm(vm)
+ # determine final defaults and calculated values
+ tags = tags or {}
+ os_disk_name = os_disk_name or ('osdisk_{}'.format(hash_string(vm_id, length=10)) if use_unmanaged_disk else None)
+ storage_container_name = storage_container_name or 'vhds'
+ # Build up the ARM template
+ master_template = ArmTemplateBuilder()
-def _get_disk_lun(data_disks):
- # start from 0, search for unused int for lun
- if not data_disks:
- return 0
+ vm_dependencies = []
+ if storage_account_type == 'new':
+ storage_account = storage_account or 'vhdstorage{}'.format(
+ hash_string(vm_id, length=14, force_lower=True))
+ vm_dependencies.append('Microsoft.Storage/storageAccounts/{}'.format(storage_account))
+ master_template.add_resource(build_storage_account_resource(cmd, storage_account, location,
+ tags, storage_sku))
- existing_luns = sorted([d.lun for d in data_disks])
- for i, current in enumerate(existing_luns):
- if current != i:
- return i
- return len(existing_luns)
+ nic_name = None
+ if nic_type == 'new':
+ nic_name = '{}VMNic'.format(vm_name)
+ vm_dependencies.append('Microsoft.Network/networkInterfaces/{}'.format(nic_name))
+ nic_dependencies = []
+ if vnet_type == 'new':
+ vnet_name = vnet_name or '{}VNET'.format(vm_name)
+ subnet = subnet or '{}Subnet'.format(vm_name)
+ nic_dependencies.append('Microsoft.Network/virtualNetworks/{}'.format(vnet_name))
+ master_template.add_resource(build_vnet_resource(
+ cmd, vnet_name, location, tags, vnet_address_prefix, subnet, subnet_address_prefix))
-def resize_vm(resource_group_name, vm_name, size, no_wait=False):
- '''Update vm size
- :param str size: sizes such as Standard_A4, Standard_F4s, etc
- '''
- vm = get_vm(resource_group_name, vm_name)
- vm.hardware_profile.vm_size = size # pylint: disable=no-member
- return set_vm(vm, no_wait)
+ if nsg_type == 'new':
+ nsg_rule_type = 'rdp' if os_type.lower() == 'windows' else 'ssh'
+ nsg = nsg or '{}NSG'.format(vm_name)
+ nic_dependencies.append('Microsoft.Network/networkSecurityGroups/{}'.format(nsg))
+ master_template.add_resource(build_nsg_resource(cmd, nsg, location, tags, nsg_rule_type))
+ if public_ip_type == 'new':
+ public_ip_address = public_ip_address or '{}PublicIP'.format(vm_name)
+ nic_dependencies.append('Microsoft.Network/publicIpAddresses/{}'.format(
+ public_ip_address))
+ master_template.add_resource(build_public_ip_resource(cmd, public_ip_address, location, tags,
+ public_ip_address_allocation,
+ public_ip_address_dns_name,
+ None, zone))
-def get_instance_view(resource_group_name, vm_name):
- return get_vm(resource_group_name, vm_name, 'instanceView')
+ subnet_id = subnet if is_valid_resource_id(subnet) else \
+ '{}/virtualNetworks/{}/subnets/{}'.format(network_id_template, vnet_name, subnet)
+ nsg_id = None
+ if nsg:
+ nsg_id = nsg if is_valid_resource_id(nsg) else \
+ '{}/networkSecurityGroups/{}'.format(network_id_template, nsg)
-def list_unmanaged_disks(resource_group_name, vm_name):
- ''' List disks for a Virtual Machine '''
- vm = get_vm(resource_group_name, vm_name)
- return vm.storage_profile.data_disks # pylint: disable=no-member
+ public_ip_address_id = None
+ if public_ip_address:
+ public_ip_address_id = public_ip_address if is_valid_resource_id(public_ip_address) \
+ else '{}/publicIPAddresses/{}'.format(network_id_template, public_ip_address)
+ nics = [
+ {'id': '{}/networkInterfaces/{}'.format(network_id_template, nic_name)}
+ ]
+ nic_resource = build_nic_resource(
+ cmd, nic_name, location, tags, vm_name, subnet_id, private_ip_address, nsg_id,
+ public_ip_address_id, application_security_groups)
+ nic_resource['dependsOn'] = nic_dependencies
+ master_template.add_resource(nic_resource)
+ else:
+ # Using an existing NIC
+ invalid_parameters = [nsg, public_ip_address, subnet, vnet_name, application_security_groups]
+ if any(invalid_parameters):
+ raise CLIError('When specifying an existing NIC, do not specify NSG, '
+ 'public IP, ASGs, VNet or subnet.')
-def capture_vm(resource_group_name, vm_name, vhd_name_prefix,
- storage_container='vhds', overwrite=True):
- '''Captures the VM by copying virtual hard disks of the VM and outputs a
- template that can be used to create similar VMs.
- :param str vhd_name_prefix: the VHD name prefix specify for the VM disks
- :param str storage_container: the storage account container name to save the disks
- :param str overwrite: overwrite the existing disk file
- '''
- client = _compute_client_factory()
- parameter = VirtualMachineCaptureParameters(vhd_name_prefix, storage_container, overwrite)
- poller = client.virtual_machines.capture(resource_group_name, vm_name, parameter)
- result = LongRunningOperation()(poller)
- print(json.dumps(result.output, indent=2)) # pylint: disable=no-member
+ os_vhd_uri = None
+ if storage_profile in [StorageProfile.SACustomImage, StorageProfile.SAPirImage]:
+ storage_account_name = storage_account.rsplit('/', 1)
+ storage_account_name = storage_account_name[1] if \
+ len(storage_account_name) > 1 else storage_account_name[0]
+ os_vhd_uri = 'https://{}.blob.{}/{}/{}.vhd'.format(
+ storage_account_name, cmd.cli_ctx.cloud.suffixes.storage_endpoint, storage_container_name, os_disk_name)
+ elif storage_profile == StorageProfile.SASpecializedOSDisk:
+ os_vhd_uri = attach_os_disk
+ os_disk_name = attach_os_disk.rsplit('/', 1)[1][:-4]
+ if custom_data:
+ custom_data = read_content_if_is_file(custom_data)
-def set_user(resource_group_name, vm_name, username, password=None, ssh_key_value=None,
- no_wait=False):
- '''Update or Add(only on Linux VM) users
- :param username: user name
- :param password: user password.
- :param ssh_key_value: SSH public key file value or public key file path
- '''
- vm = get_vm(resource_group_name, vm_name, 'instanceView')
- if _is_linux_vm(vm):
- return _set_linux_user(vm, resource_group_name, username, password, ssh_key_value, no_wait)
- else:
- if ssh_key_value:
- raise CLIError('SSH key is not appliable on a Windows VM')
- return _reset_windows_admin(vm, resource_group_name, username, password, no_wait)
+ if secrets:
+ secrets = _merge_secrets([validate_file_or_dict(secret) for secret in secrets])
+
+ vm_resource = build_vm_resource(
+ cmd, vm_name, location, tags, size, storage_profile, nics, admin_username, availability_set,
+ admin_password, ssh_key_value, ssh_dest_key_path, image, os_disk_name,
+ os_type, os_caching, data_caching, storage_sku, os_publisher, os_offer, os_sku, os_version,
+ os_vhd_uri, attach_os_disk, os_disk_size_gb, attach_data_disks, data_disk_sizes_gb, image_data_disks,
+ custom_data, secrets, license_type, zone)
+ vm_resource['dependsOn'] = vm_dependencies
+ if plan_name:
+ vm_resource['plan'] = {
+ 'name': plan_name,
+ 'publisher': plan_publisher,
+ 'product': plan_product,
+ 'promotionCode': plan_promotion_code
+ }
-def delete_user(
- resource_group_name, vm_name, username, no_wait=False):
- '''Remove a user(not supported on Windows VM)
- :param username: user name
- '''
- vm = get_vm(resource_group_name, vm_name, 'instanceView')
- if not _is_linux_vm(vm):
- raise CLIError('Deleting a user is not supported on Windows VM')
- if no_wait:
- return _update_linux_access_extension(vm, resource_group_name,
- {'remove_user': username}, no_wait)
- poller = _update_linux_access_extension(vm, resource_group_name,
- {'remove_user': username})
- return ExtensionUpdateLongRunningOperation('deleting user', 'done')(poller)
+ if assign_identity:
+ vm_resource['identity'] = {"type": "systemAssigned"}
+ role_assignment_guid = None
+ if identity_scope:
+ role_assignment_guid = str(_gen_guid())
+ master_template.add_resource(build_msi_role_assignment(cmd, vm_name, vm_id, identity_role_id,
+ role_assignment_guid, identity_scope))
+ master_template.add_resource(build_vm_msi_extension(cmd, vm_name, location, role_assignment_guid, _MSI_PORT,
+ os_type.lower() != 'windows', _MSI_EXTENSION_VERSION))
+ master_template.add_resource(vm_resource)
-def reset_linux_ssh(resource_group_name, vm_name, no_wait=False):
- '''Reset the SSH configuration In Linux VM'''
- vm = get_vm(resource_group_name, vm_name, 'instanceView')
- if not _is_linux_vm(vm):
- raise CLIError('Resetting SSH is not supported in Windows VM')
+ template = master_template.build()
+
+ # deploy ARM template
+ deployment_name = 'vm_deploy_' + random_string(32)
+ client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).deployments
+ DeploymentProperties = cmd.get_models('DeploymentProperties', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES)
+ properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
+ if validate:
+ from azure.cli.command_modules.vm._vm_utils import log_pprint_template
+ log_pprint_template(template)
+ return client.validate(resource_group_name, deployment_name, properties)
+
+ # creates the VM deployment
if no_wait:
- return _update_linux_access_extension(vm, resource_group_name,
- {'reset_ssh': True}, no_wait)
- poller = _update_linux_access_extension(vm, resource_group_name,
- {'reset_ssh': True})
- return ExtensionUpdateLongRunningOperation('resetting SSH', 'done')(poller)
+ return client.create_or_update(
+ resource_group_name, deployment_name, properties, raw=no_wait)
+ else:
+ LongRunningOperation(cmd.cli_ctx)(client.create_or_update(
+ resource_group_name, deployment_name, properties, raw=no_wait))
+ vm = get_vm_details(cmd, resource_group_name, vm_name)
+ if assign_identity:
+ if not identity_scope:
+ _show_missing_access_warning(resource_group_name, vm_name, 'vm')
+ setattr(vm, 'identity', _construct_identity_info(identity_scope, identity_role, _MSI_PORT))
+ return vm
-def _is_linux_vm(vm):
- os_type = vm.storage_profile.os_disk.os_type.value
- return os_type.lower() == 'linux'
+def get_instance_view(cmd, resource_group_name, vm_name):
+ return get_vm(cmd, resource_group_name, vm_name, 'instanceView')
-def _set_linux_user(vm_instance, resource_group_name, username,
- password=None, ssh_key_value=None, no_wait=False):
- protected_settings = {}
- protected_settings['username'] = username
- if password:
- protected_settings['password'] = password
- elif not ssh_key_value and not password: # default to ssh
- ssh_key_value = os.path.join(os.path.expanduser('~'), '.ssh', 'id_rsa.pub')
+def get_vm(cmd, resource_group_name, vm_name, expand=None):
+ client = _compute_client_factory(cmd.cli_ctx)
+ return client.virtual_machines.get(resource_group_name, vm_name, expand=expand)
- if ssh_key_value:
- protected_settings['ssh_key'] = read_content_if_is_file(ssh_key_value)
- if no_wait:
- return _update_linux_access_extension(vm_instance, resource_group_name,
- protected_settings, no_wait)
- poller = _update_linux_access_extension(vm_instance, resource_group_name,
- protected_settings)
- return ExtensionUpdateLongRunningOperation('setting user', 'done')(poller)
+def get_vm_details(cmd, resource_group_name, vm_name):
+ result = get_instance_view(cmd, resource_group_name, vm_name)
+ network_client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_NETWORK)
+ public_ips = []
+ fqdns = []
+ private_ips = []
+ mac_addresses = []
+ # pylint: disable=line-too-long,no-member
+ for nic_ref in result.network_profile.network_interfaces:
+ nic_parts = parse_resource_id(nic_ref.id)
+ nic = network_client.network_interfaces.get(nic_parts['resource_group'], nic_parts['name'])
+ if nic.mac_address:
+ mac_addresses.append(nic.mac_address)
+ for ip_configuration in nic.ip_configurations:
+ if ip_configuration.private_ip_address:
+ private_ips.append(ip_configuration.private_ip_address)
+ if ip_configuration.public_ip_address:
+ res = parse_resource_id(ip_configuration.public_ip_address.id)
+ public_ip_info = network_client.public_ip_addresses.get(res['resource_group'],
+ res['name'])
+ if public_ip_info.ip_address:
+ public_ips.append(public_ip_info.ip_address)
+ if public_ip_info.dns_settings:
+ fqdns.append(public_ip_info.dns_settings.fqdn)
+ setattr(result, 'power_state',
+ ','.join([s.display_status for s in result.instance_view.statuses if s.code.startswith('PowerState/')]))
+ setattr(result, 'public_ips', ','.join(public_ips))
+ setattr(result, 'fqdns', ','.join(fqdns))
+ setattr(result, 'private_ips', ','.join(private_ips))
+ setattr(result, 'mac_addresses', ','.join(mac_addresses))
+ del result.instance_view # we don't need other instance_view info as people won't care
+ return result
-def _reset_windows_admin(vm_instance, resource_group_name, username, password, no_wait=False):
- '''Update the password.
- You can only change the password. Adding a new user is not supported.
- '''
- client = _compute_client_factory()
- VirtualMachineExtension = get_sdk(ResourceType.MGMT_COMPUTE,
- "VirtualMachineExtension",
- mod='models')
- publisher, version, auto_upgrade = _get_access_extension_upgrade_info(
- vm_instance.resources, _WINDOWS_ACCESS_EXT)
- # pylint: disable=no-member
- instance_name = _get_extension_instance_name(vm_instance.instance_view,
- publisher,
- _WINDOWS_ACCESS_EXT,
- _ACCESS_EXT_HANDLER_NAME)
+def list_skus(cmd, location=None):
+ def _match_location(l, locations):
+ return next((x for x in locations if x.lower() == l.lower()), None)
- ext = VirtualMachineExtension(vm_instance.location, # pylint: disable=no-member
- publisher=publisher,
- virtual_machine_extension_type=_WINDOWS_ACCESS_EXT,
- protected_settings={'Password': password},
- type_handler_version=version,
- settings={'UserName': username},
- auto_upgrade_minor_version=auto_upgrade)
+ client = _compute_client_factory(cmd.cli_ctx)
+ result = client.resource_skus.list()
+ if location:
+ result = [r for r in result if _match_location(location, r.locations)]
+ return result
- if no_wait:
- return client.virtual_machine_extensions.create_or_update(resource_group_name,
- vm_instance.name,
- instance_name, ext, raw=no_wait)
- poller = client.virtual_machine_extensions.create_or_update(resource_group_name,
- vm_instance.name,
- instance_name, ext)
- return ExtensionUpdateLongRunningOperation('resetting admin', 'done')(poller)
+def list_vm(cmd, resource_group_name=None, show_details=False):
+ ccf = _compute_client_factory(cmd.cli_ctx)
+ vm_list = ccf.virtual_machines.list(resource_group_name=resource_group_name) \
+ if resource_group_name else ccf.virtual_machines.list_all()
+ if show_details:
+ return [get_vm_details(cmd.cli_ctx, _parse_rg_name(v.id)[0], v.name) for v in vm_list]
-def _update_linux_access_extension(vm_instance, resource_group_name, protected_settings,
- no_wait=False):
- client = _compute_client_factory()
+ return list(vm_list)
- VirtualMachineExtension = get_sdk(ResourceType.MGMT_COMPUTE,
- "VirtualMachineExtension",
- mod='models')
- # pylint: disable=no-member
- instance_name = _get_extension_instance_name(vm_instance.instance_view,
- extension_mappings[_LINUX_ACCESS_EXT]['publisher'],
- _LINUX_ACCESS_EXT,
- _ACCESS_EXT_HANDLER_NAME)
+def list_vm_ip_addresses(cmd, resource_group_name=None, vm_name=None):
+ # We start by getting NICs as they are the smack in the middle of all data that we
+ # want to collect for a VM (as long as we don't need any info on the VM than what
+ # is available in the Id, we don't need to make any calls to the compute RP)
+ #
+ # Since there is no guarantee that a NIC is in the same resource group as a given
+ # Virtual Machine, we can't constrain the lookup to only a single group...
+ network_client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_NETWORK)
+ nics = network_client.network_interfaces.list_all()
+ public_ip_addresses = network_client.public_ip_addresses.list_all()
- publisher, version, auto_upgrade = _get_access_extension_upgrade_info(
- vm_instance.resources, _LINUX_ACCESS_EXT)
+ ip_address_lookup = {pip.id: pip for pip in list(public_ip_addresses)}
- ext = VirtualMachineExtension(vm_instance.location, # pylint: disable=no-member
- publisher=publisher,
- virtual_machine_extension_type=_LINUX_ACCESS_EXT,
- protected_settings=protected_settings,
- type_handler_version=version,
- settings={},
- auto_upgrade_minor_version=auto_upgrade)
- return client.virtual_machine_extensions.create_or_update(resource_group_name,
- vm_instance.name,
- instance_name, ext,
- raw=no_wait)
+ result = []
+ for nic in [n for n in list(nics) if n.virtual_machine]:
+ nic_resource_group, nic_vm_name = _parse_rg_name(nic.virtual_machine.id)
+ # If provided, make sure that resource group name and vm name match the NIC we are
+ # looking at before adding it to the result...
+ same_resource_group_name = (resource_group_name is None or
+ resource_group_name.lower() == nic_resource_group.lower())
+ same_vm_name = (vm_name is None or
+ vm_name.lower() == nic_vm_name.lower())
+ if same_resource_group_name and same_vm_name:
+ network_info = {
+ 'privateIpAddresses': [],
+ 'publicIpAddresses': []
+ }
+ for ip_configuration in nic.ip_configurations:
+ network_info['privateIpAddresses'].append(ip_configuration.private_ip_address)
+ if ip_configuration.public_ip_address:
+ public_ip_address = ip_address_lookup[ip_configuration.public_ip_address.id]
+ network_info['publicIpAddresses'].append({
+ 'id': public_ip_address.id,
+ 'name': public_ip_address.name,
+ 'ipAddress': public_ip_address.ip_address,
+ 'ipAllocationMethod': public_ip_address.public_ip_allocation_method
+ })
-def _get_extension_instance_name(instance_view, publisher, extension_type_name,
- suggested_name=None):
- extension_instance_name = suggested_name or extension_type_name
- full_type_name = '.'.join([publisher, extension_type_name])
- if instance_view.extensions:
- ext = next((x for x in instance_view.extensions
- if x.type and (x.type.lower() == full_type_name.lower())), None)
- if ext:
- extension_instance_name = ext.name
- return extension_instance_name
+ result.append({
+ 'virtualMachine': {
+ 'resourceGroup': nic_resource_group,
+ 'name': nic_vm_name,
+ 'network': network_info
+ }
+ })
+
+ return result
+
+
+def open_vm_port(cmd, resource_group_name, vm_name, port, priority=900, network_security_group_name=None,
+ apply_to_subnet=False):
+ network = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_NETWORK)
+
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ location = vm.location
+ nic_ids = list(vm.network_profile.network_interfaces)
+ if len(nic_ids) > 1:
+ raise CLIError('Multiple NICs is not supported for this command. Create rules on the NSG '
+ 'directly.')
+ elif not nic_ids:
+ raise CLIError("No NIC associated with VM '{}'".format(vm_name))
+
+ # get existing NSG or create a new one
+ created_nsg = False
+ nic = network.network_interfaces.get(resource_group_name, os.path.split(nic_ids[0].id)[1])
+ if not apply_to_subnet:
+ nsg = nic.network_security_group
+ else:
+ subnet_id = parse_resource_id(nic.ip_configurations[0].subnet.id)
+ subnet = network.subnets.get(resource_group_name,
+ subnet_id['name'],
+ subnet_id['child_name'])
+ nsg = subnet.network_security_group
+
+ if not nsg:
+ NetworkSecurityGroup = \
+ cmd.get_models('NetworkSecurityGroup', resource_type=ResourceType.MGMT_NETWORK)
+ nsg = LongRunningOperation(cmd.cli_ctx, 'Creating network security group')(
+ network.network_security_groups.create_or_update(
+ resource_group_name=resource_group_name,
+ network_security_group_name=network_security_group_name,
+ parameters=NetworkSecurityGroup(location=location)
+ )
+ )
+ created_nsg = True
+
+ # update the NSG with the new rule to allow inbound traffic
+ SecurityRule = cmd.get_models('SecurityRule', resource_type=ResourceType.MGMT_NETWORK)
+ rule_name = 'open-port-all' if port == '*' else 'open-port-{}'.format(port)
+ rule = SecurityRule(protocol='*', access='allow', direction='inbound', name=rule_name,
+ source_port_range='*', destination_port_range=port, priority=priority,
+ source_address_prefix='*', destination_address_prefix='*')
+ nsg_name = nsg.name or os.path.split(nsg.id)[1]
+ LongRunningOperation(cmd.cli_ctx, 'Adding security rule')(
+ network.security_rules.create_or_update(
+ resource_group_name, nsg_name, rule_name, rule)
+ )
+
+ # update the NIC or subnet if a new NSG was created
+ if created_nsg and not apply_to_subnet:
+ nic.network_security_group = nsg
+ LongRunningOperation(cmd.cli_ctx, 'Updating NIC')(network.network_interfaces.create_or_update(
+ resource_group_name, nic.name, nic))
+ elif created_nsg and apply_to_subnet:
+ subnet.network_security_group = nsg
+ LongRunningOperation(cmd.cli_ctx, 'Updating subnet')(network.subnets.create_or_update(
+ resource_group_name=resource_group_name,
+ virtual_network_name=subnet_id['name'],
+ subnet_name=subnet_id['child_name'],
+ subnet_parameters=subnet
+ ))
+
+ return network.network_security_groups.get(resource_group_name, nsg_name)
+
+
+def resize_vm(cmd, resource_group_name, vm_name, size, no_wait=False):
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ vm.hardware_profile.vm_size = size # pylint: disable=no-member
+ return set_vm(cmd, vm, no_wait)
+
+
+def set_vm(cmd, instance, lro_operation=None, no_wait=False):
+ instance.resources = None # Issue: https://github.com/Azure/autorest/issues/934
+ client = _compute_client_factory(cmd.cli_ctx)
+ parsed_id = _parse_rg_name(instance.id)
+ poller = client.virtual_machines.create_or_update(
+ resource_group_name=parsed_id[0],
+ vm_name=parsed_id[1],
+ parameters=instance, raw=no_wait)
+ if lro_operation:
+ return lro_operation(poller)
+
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+
+
+def show_vm(cmd, resource_group_name, vm_name, show_details=False):
+ return get_vm_details(cmd, resource_group_name, vm_name) if show_details \
+ else get_vm(cmd, resource_group_name, vm_name)
+# endregion
+
+
+# region VirtualMachines AvailabilitySets
+def _get_availset(cmd, resource_group_name, name):
+ return _compute_client_factory(cmd.cli_ctx).availability_sets.get(resource_group_name, name)
+
+
+def _set_availset(cmd, resource_group_name, name, **kwargs):
+ return _compute_client_factory(cmd.cli_ctx).availability_sets.create_or_update(resource_group_name, name, **kwargs)
+
+
+def convert_av_set_to_managed_disk(cmd, resource_group_name, availability_set_name):
+ av_set = _get_availset(cmd, resource_group_name, availability_set_name)
+ if av_set.sku.name != 'Aligned':
+ av_set.sku.name = 'Aligned'
+
+ # let us double check whether the existing FD number is supported
+ skus = list_skus(av_set.location)
+ av_sku = next((s for s in skus if s.resource_type == 'availabilitySets' and s.name == 'Aligned'), None)
+ if av_sku and av_sku.capabilities:
+ max_fd = int(next((c.value for c in av_sku.capabilities if c.name == 'MaximumPlatformFaultDomainCount'),
+ '0'))
+ if max_fd and max_fd < av_set.platform_fault_domain_count:
+ logger.warning("The fault domain count will be adjusted from %s to %s so to stay within region's "
+ "limitation", av_set.platform_fault_domain_count, max_fd)
+ av_set.platform_fault_domain_count = max_fd
+
+ return _set_availset(cmd, resource_group_name=resource_group_name, name=availability_set_name,
+ parameters=av_set)
+ else:
+ 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):
+ from azure.cli.core.util import random_string
+ from azure.cli.command_modules.vm._template_builder import (ArmTemplateBuilder, build_av_set_resource)
+
+ tags = tags or {}
+
+ # Build up the ARM template
+ master_template = ArmTemplateBuilder()
+
+ av_set_resource = build_av_set_resource(cmd, availability_set_name, location, tags,
+ platform_update_domain_count,
+ platform_fault_domain_count, unmanaged)
+ master_template.add_resource(av_set_resource)
+
+ template = master_template.build()
+
+ # deploy ARM template
+ deployment_name = 'av_set_deploy_' + random_string(32)
+ client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).deployments
+ DeploymentProperties = cmd.get_models('DeploymentProperties', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES)
+ properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
+ if validate:
+ return client.validate(resource_group_name, deployment_name, properties)
+
+ if no_wait:
+ return client.create_or_update(
+ resource_group_name, deployment_name, properties, raw=no_wait)
-def disable_boot_diagnostics(resource_group_name, vm_name):
- vm = get_vm(resource_group_name, vm_name)
+ LongRunningOperation(cmd.cli_ctx)(client.create_or_update(
+ resource_group_name, deployment_name, properties, raw=no_wait))
+ compute_client = _compute_client_factory(cmd.cli_ctx)
+ return compute_client.availability_sets.get(resource_group_name, availability_set_name)
+# endregion
+
+
+# region VirtualMachines BootDiagnostics
+def disable_boot_diagnostics(cmd, resource_group_name, vm_name):
+ vm = get_vm(cmd, resource_group_name, vm_name)
diag_profile = vm.diagnostics_profile
if not (diag_profile and diag_profile.boot_diagnostics and diag_profile.boot_diagnostics.enabled):
return
@@ -773,19 +907,15 @@ def disable_boot_diagnostics(resource_group_name, vm_name):
vm.resources = None
diag_profile.boot_diagnostics.enabled = False
diag_profile.boot_diagnostics.storage_uri = None
- set_vm(vm, ExtensionUpdateLongRunningOperation('disabling boot diagnostics', 'done'))
+ set_vm(vm, ExtensionUpdateLongRunningOperation(cmd.cli_ctx, 'disabling boot diagnostics', 'done'))
-def enable_boot_diagnostics(resource_group_name, vm_name, storage):
- '''Enable boot diagnostics
- :param storage:a storage account name or a uri like
- https://your_stoage_account_name.blob.core.windows.net/
- '''
- vm = get_vm(resource_group_name, vm_name)
+def enable_boot_diagnostics(cmd, resource_group_name, vm_name, storage):
+ vm = get_vm(cmd, resource_group_name, vm_name)
if urlparse(storage).scheme:
storage_uri = storage
else:
- storage_mgmt_client = _get_storage_management_client()
+ storage_mgmt_client = _get_storage_management_client(cmd.cli_ctx)
storage_accounts = storage_mgmt_client.storage_accounts.list()
storage_account = next((a for a in list(storage_accounts)
if a.name.lower() == storage.lower()), None)
@@ -800,10 +930,7 @@ def enable_boot_diagnostics(resource_group_name, vm_name, storage):
vm.diagnostics_profile.boot_diagnostics.storage_uri.lower() == storage_uri.lower()):
return
- DiagnosticsProfile, BootDiagnostics = get_sdk(ResourceType.MGMT_COMPUTE,
- "DiagnosticsProfile",
- "BootDiagnostics",
- mod='models')
+ DiagnosticsProfile, BootDiagnostics = cmd.get_models('DiagnosticsProfile', 'BootDiagnostics')
boot_diag = BootDiagnostics(True, storage_uri)
if vm.diagnostics_profile is None:
@@ -813,20 +940,16 @@ def enable_boot_diagnostics(resource_group_name, vm_name, storage):
# Issue: https://github.com/Azure/autorest/issues/934
vm.resources = None
- set_vm(vm, ExtensionUpdateLongRunningOperation('enabling boot diagnostics', 'done'))
+ set_vm(vm, ExtensionUpdateLongRunningOperation(cmd.cli_ctx, 'enabling boot diagnostics', 'done'))
-def get_boot_log(resource_group_name, vm_name):
+def get_boot_log(cmd, resource_group_name, vm_name):
import sys
- from azure.cli.core._profile import CLOUD
- BlockBlobService = get_sdk(ResourceType.DATA_STORAGE, 'blob.blockblobservice#BlockBlobService')
+ BlockBlobService = cmd.get_sdk('blob.blockblobservice#BlockBlobService', resource_type=ResourceType.DATA_STORAGE)
- client = _compute_client_factory()
+ client = _compute_client_factory(cmd.cli_ctx)
- virtual_machine = client.virtual_machines.get(
- resource_group_name,
- vm_name,
- expand='instanceView')
+ virtual_machine = client.virtual_machines.get(resource_group_name, vm_name, expand='instanceView')
# pylint: disable=no-member
if (not virtual_machine.instance_view.boot_diagnostics or
not virtual_machine.instance_view.boot_diagnostics.serial_console_log_blob_uri):
@@ -835,7 +958,7 @@ def get_boot_log(resource_group_name, vm_name):
blob_uri = virtual_machine.instance_view.boot_diagnostics.serial_console_log_blob_uri
# Find storage account for diagnostics
- storage_mgmt_client = _get_storage_management_client()
+ storage_mgmt_client = _get_storage_management_client(cmd.cli_ctx)
if not blob_uri:
raise CLIError('No console log available')
try:
@@ -856,10 +979,11 @@ def get_boot_log(resource_group_name, vm_name):
container, blob = urlparse(blob_uri).path.split('/')[-2:]
storage_client = get_data_service_client(
+ cmd.cli_ctx,
BlockBlobService,
storage_account.name,
keys.keys[0].value,
- endpoint_suffix=CLOUD.suffixes.storage_endpoint) # pylint: disable=no-member
+ endpoint_suffix=cmd.cli_ctx.cloud.suffixes.storage_endpoint) # pylint: disable=no-member
class StreamWriter(object): # pylint: disable=too-few-public-methods
@@ -874,116 +998,14 @@ def write(self, str_or_bytes):
# our streamwriter not seekable, so no parallel.
storage_client.get_blob_to_stream(container, blob, StreamWriter(sys.stdout), max_connections=1)
+# endregion
-def list_extensions(resource_group_name, vm_name):
- vm = get_vm(resource_group_name, vm_name)
- extension_type = 'Microsoft.Compute/virtualMachines/extensions'
- result = [r for r in (vm.resources or []) if r.type == extension_type]
- return result
-
-
-def set_extension(
- resource_group_name, vm_name, vm_extension_name, publisher,
- version=None, settings=None,
- protected_settings=None, no_auto_upgrade=False):
- '''create/update extensions for a VM in a resource group. You can use
- 'extension image list' to get extension details
- :param vm_extension_name: the name of the extension
- :param publisher: the name of extension publisher
- :param version: the version of extension.
- :param settings: extension settings in json format. A json file path is also accepted
- :param protected_settings: protected settings in json format for sensitive information like
- credentials. A json file path is also accepted.
- :param no_auto_upgrade: by doing this, extension system will not pick the highest minor version
- for the specified version number, and will not auto update to the latest build/revision number
- on any VM updates in future.
- '''
- vm = get_vm(resource_group_name, vm_name, 'instanceView')
- client = _compute_client_factory()
-
- VirtualMachineExtension = get_sdk(ResourceType.MGMT_COMPUTE,
- "VirtualMachineExtension",
- mod='models')
- # pylint: disable=no-member
- instance_name = _get_extension_instance_name(vm.instance_view, publisher, vm_extension_name)
- # pylint: disable=no-member
- version = _normalize_extension_version(publisher, vm_extension_name, version, vm.location)
- ext = VirtualMachineExtension(vm.location,
- publisher=publisher,
- virtual_machine_extension_type=vm_extension_name,
- protected_settings=protected_settings,
- type_handler_version=version,
- settings=settings,
- auto_upgrade_minor_version=(not no_auto_upgrade))
- return client.virtual_machine_extensions.create_or_update(
- resource_group_name, vm_name, instance_name, ext)
-
-
-def set_vmss_extension(
- resource_group_name, vmss_name, extension_name, publisher,
- version=None, settings=None,
- protected_settings=None, no_auto_upgrade=False):
- '''create/update extensions for a VMSS in a resource group. You can use
- 'extension image list' to get extension details
- :param vm_extension_name: the name of the extension
- :param publisher: the name of extension publisher
- :param version: the version of extension.
- :param settings: public settings or a file path with such contents
- :param protected_settings: protected settings or a file path with such contents
- :param no_auto_upgrade: by doing this, extension system will not pick the highest minor version
- for the specified version number, and will not auto update to the latest build/revision number
- on any scale set updates in future.
- '''
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name,
- vmss_name)
-
- # pylint: disable=no-member
- version = _normalize_extension_version(publisher, extension_name, version, vmss.location)
- extension_profile = vmss.virtual_machine_profile.extension_profile
- if extension_profile:
- extensions = extension_profile.extensions
- if extensions:
- extension_profile.extensions = [x for x in extensions if
- x.type.lower() != extension_name.lower() or x.publisher.lower() != publisher.lower()] # pylint: disable=line-too-long
-
- ext = VirtualMachineScaleSetExtension(name=extension_name,
- publisher=publisher,
- type=extension_name,
- protected_settings=protected_settings,
- type_handler_version=version,
- settings=settings,
- auto_upgrade_minor_version=(not no_auto_upgrade))
-
- if not vmss.virtual_machine_profile.extension_profile:
- vmss.virtual_machine_profile.extension_profile = VirtualMachineScaleSetExtensionProfile([])
- vmss.virtual_machine_profile.extension_profile.extensions.append(ext)
-
- return client.virtual_machine_scale_sets.create_or_update(resource_group_name,
- vmss_name,
- vmss)
-
-
-def _normalize_extension_version(publisher, vm_extension_name, version, location):
- if not version:
- result = load_extension_images_thru_services(publisher, vm_extension_name, None, location, show_latest=True)
- if not result:
- raise CLIError('Failed to find the latest version for the extension "{}"'.format(vm_extension_name))
-
- # with 'show_latest' enabled, we will only get one result.
- version = result[0]['version']
-
- version = _trim_away_build_number(version)
- return version
-
-
+# region VirtualMachines Diagnostics
def set_diagnostics_extension(
- resource_group_name, vm_name, settings, protected_settings=None, version=None,
+ cmd, resource_group_name, vm_name, settings, protected_settings=None, version=None,
no_auto_upgrade=False):
- '''Enable diagnostics on a virtual machine
- '''
- client = _compute_client_factory()
+ client = _compute_client_factory(cmd.cli_ctx)
vm = client.virtual_machines.get(resource_group_name, vm_name, 'instanceView')
# pylint: disable=no-member
is_linux_os = _detect_os_type_for_diagnostics_ext(vm.os_profile)
@@ -997,300 +1019,180 @@ def set_diagnostics_extension(
'We will update it with a new version')
poller = client.virtual_machine_extensions.delete(resource_group_name, vm_name,
vm_extension_name)
- LongRunningOperation()(poller)
+ LongRunningOperation(cmd.cli_ctx)(poller)
- return set_extension(resource_group_name, vm_name, vm_extension_name,
+ return set_extension(cmd, resource_group_name, vm_name, vm_extension_name,
extension_mappings[vm_extension_name]['publisher'],
version or extension_mappings[vm_extension_name]['version'],
settings,
- protected_settings,
- no_auto_upgrade)
-
-
-def set_vmss_diagnostics_extension(
- resource_group_name, vmss_name, settings, protected_settings=None, version=None,
- no_auto_upgrade=False):
- '''Enable diagnostics on a virtual machine scale set
- '''
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
- # pylint: disable=no-member
- is_linux_os = _detect_os_type_for_diagnostics_ext(vmss.virtual_machine_profile.os_profile)
- vm_extension_name = _LINUX_DIAG_EXT if is_linux_os else _WINDOWS_DIAG_EXT
- if is_linux_os and vmss.virtual_machine_profile.extension_profile: # check incompatibles
- exts = vmss.virtual_machine_profile.extension_profile.extensions or []
- major_ver = extension_mappings[_LINUX_DIAG_EXT]['version'].split('.')[0]
- # For VMSS, we don't do auto-removal like VM because there is no reliable API to wait for
- # the removal done before we can install the newer one
- if next((e for e in exts if e.name == _LINUX_DIAG_EXT and
- not e.type_handler_version.startswith(major_ver + '.')), None):
- delete_cmd = 'az vmss extension delete -g {} --vmss-name {} -n {}'.format(
- resource_group_name, vmss_name, vm_extension_name)
- raise CLIError("There is an incompatible version of diagnostics extension installed. "
- "Please remove it by running '{}', and retry. 'az vmss update-instances'"
- " might be needed if with manual upgrade policy".format(delete_cmd))
-
- poller = set_vmss_extension(resource_group_name, vmss_name, vm_extension_name,
- extension_mappings[vm_extension_name]['publisher'],
- version or extension_mappings[vm_extension_name]['version'],
- settings,
- protected_settings,
- no_auto_upgrade)
-
- result = LongRunningOperation()(poller)
- UpgradeMode = get_sdk(ResourceType.MGMT_COMPUTE, "UpgradeMode", mod='models')
- if vmss.upgrade_policy.mode == UpgradeMode.manual:
- poller2 = update_vmss_instances(resource_group_name, vmss_name, ['*'])
- LongRunningOperation()(poller2)
- return result
+ protected_settings,
+ no_auto_upgrade)
-# Same logic also applies on vmss
+def show_default_diagnostics_configuration(is_windows_os=False):
+ public_settings = get_default_diag_config(is_windows_os)
+ # pylint: disable=line-too-long
+ protected_settings_info = json.dumps({
+ 'storageAccountName': "__STORAGE_ACCOUNT_NAME__",
+ # LAD and WAD are not consistent on sas token format. Call it out here
+ "storageAccountSasToken": "__SAS_TOKEN_{}__".format("WITH_LEADING_QUESTION_MARK" if is_windows_os else "WITHOUT_LEADING_QUESTION_MARK")
+ }, indent=2)
+ logger.warning('Protected settings with storage account info is required to work with the default configurations, e.g. \n' + protected_settings_info)
+ return public_settings
+# endregion
-def _detect_os_type_for_diagnostics_ext(os_profile):
- is_linux_os = bool(os_profile.linux_configuration)
- is_windows_os = bool(os_profile.windows_configuration)
- if not is_linux_os and not is_windows_os:
- raise CLIError('Diagnostics extension can only be installed on Linux or Windows VM')
- return is_linux_os
+# region VirtualMachines Disks (Managed)
+def attach_managed_data_disk(cmd, resource_group_name, vm_name, disk,
+ new=False, sku=None, size_gb=None, lun=None, caching=None):
+ '''attach a managed disk'''
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ DataDisk, ManagedDiskParameters, DiskCreateOption = cmd.get_models(
+ 'DataDisk', 'ManagedDiskParameters', 'DiskCreateOptionTypes')
-def get_vmss_extension(resource_group_name, vmss_name, extension_name):
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name,
- vmss_name)
# pylint: disable=no-member
- if not vmss.virtual_machine_profile.extension_profile:
- return
- return next((e for e in vmss.virtual_machine_profile.extension_profile.extensions
- if e.name == extension_name), None)
-
+ if lun is None:
+ luns = ([d.lun for d in vm.storage_profile.data_disks]
+ if vm.storage_profile.data_disks else [])
+ lun = max(luns) + 1 if luns else 0
+ if new:
+ if not size_gb:
+ raise CLIError('usage error: --size-gb required to create an empty disk for attach')
+ data_disk = DataDisk(lun, DiskCreateOption.empty,
+ name=parse_resource_id(disk)['name'],
+ disk_size_gb=size_gb, caching=caching,
+ managed_disk=ManagedDiskParameters(storage_account_type=sku))
+ else:
+ params = ManagedDiskParameters(id=disk, storage_account_type=sku)
+ data_disk = DataDisk(lun, DiskCreateOption.attach, managed_disk=params, caching=caching)
-def list_vmss_extensions(resource_group_name, vmss_name):
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name,
- vmss_name)
- # pylint: disable=no-member
- return None if not vmss.virtual_machine_profile.extension_profile \
- else vmss.virtual_machine_profile.extension_profile.extensions
+ vm.storage_profile.data_disks.append(data_disk)
+ set_vm(cmd, vm)
-def delete_vmss_extension(resource_group_name, vmss_name, extension_name):
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name,
- vmss_name)
+def detach_data_disk(cmd, resource_group_name, vm_name, disk_name):
+ # here we handle both unmanaged or managed disk
+ vm = get_vm(cmd, resource_group_name, vm_name)
# pylint: disable=no-member
- if not vmss.virtual_machine_profile.extension_profile:
- raise CLIError('Scale set has no extensions to delete')
+ leftovers = [d for d in vm.storage_profile.data_disks if d.name.lower() != disk_name.lower()]
+ if len(vm.storage_profile.data_disks) == len(leftovers):
+ raise CLIError("No disk with the name '{}' was found".format(disk_name))
+ vm.storage_profile.data_disks = leftovers
+ set_vm(cmd, vm)
+# endregion
- keep_list = [e for e in vmss.virtual_machine_profile.extension_profile.extensions
- if e.name != extension_name]
- if len(keep_list) == len(vmss.virtual_machine_profile.extension_profile.extensions):
- raise CLIError('Extension {} not found'.format(extension_name))
- vmss.virtual_machine_profile.extension_profile.extensions = keep_list
+# region VirtualMachines Extensions
+def list_extensions(cmd, resource_group_name, vm_name):
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ extension_type = 'Microsoft.Compute/virtualMachines/extensions'
+ result = [r for r in (vm.resources or []) if r.type == extension_type]
+ return result
- return client.virtual_machine_scale_sets.create_or_update(resource_group_name,
- vmss_name,
- vmss)
+def set_extension(
+ cmd, resource_group_name, vm_name, vm_extension_name, publisher,
+ version=None, settings=None,
+ protected_settings=None, no_auto_upgrade=False):
+ vm = get_vm(cmd, resource_group_name, vm_name, 'instanceView')
+ client = _compute_client_factory(cmd.cli_ctx)
-def _get_private_config(resource_group_name, storage_account):
- storage_mgmt_client = _get_storage_management_client()
- # pylint: disable=no-member
- keys = storage_mgmt_client.storage_accounts.list_keys(resource_group_name, storage_account).keys
+ VirtualMachineExtension = cmd.get_models('VirtualMachineExtension')
+ instance_name = _get_extension_instance_name(vm.instance_view, publisher, vm_extension_name)
+ version = _normalize_extension_version(cmd.cli_ctx, publisher, vm_extension_name, version, vm.location)
+ ext = VirtualMachineExtension(vm.location,
+ publisher=publisher,
+ virtual_machine_extension_type=vm_extension_name,
+ protected_settings=protected_settings,
+ type_handler_version=version,
+ settings=settings,
+ auto_upgrade_minor_version=(not no_auto_upgrade))
+ return client.virtual_machine_extensions.create_or_update(resource_group_name, vm_name, instance_name, ext)
+# endregion
- private_config = {
- 'storageAccountName': storage_account,
- 'storageAccountKey': keys[0].value
- }
- return private_config
+# region VirtualMachines Extension Images
+def list_vm_extension_images(
+ cmd, image_location=None, publisher_name=None, name=None, version=None, latest=False):
+ return load_extension_images_thru_services(
+ cmd.cli_ctx, publisher_name, name, version, image_location, latest)
+# endregion
-def _merge_secrets(secrets):
- """
- Merge a list of secrets. Each secret should be a dict fitting the following JSON structure:
- [{ "sourceVault": { "id": "value" },
- "vaultCertificates": [{ "certificateUrl": "value",
- "certificateStore": "cert store name (only on windows)"}] }]
- The array of secrets is merged on sourceVault.id.
- :param secrets:
- :return:
- """
- merged = {}
- vc_name = 'vaultCertificates'
- for outer in secrets:
- for secret in outer:
- if secret['sourceVault']['id'] not in merged:
- merged[secret['sourceVault']['id']] = []
- merged[secret['sourceVault']['id']] = \
- secret[vc_name] + merged[secret['sourceVault']['id']]
- # transform the reduced map to vm format
- formatted = [{'sourceVault': {'id': source_id},
- 'vaultCertificates': value}
- for source_id, value in list(merged.items())]
- return formatted
+# region VirtualMachines Images
+def list_vm_images(cmd, image_location=None, publisher_name=None, offer=None, sku=None,
+ all=False): # pylint: disable=redefined-builtin
+ load_thru_services = all
+ if load_thru_services:
+ if not publisher_name and not offer and not sku:
+ logger.warning("You are retrieving all the images from server which could take more than a minute. "
+ "To shorten the wait, provide '--publisher', '--offer' or '--sku'. Partial name search "
+ "is supported.")
+ all_images = load_images_thru_services(cmd.cli_ctx, publisher_name, offer, sku, image_location)
+ else:
+ all_images = load_images_from_aliases_doc(cmd.cli_ctx, publisher_name, offer, sku)
+ logger.warning(
+ 'You are viewing an offline list of images, use --all to retrieve an up-to-date list')
-def show_default_diagnostics_configuration(is_windows_os=False):
- '''show the default config file which defines data to be collected'''
- public_settings = get_default_diag_config(is_windows_os)
- # pylint: disable=line-too-long
- protected_settings_info = json.dumps({
- 'storageAccountName': "__STORAGE_ACCOUNT_NAME__",
- # LAD and WAD are not consistent on sas token format. Call it out here
- "storageAccountSasToken": "__SAS_TOKEN_{}__".format("WITH_LEADING_QUESTION_MARK" if is_windows_os else "WITHOUT_LEADING_QUESTION_MARK")
- }, indent=2)
- logger.warning('Protected settings with storage account info is required to work with the default configurations, e.g. \n' + protected_settings_info)
- return public_settings
+ for i in all_images:
+ i['urn'] = ':'.join([i['publisher'], i['offer'], i['sku'], i['version']])
+ return all_images
+# endregion
-def vm_show_nic(resource_group_name, vm_name, nic):
- ''' Show details of a network interface configuration attached to a virtual machine '''
- vm = get_vm(resource_group_name, vm_name)
+# region VirtualMachines NetworkInterfaces (NICs)
+def show_vm_nic(cmd, resource_group_name, vm_name, nic):
+ vm = get_vm(cmd, resource_group_name, vm_name)
found = next(
(n for n in vm.network_profile.network_interfaces if nic.lower() == n.id.lower()), None
# pylint: disable=no-member
)
if found:
- network_client = get_mgmt_service_client(ResourceType.MGMT_NETWORK)
+ network_client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_NETWORK)
nic_name = parse_resource_id(found.id)['name']
return network_client.network_interfaces.get(resource_group_name, nic_name)
else:
raise CLIError("NIC '{}' not found on VM '{}'".format(nic, vm_name))
-def vm_list_nics(resource_group_name, vm_name):
- ''' List network interface configurations attached to a virtual machine '''
- vm = get_vm(resource_group_name, vm_name)
+def list_vm_nics(cmd, resource_group_name, vm_name):
+ vm = get_vm(cmd, resource_group_name, vm_name)
return vm.network_profile.network_interfaces # pylint: disable=no-member
-def vm_add_nics(resource_group_name, vm_name, nics, primary_nic=None):
- ''' Add network interface configurations to the virtual machine
- :param str nic_ids: NIC resource IDs
- :param str nic_names: NIC names, assuming under the same resource group
- :param str primary_nic: name or id of the primary NIC. If missing, the first of the
- NIC list will be the primary
- '''
- vm = get_vm(resource_group_name, vm_name)
- new_nics = _build_nic_list(nics)
+def add_vm_nic(cmd, resource_group_name, vm_name, nics, primary_nic=None):
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ new_nics = _build_nic_list(cmd, nics)
existing_nics = _get_existing_nics(vm)
- return _update_vm_nics(vm, existing_nics + new_nics, primary_nic)
+ return _update_vm_nics(cmd, vm, existing_nics + new_nics, primary_nic)
-def vm_remove_nics(resource_group_name, vm_name, nics, primary_nic=None):
- ''' Remove network interface configurations from the virtual machine
- :param str nic_ids: NIC resource IDs
- :param str nic_names: NIC names, assuming under the same resource group
- :param str primary_nic: name or id of the primary NIC. If missing, the first of the
- NIC list will be the primary
- '''
+def remove_vm_nic(cmd, resource_group_name, vm_name, nics, primary_nic=None):
def to_delete(nic_id):
return [n for n in nics_to_delete if n.id.lower() == nic_id.lower()]
- vm = get_vm(resource_group_name, vm_name)
- nics_to_delete = _build_nic_list(nics)
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ nics_to_delete = _build_nic_list(cmd, nics)
existing_nics = _get_existing_nics(vm)
survived = [x for x in existing_nics if not to_delete(x.id)]
- return _update_vm_nics(vm, survived, primary_nic)
-
-
-def vm_set_nics(resource_group_name, vm_name, nics, primary_nic=None):
- ''' Replace existing network interface configurations on the virtual machine
- :param str nic_ids: NIC resource IDs
- :param str nic_names: NIC names, assuming under the same resource group
- :param str primary_nic: name or id of the primary nic. If missing, the first element of
- nic list will be set to the primary
- '''
- vm = get_vm(resource_group_name, vm_name)
- nics = _build_nic_list(nics)
- return _update_vm_nics(vm, nics, primary_nic)
-
+ return _update_vm_nics(cmd, vm, survived, primary_nic)
-# pylint: disable=no-member
+def set_vm_nic(cmd, resource_group_name, vm_name, nics, primary_nic=None):
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ nics = _build_nic_list(cmd, nics)
+ return _update_vm_nics(cmd, vm, nics, primary_nic)
-def vm_open_port(resource_group_name, vm_name, port, priority=900, network_security_group_name=None,
- apply_to_subnet=False):
- """ Opens a VM to inbound traffic on specified ports by adding a security rule to the network
- security group (NSG) that is attached to the VM's network interface (NIC) or subnet. The
- existing NSG will be used or a new one will be created. The rule name is 'open-port-{port}' and
- will overwrite an existing rule with this name. For multi-NIC VMs, or for more fine
- grained control, use the appropriate network commands directly (nsg rule create, etc).
- """
- network = get_mgmt_service_client(ResourceType.MGMT_NETWORK)
-
- vm = get_vm(resource_group_name, vm_name)
- location = vm.location
- nic_ids = list(vm.network_profile.network_interfaces)
- if len(nic_ids) > 1:
- raise CLIError('Multiple NICs is not supported for this command. Create rules on the NSG '
- 'directly.')
- elif not nic_ids:
- raise CLIError("No NIC associated with VM '{}'".format(vm_name))
-
- # get existing NSG or create a new one
- created_nsg = False
- nic = network.network_interfaces.get(resource_group_name, os.path.split(nic_ids[0].id)[1])
- if not apply_to_subnet:
- nsg = nic.network_security_group
- else:
- subnet_id = parse_resource_id(nic.ip_configurations[0].subnet.id)
- subnet = network.subnets.get(resource_group_name,
- subnet_id['name'],
- subnet_id['child_name_1'])
- nsg = subnet.network_security_group
-
- if not nsg:
- NetworkSecurityGroup = \
- get_sdk(ResourceType.MGMT_NETWORK, 'NetworkSecurityGroup', mod='models')
- nsg = LongRunningOperation('Creating network security group')(
- network.network_security_groups.create_or_update(
- resource_group_name=resource_group_name,
- network_security_group_name=network_security_group_name,
- parameters=NetworkSecurityGroup(location=location)
- )
- )
- created_nsg = True
-
- # update the NSG with the new rule to allow inbound traffic
- SecurityRule = get_sdk(ResourceType.MGMT_NETWORK, 'SecurityRule', mod='models')
- rule_name = 'open-port-all' if port == '*' else 'open-port-{}'.format(port)
- rule = SecurityRule(protocol='*', access='allow', direction='inbound', name=rule_name,
- source_port_range='*', destination_port_range=port, priority=priority,
- source_address_prefix='*', destination_address_prefix='*')
- nsg_name = nsg.name or os.path.split(nsg.id)[1]
- LongRunningOperation('Adding security rule')(
- network.security_rules.create_or_update(
- resource_group_name, nsg_name, rule_name, rule)
- )
-
- # update the NIC or subnet if a new NSG was created
- if created_nsg and not apply_to_subnet:
- nic.network_security_group = nsg
- LongRunningOperation('Updating NIC')(network.network_interfaces.create_or_update(
- resource_group_name, nic.name, nic))
- elif created_nsg and apply_to_subnet:
- subnet.network_security_group = nsg
- LongRunningOperation('Updating subnet')(network.subnets.create_or_update(
- resource_group_name=resource_group_name,
- virtual_network_name=subnet_id['name'],
- subnet_name=subnet_id['child_name_1'],
- subnet_parameters=subnet
- ))
-
- return network.network_security_groups.get(resource_group_name, nsg_name)
-def _build_nic_list(nic_ids):
- NetworkInterfaceReference = get_sdk(ResourceType.MGMT_COMPUTE, 'NetworkInterfaceReference', mod='models')
+def _build_nic_list(cmd, nic_ids):
+ NetworkInterfaceReference = cmd.get_models('NetworkInterfaceReference')
nic_list = []
if nic_ids:
# pylint: disable=no-member
- network_client = get_mgmt_service_client(ResourceType.MGMT_NETWORK)
+ network_client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_NETWORK)
for nic_id in nic_ids:
rg, name = _parse_rg_name(nic_id)
nic = network_client.network_interfaces.get(rg, name)
@@ -1306,453 +1208,356 @@ def _get_existing_nics(vm):
return nics
-def _update_vm_nics(vm, nics, primary_nic):
- NetworkProfile = get_sdk(ResourceType.MGMT_COMPUTE, 'NetworkProfile', mod='models')
+def _update_vm_nics(cmd, vm, nics, primary_nic):
+ NetworkProfile = cmd.get_models('NetworkProfile')
if primary_nic:
- try:
- _, primary_nic_name = _parse_rg_name(primary_nic)
- except IndexError:
- primary_nic_name = primary_nic
-
- matched = [n for n in nics if _parse_rg_name(n.id)[1].lower() == primary_nic_name.lower()]
- if not matched:
- raise CLIError('Primary Nic {} is not found'.format(primary_nic))
- if len(matched) > 1:
- raise CLIError('Duplicate Nic entries with name {}'.format(primary_nic))
- for n in nics:
- n.primary = False
- matched[0].primary = True
- elif nics:
- if not [n for n in nics if n.primary]:
- nics[0].primary = True
-
- network_profile = getattr(vm, 'network_profile', None)
- if network_profile is None:
- vm.network_profile = NetworkProfile(nics)
- else:
- network_profile.network_interfaces = nics
-
- return set_vm(vm).network_profile.network_interfaces
-
-
-def scale_vmss(resource_group_name, vm_scale_set_name, new_capacity, no_wait=False):
- '''change the number of VMs in an virtual machine scale set
-
- :param int new_capacity: number of virtual machines in a scale set
- '''
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name, vm_scale_set_name)
- # pylint: disable=no-member
- if vmss.sku.capacity == new_capacity:
- return
- else:
- vmss.sku.capacity = new_capacity
- vmss_new = VirtualMachineScaleSet(vmss.location, sku=vmss.sku)
- return client.virtual_machine_scale_sets.create_or_update(resource_group_name,
- vm_scale_set_name,
- vmss_new,
- raw=no_wait)
-
-
-def update_vmss_instances(resource_group_name, vm_scale_set_name, instance_ids, no_wait=False):
- '''upgrade virtual machines in a virtual machine scale set'''
- client = _compute_client_factory()
- return client.virtual_machine_scale_sets.update_instances(resource_group_name,
- vm_scale_set_name,
- instance_ids,
- raw=no_wait)
-
-
-def get_vmss_instance_view(resource_group_name, vm_scale_set_name, instance_id=None):
- '''get instance view for a scale set or its VM instances
-
- :param str instance_id: an VM instance id, or use "*" to list instance view for
- all VMs in a scale set
- '''
- client = _compute_client_factory()
- if instance_id:
- if instance_id == '*':
-
- return [x.instance_view for x in (client.virtual_machine_scale_set_vms.list(
- resource_group_name, vm_scale_set_name, select='instanceView', expand='instanceView'))]
-
- return client.virtual_machine_scale_set_vms.get_instance_view(resource_group_name, vm_scale_set_name,
- instance_id)
-
- return client.virtual_machine_scale_sets.get_instance_view(resource_group_name, vm_scale_set_name)
-
-
-def show_vmss(resource_group_name, vm_scale_set_name, instance_id=None):
- '''show scale set or its VM instance
-
- :param str instance_id: VM instance id. If missing, show scale set
- '''
- client = _compute_client_factory()
- if instance_id:
- return client.virtual_machine_scale_set_vms.get(resource_group_name, vm_scale_set_name, instance_id)
-
- return client.virtual_machine_scale_sets.get(resource_group_name, vm_scale_set_name)
-
-
-def list_vmss(resource_group_name=None):
- '''list scale sets'''
- client = _compute_client_factory()
- if resource_group_name:
- return client.virtual_machine_scale_sets.list(resource_group_name)
-
- return client.virtual_machine_scale_sets.list_all()
-
-
-def deallocate_vmss(resource_group_name, vm_scale_set_name, instance_ids=None, no_wait=False):
- '''deallocate virtual machines in a scale set. '''
- client = _compute_client_factory()
- if instance_ids and len(instance_ids) == 1:
- return client.virtual_machine_scale_set_vms.deallocate(resource_group_name, vm_scale_set_name, instance_ids[0],
- raw=no_wait)
+ try:
+ _, primary_nic_name = _parse_rg_name(primary_nic)
+ except IndexError:
+ primary_nic_name = primary_nic
- return client.virtual_machine_scale_sets.deallocate(resource_group_name, vm_scale_set_name,
- instance_ids=instance_ids, raw=no_wait)
+ matched = [n for n in nics if _parse_rg_name(n.id)[1].lower() == primary_nic_name.lower()]
+ if not matched:
+ raise CLIError('Primary Nic {} is not found'.format(primary_nic))
+ if len(matched) > 1:
+ raise CLIError('Duplicate Nic entries with name {}'.format(primary_nic))
+ for n in nics:
+ n.primary = False
+ matched[0].primary = True
+ elif nics:
+ if not [n for n in nics if n.primary]:
+ nics[0].primary = True
+ network_profile = getattr(vm, 'network_profile', None)
+ if network_profile is None:
+ vm.network_profile = NetworkProfile(nics)
+ else:
+ network_profile.network_interfaces = nics
-def delete_vmss_instances(resource_group_name, vm_scale_set_name, instance_ids, no_wait=False):
- '''delete virtual machines in a scale set.'''
- client = _compute_client_factory()
- if len(instance_ids) == 1:
- return client.virtual_machine_scale_set_vms.delete(resource_group_name, vm_scale_set_name, instance_ids[0],
- raw=no_wait)
+ return set_vm(cmd, vm).network_profile.network_interfaces
+# endregion
- return client.virtual_machine_scale_sets.delete_instances(resource_group_name, vm_scale_set_name, instance_ids,
- raw=no_wait)
+# region VirtualMachines RunCommand
+def run_command_invoke(cmd, resource_group_name, vm_name, command_id, scripts=None, parameters=None):
+ RunCommandInput, RunCommandInputParameter = cmd.get_models('RunCommandInput', 'RunCommandInputParameter')
-def stop_vmss(resource_group_name, vm_scale_set_name, instance_ids=None, no_wait=False):
- '''power off (stop) virtual machines in a virtual machine scale set.'''
- client = _compute_client_factory()
- if instance_ids and len(instance_ids) == 1:
- return client.virtual_machine_scale_set_vms.power_off(resource_group_name, vm_scale_set_name,
- instance_ids[0], raw=no_wait)
+ parameters = parameters or []
+ run_command_input_parameters = []
+ auto_arg_name_num = 0
+ for p in parameters:
+ if '=' in p:
+ n, v = p.split('=', 1)
+ else:
+ # RunCommand API requires named arguments, which doesn't make lots of sense for bash scripts
+ # using positional arguments, so here we provide names just to get API happy
+ # note, we don't handle mixing styles, but will consolidate by GA when API is settled
+ auto_arg_name_num += 1
+ n = 'arg{}'.format(auto_arg_name_num)
+ v = p
+ run_command_input_parameters.append(RunCommandInputParameter(n, v))
- return client.virtual_machine_scale_sets.power_off(resource_group_name, vm_scale_set_name,
- instance_ids=instance_ids, raw=no_wait)
+ client = _compute_client_factory(cmd.cli_ctx)
+ return client.virtual_machines.run_command(resource_group_name, vm_name,
+ RunCommandInput(command_id=command_id, script=scripts,
+ parameters=run_command_input_parameters))
+# endregion
-def reimage_vmss(resource_group_name, vm_scale_set_name, instance_id=None, no_wait=False):
- '''reimage virtual machines in a virtual machine scale set.
+# region VirtualMachines Secrets
+def _get_vault_id_from_name(cli_ctx, client, vault_name):
+ group_name = _get_resource_group_from_vault_name(cli_ctx, vault_name)
+ vault = client.get(group_name, vault_name)
+ return vault.id
- :param str instance_id: VM instance id. If missing, reimage all instances
- '''
- client = _compute_client_factory()
- if instance_id:
- return client.virtual_machine_scale_set_vms.reimage(resource_group_name, vm_scale_set_name, instance_id,
- raw=no_wait)
- return client.virtual_machine_scale_sets.reimage(resource_group_name, vm_scale_set_name, raw=no_wait)
+def get_vm_format_secret(cmd, secrets, certificate_store=None):
+ from azure.mgmt.keyvault import KeyVaultManagementClient
+ client = get_mgmt_service_client(cmd.cli_ctx, KeyVaultManagementClient).vaults
+ grouped_secrets = {}
+ merged_secrets = []
+ for s in secrets:
+ merged_secrets += s.splitlines()
-def restart_vmss(resource_group_name, vm_scale_set_name, instance_ids=None, no_wait=False):
- '''restart virtual machines in a scale set.'''
- client = _compute_client_factory()
- if instance_ids and len(instance_ids) == 1:
- return client.virtual_machine_scale_set_vms.restart(resource_group_name, vm_scale_set_name, instance_ids[0],
- raw=no_wait)
- return client.virtual_machine_scale_sets.restart(resource_group_name, vm_scale_set_name, instance_ids=instance_ids,
- raw=no_wait)
+ # group secrets by source vault
+ for secret in merged_secrets:
+ parsed = KeyVaultId.parse_secret_id(secret)
+ match = re.search('://(.+?)\\.', parsed.vault)
+ vault_name = match.group(1)
+ if vault_name not in grouped_secrets:
+ grouped_secrets[vault_name] = {
+ 'vaultCertificates': [],
+ 'id': _get_vault_id_from_name(cmd.cli_ctx, client, vault_name)
+ }
+ vault_cert = {'certificateUrl': secret}
+ if certificate_store:
+ vault_cert['certificateStore'] = certificate_store
-def start_vmss(resource_group_name, vm_scale_set_name, instance_ids=None, no_wait=False):
- '''start virtual machines in a virtual machine scale set.'''
- client = _compute_client_factory()
- if instance_ids and len(instance_ids) == 1:
- return client.virtual_machine_scale_set_vms.start(resource_group_name, vm_scale_set_name, instance_ids[0],
- raw=no_wait)
+ grouped_secrets[vault_name]['vaultCertificates'].append(vault_cert)
- return client.virtual_machine_scale_sets.start(resource_group_name, vm_scale_set_name, instance_ids=instance_ids,
- raw=no_wait)
+ # transform the reduced map to vm format
+ formatted = [{'sourceVault': {'id': value['id']},
+ 'vaultCertificates': value['vaultCertificates']}
+ for _, value in list(grouped_secrets.items())]
+ return formatted
-def list_vmss_instance_connection_info(resource_group_name, vm_scale_set_name):
- client = _compute_client_factory()
- vmss = client.virtual_machine_scale_sets.get(resource_group_name,
- vm_scale_set_name)
- # find the load balancer
- nic_configs = vmss.virtual_machine_profile.network_profile.network_interface_configurations
- primary_nic_config = next((n for n in nic_configs if n.primary), None)
- if primary_nic_config is None:
- raise CLIError('could not find a primary nic which is needed to search to load balancer')
- ip_configs = primary_nic_config.ip_configurations
- ip_config = next((ip for ip in ip_configs if ip.load_balancer_inbound_nat_pools), None)
- if not ip_config:
- raise CLIError('No load-balancer exist to retrieve public ip address')
- res_id = ip_config.load_balancer_inbound_nat_pools[0].id
- lb_info = parse_resource_id(res_id)
- lb_name = lb_info['name']
- lb_rg = lb_info['resource_group']
- # get public ip
- network_client = get_mgmt_service_client(ResourceType.MGMT_NETWORK)
- lb = network_client.load_balancers.get(lb_rg, lb_name)
- if getattr(lb.frontend_ip_configurations[0], 'public_ip_address', None):
- res_id = lb.frontend_ip_configurations[0].public_ip_address.id
- public_ip_info = parse_resource_id(res_id)
- public_ip_name = public_ip_info['name']
- public_ip_rg = public_ip_info['resource_group']
- public_ip = network_client.public_ip_addresses.get(public_ip_rg, public_ip_name)
- public_ip_address = public_ip.ip_address
+def add_vm_secret(cmd, resource_group_name, vm_name, keyvault, certificate, certificate_store=None):
+ from ._vm_utils import create_keyvault_data_plane_client, get_key_vault_base_url
+ VaultSecretGroup, SourceVault, VaultCertificate = cmd.get_models(
+ 'VaultSecretGroup', 'SourceVault', 'VaultCertificate')
+ vm = get_vm(cmd, resource_group_name, vm_name)
- # loop around inboundnatrule
- instance_addresses = {}
- for rule in lb.inbound_nat_rules:
- instance_id = parse_resource_id(rule.backend_ip_configuration.id)['child_name_1']
- instance_addresses['instance ' + instance_id] = '{}:{}'.format(public_ip_address,
- rule.frontend_port)
+ if '://' not in certificate: # has a cert name rather a full url?
+ keyvault_client = create_keyvault_data_plane_client()
+ cert_info = keyvault_client.get_certificate(get_key_vault_base_url(parse_resource_id(keyvault)['name']),
+ certificate, '')
+ certificate = cert_info.sid
- return instance_addresses
+ if not _is_linux_vm(vm):
+ certificate_store = certificate_store or 'My'
+ elif certificate_store:
+ raise CLIError('Usage error: --certificate-store is only applicable on Windows VM')
+ vault_cert = VaultCertificate(certificate_url=certificate, certificate_store=certificate_store)
+ vault_secret_group = next((x for x in vm.os_profile.secrets
+ if x.source_vault and x.source_vault.id.lower() == keyvault.lower()), None)
+ if vault_secret_group:
+ vault_secret_group.vault_certificates.append(vault_cert)
else:
- raise CLIError('The VM scale-set uses an internal load balancer, hence no connection information')
+ vault_secret_group = VaultSecretGroup(source_vault=SourceVault(keyvault), vault_certificates=[vault_cert])
+ vm.os_profile.secrets.append(vault_secret_group)
+ vm = set_vm(cmd, vm)
+ return vm.os_profile.secrets
-def list_vmss_instance_public_ips(resource_group_name, vm_scale_set_name):
- result = cf_public_ip_addresses().list_virtual_machine_scale_set_public_ip_addresses(resource_group_name,
- vm_scale_set_name)
- # filter away over-provisioned instances which are deleted after 'create/update' returns
- return [r for r in result if r.ip_address]
+def list_vm_secrets(cmd, resource_group_name, vm_name):
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ return vm.os_profile.secrets
-def availset_get(resource_group_name, name):
- return _compute_client_factory().availability_sets.get(resource_group_name, name)
+def remove_vm_secret(cmd, resource_group_name, vm_name, keyvault, certificate=None):
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ # support 2 kinds of filter:
+ # a. if only keyvault is supplied, we delete its whole vault group.
+ # b. if both keyvault and certificate are supplied, we only delete the specific cert entry.
-def availset_set(resource_group_name, name, **kwargs):
- return _compute_client_factory().availability_sets.create_or_update(resource_group_name, name,
- **kwargs)
+ to_keep = vm.os_profile.secrets
+ keyvault_matched = []
+ if keyvault:
+ keyvault = keyvault.lower()
+ keyvault_matched = [x for x in to_keep if x.source_vault and x.source_vault.id.lower() == keyvault]
+ if keyvault and not certificate:
+ to_keep = [x for x in to_keep if x not in keyvault_matched]
+ elif certificate:
+ temp = keyvault_matched if keyvault else to_keep
+ cert_url_pattern = certificate.lower()
+ if '://' not in cert_url_pattern: # just a cert name?
+ cert_url_pattern = '/' + cert_url_pattern + '/'
+ for x in temp:
+ x.vault_certificates = ([v for v in x.vault_certificates
+ if not(v.certificate_url and cert_url_pattern in v.certificate_url.lower())])
+ to_keep = [x for x in to_keep if x.vault_certificates] # purge all groups w/o any cert entries
-def vmss_get(resource_group_name, name):
- return _compute_client_factory().virtual_machine_scale_sets.get(resource_group_name, name)
+ vm.os_profile.secrets = to_keep
+ vm = set_vm(cmd, vm)
+ return vm.os_profile.secrets
+# endregion
-def vmss_set(resource_group_name, name, no_wait=False, **kwargs):
- return _compute_client_factory().virtual_machine_scale_sets.create_or_update(
- resource_group_name, name, raw=no_wait, **kwargs)
+# region VirtualMachines UnmanagedDisks
+def attach_unmanaged_data_disk(cmd, resource_group_name, vm_name, new=False, vhd_uri=None, lun=None,
+ disk_name=None, size_gb=1023, caching=None):
+ DataDisk, DiskCreateOptionTypes, VirtualHardDisk = cmd.get_models(
+ 'DataDisk', 'DiskCreateOptionTypes', 'VirtualHardDisk')
+ if not new and not disk_name:
+ raise CLIError('Pleae provide the name of the existing disk to attach')
+ create_option = DiskCreateOptionTypes.empty if new else DiskCreateOptionTypes.attach
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ if disk_name is None:
+ import datetime
+ disk_name = vm_name + '-' + datetime.datetime.now().strftime("%Y-%m-%d-%H-%M-%S")
+ # pylint: disable=no-member
+ if vhd_uri is None:
+ if not hasattr(vm.storage_profile.os_disk, 'vhd') or not vm.storage_profile.os_disk.vhd:
+ raise CLIError('Adding unmanaged disks to a VM with managed disks is not supported')
+ blob_uri = vm.storage_profile.os_disk.vhd.uri
+ vhd_uri = blob_uri[0:blob_uri.rindex('/') + 1] + disk_name + '.vhd'
-def convert_av_set_to_managed_disk(resource_group_name, availability_set_name):
- av_set = availset_get(resource_group_name, availability_set_name)
- if av_set.sku.name != 'Aligned':
- av_set.sku.name = 'Aligned'
+ if lun is None:
+ lun = _get_disk_lun(vm.storage_profile.data_disks)
+ disk = DataDisk(lun=lun, vhd=VirtualHardDisk(vhd_uri), name=disk_name,
+ create_option=create_option,
+ caching=caching, disk_size_gb=size_gb if new else None)
+ if vm.storage_profile.data_disks is None:
+ vm.storage_profile.data_disks = []
+ vm.storage_profile.data_disks.append(disk)
+ return set_vm(cmd, vm)
- # let us double check whether the existing FD number is supported
- skus = list_skus(av_set.location)
- av_sku = next((s for s in skus if s.resource_type == 'availabilitySets' and s.name == 'Aligned'), None)
- if av_sku and av_sku.capabilities:
- max_fd = int(next((c.value for c in av_sku.capabilities if c.name == 'MaximumPlatformFaultDomainCount'),
- '0'))
- if max_fd and max_fd < av_set.platform_fault_domain_count:
- logger.warning("The fault domain count will be adjusted from {} to {} so to stay within region's "
- "limitation".format(av_set.platform_fault_domain_count, max_fd))
- av_set.platform_fault_domain_count = max_fd
- return availset_set(resource_group_name=resource_group_name, name=availability_set_name,
- parameters=av_set)
- else:
- logger.warning('Availability set {} is already configured for managed disks.'.format(availability_set_name))
+def list_unmanaged_disks(cmd, resource_group_name, vm_name):
+ vm = get_vm(cmd, resource_group_name, vm_name)
+ return vm.storage_profile.data_disks # pylint: disable=no-member
+# endregion
-# pylint: disable=too-many-locals, unused-argument, too-many-statements, too-many-branches
-def create_vm(vm_name, resource_group_name, image=None, size='Standard_DS1_v2', location=None, tags=None,
- no_wait=False, authentication_type=None, admin_password=None,
- admin_username=DefaultStr(getpass.getuser()), ssh_dest_key_path=None, ssh_key_value=None,
- generate_ssh_keys=False, availability_set=None, nics=None, nsg=None, nsg_rule=None,
- private_ip_address=None, public_ip_address=None, public_ip_address_allocation='dynamic',
- public_ip_address_dns_name=None, os_disk_name=None, os_type=None, storage_account=None,
- os_caching=None, data_caching=None, storage_container_name=None, storage_sku=None,
- use_unmanaged_disk=False, attach_os_disk=None, os_disk_size_gb=None,
- attach_data_disks=None, data_disk_sizes_gb=None, image_data_disks=None,
- vnet_name=None, vnet_address_prefix='10.0.0.0/16', subnet=None, subnet_address_prefix='10.0.0.0/24',
- storage_profile=None, os_publisher=None, os_offer=None, os_sku=None, os_version=None,
- storage_account_type=None, vnet_type=None, nsg_type=None, public_ip_type=None, nic_type=None,
- validate=False, custom_data=None, secrets=None, plan_name=None, plan_product=None, plan_publisher=None,
- plan_promotion_code=None, license_type=None, assign_identity=False, identity_scope=None,
- identity_role=DefaultStr('Contributor'), identity_role_id=None, application_security_groups=None,
- zone=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.command_modules.vm._template_builder import (ArmTemplateBuilder, build_vm_resource,
- build_storage_account_resource, build_nic_resource,
- build_vnet_resource, build_nsg_resource,
- build_public_ip_resource, StorageProfile,
- build_msi_role_assignment, build_vm_msi_extension)
+# region VirtualMachines Users
+def _update_linux_access_extension(cmd, vm_instance, resource_group_name, protected_settings,
+ no_wait=False):
+ client = _compute_client_factory(cmd.cli_ctx)
- from azure.cli.core._profile import CLOUD
- subscription_id = get_subscription_id()
- network_id_template = resource_id(
- subscription=subscription_id, resource_group=resource_group_name,
- namespace='Microsoft.Network')
+ VirtualMachineExtension = cmd.get_models('VirtualMachineExtension')
- vm_id = resource_id(
- subscription=subscription_id, resource_group=resource_group_name,
- namespace='Microsoft.Compute', type='virtualMachines', name=vm_name)
+ # pylint: disable=no-member
+ instance_name = _get_extension_instance_name(vm_instance.instance_view,
+ extension_mappings[_LINUX_ACCESS_EXT]['publisher'],
+ _LINUX_ACCESS_EXT,
+ _ACCESS_EXT_HANDLER_NAME)
- # determine final defaults and calculated values
- tags = tags or {}
- os_disk_name = os_disk_name or ('osdisk_{}'.format(hash_string(vm_id, length=10)) if use_unmanaged_disk else None)
- storage_container_name = storage_container_name or 'vhds'
+ publisher, version, auto_upgrade = _get_access_extension_upgrade_info(
+ vm_instance.resources, _LINUX_ACCESS_EXT)
- # Build up the ARM template
- master_template = ArmTemplateBuilder()
+ ext = VirtualMachineExtension(vm_instance.location, # pylint: disable=no-member
+ publisher=publisher,
+ virtual_machine_extension_type=_LINUX_ACCESS_EXT,
+ protected_settings=protected_settings,
+ type_handler_version=version,
+ settings={},
+ auto_upgrade_minor_version=auto_upgrade)
+ return client.virtual_machine_extensions.create_or_update(resource_group_name,
+ vm_instance.name,
+ instance_name, ext,
+ raw=no_wait)
- vm_dependencies = []
- if storage_account_type == 'new':
- storage_account = storage_account or 'vhdstorage{}'.format(
- hash_string(vm_id, length=14, force_lower=True))
- vm_dependencies.append('Microsoft.Storage/storageAccounts/{}'.format(storage_account))
- master_template.add_resource(build_storage_account_resource(storage_account, location,
- tags, storage_sku))
- nic_name = None
- if nic_type == 'new':
- nic_name = '{}VMNic'.format(vm_name)
- vm_dependencies.append('Microsoft.Network/networkInterfaces/{}'.format(nic_name))
+def _set_linux_user(cmd, vm_instance, resource_group_name, username,
+ password=None, ssh_key_value=None, no_wait=False):
+ protected_settings = {}
+ protected_settings['username'] = username
+ if password:
+ protected_settings['password'] = password
+ elif not ssh_key_value and not password: # default to ssh
+ ssh_key_value = os.path.join(os.path.expanduser('~'), '.ssh', 'id_rsa.pub')
- nic_dependencies = []
- if vnet_type == 'new':
- vnet_name = vnet_name or '{}VNET'.format(vm_name)
- subnet = subnet or '{}Subnet'.format(vm_name)
- nic_dependencies.append('Microsoft.Network/virtualNetworks/{}'.format(vnet_name))
- master_template.add_resource(build_vnet_resource(
- vnet_name, location, tags, vnet_address_prefix, subnet, subnet_address_prefix))
+ if ssh_key_value:
+ protected_settings['ssh_key'] = read_content_if_is_file(ssh_key_value)
- if nsg_type == 'new':
- nsg_rule_type = 'rdp' if os_type.lower() == 'windows' else 'ssh'
- nsg = nsg or '{}NSG'.format(vm_name)
- nic_dependencies.append('Microsoft.Network/networkSecurityGroups/{}'.format(nsg))
- master_template.add_resource(build_nsg_resource(nsg, location, tags, nsg_rule_type))
+ if no_wait:
+ return _update_linux_access_extension(cmd, vm_instance, resource_group_name,
+ protected_settings, no_wait)
+ poller = _update_linux_access_extension(cmd, vm_instance, resource_group_name,
+ protected_settings)
+ return ExtensionUpdateLongRunningOperation(cmd.cli_ctx, 'setting user', 'done')(poller)
- if public_ip_type == 'new':
- public_ip_address = public_ip_address or '{}PublicIP'.format(vm_name)
- nic_dependencies.append('Microsoft.Network/publicIpAddresses/{}'.format(
- public_ip_address))
- master_template.add_resource(build_public_ip_resource(public_ip_address, location,
- tags,
- public_ip_address_allocation,
- public_ip_address_dns_name,
- None, zone))
- subnet_id = subnet if is_valid_resource_id(subnet) else \
- '{}/virtualNetworks/{}/subnets/{}'.format(network_id_template, vnet_name, subnet)
+def _reset_windows_admin(cmd, vm_instance, resource_group_name, username, password, no_wait=False):
+ '''Update the password. You can only change the password. Adding a new user is not supported. '''
+ client = _compute_client_factory(cmd.cli_ctx)
+ VirtualMachineExtension = cmd.get_models('VirtualMachineExtension')
- nsg_id = None
- if nsg:
- nsg_id = nsg if is_valid_resource_id(nsg) else \
- '{}/networkSecurityGroups/{}'.format(network_id_template, nsg)
+ publisher, version, auto_upgrade = _get_access_extension_upgrade_info(
+ vm_instance.resources, _WINDOWS_ACCESS_EXT)
+ # pylint: disable=no-member
+ instance_name = _get_extension_instance_name(vm_instance.instance_view,
+ publisher,
+ _WINDOWS_ACCESS_EXT,
+ _ACCESS_EXT_HANDLER_NAME)
- public_ip_address_id = None
- if public_ip_address:
- public_ip_address_id = public_ip_address if is_valid_resource_id(public_ip_address) \
- else '{}/publicIPAddresses/{}'.format(network_id_template, public_ip_address)
+ ext = VirtualMachineExtension(vm_instance.location, # pylint: disable=no-member
+ publisher=publisher,
+ virtual_machine_extension_type=_WINDOWS_ACCESS_EXT,
+ protected_settings={'Password': password},
+ type_handler_version=version,
+ settings={'UserName': username},
+ auto_upgrade_minor_version=auto_upgrade)
- nics = [
- {'id': '{}/networkInterfaces/{}'.format(network_id_template, nic_name)}
- ]
- nic_resource = build_nic_resource(
- nic_name, location, tags, vm_name, subnet_id, private_ip_address, nsg_id,
- public_ip_address_id, application_security_groups)
- nic_resource['dependsOn'] = nic_dependencies
- master_template.add_resource(nic_resource)
- else:
- # Using an existing NIC
- invalid_parameters = [nsg, public_ip_address, subnet, vnet_name, application_security_groups]
- if any(invalid_parameters):
- raise CLIError('When specifying an existing NIC, do not specify NSG, '
- 'public IP, ASGs, VNet or subnet.')
+ if no_wait:
+ return client.virtual_machine_extensions.create_or_update(resource_group_name,
+ vm_instance.name,
+ instance_name, ext, raw=no_wait)
+ poller = client.virtual_machine_extensions.create_or_update(resource_group_name,
+ vm_instance.name,
+ instance_name, ext)
+ return ExtensionUpdateLongRunningOperation(cmd.cli_ctx, 'resetting admin', 'done')(poller)
- os_vhd_uri = None
- if storage_profile in [StorageProfile.SACustomImage, StorageProfile.SAPirImage]:
- storage_account_name = storage_account.rsplit('/', 1)
- storage_account_name = storage_account_name[1] if \
- len(storage_account_name) > 1 else storage_account_name[0]
- os_vhd_uri = 'https://{}.blob.{}/{}/{}.vhd'.format(
- storage_account_name, CLOUD.suffixes.storage_endpoint, storage_container_name,
- os_disk_name)
- elif storage_profile == StorageProfile.SASpecializedOSDisk:
- os_vhd_uri = attach_os_disk
- os_disk_name = attach_os_disk.rsplit('/', 1)[1][:-4]
- if custom_data:
- custom_data = read_content_if_is_file(custom_data)
+def set_user(cmd, resource_group_name, vm_name, username, password=None, ssh_key_value=None,
+ no_wait=False):
+ vm = get_vm(cmd, resource_group_name, vm_name, 'instanceView')
+ if _is_linux_vm(vm):
+ return _set_linux_user(cmd, vm, resource_group_name, username, password, ssh_key_value, no_wait)
+ else:
+ if ssh_key_value:
+ raise CLIError('SSH key is not appliable on a Windows VM')
+ return _reset_windows_admin(cmd, vm, resource_group_name, username, password, no_wait)
- if secrets:
- secrets = _merge_secrets([validate_file_or_dict(secret) for secret in secrets])
- vm_resource = build_vm_resource(
- vm_name, location, tags, size, storage_profile, nics, admin_username, availability_set,
- admin_password, ssh_key_value, ssh_dest_key_path, image, os_disk_name,
- os_type, os_caching, data_caching, storage_sku, os_publisher, os_offer, os_sku, os_version,
- os_vhd_uri, attach_os_disk, os_disk_size_gb, attach_data_disks, data_disk_sizes_gb, image_data_disks,
- custom_data, secrets, license_type, zone)
- vm_resource['dependsOn'] = vm_dependencies
+def delete_user(cmd, resource_group_name, vm_name, username, no_wait=False):
+ vm = get_vm(cmd, resource_group_name, vm_name, 'instanceView')
+ if not _is_linux_vm(vm):
+ raise CLIError('Deleting a user is not supported on Windows VM')
+ if no_wait:
+ return _update_linux_access_extension(cmd, vm, resource_group_name,
+ {'remove_user': username}, no_wait)
+ poller = _update_linux_access_extension(cmd, vm, resource_group_name,
+ {'remove_user': username})
+ return ExtensionUpdateLongRunningOperation(cmd.cli_ctx, 'deleting user', 'done')(poller)
- if plan_name:
- vm_resource['plan'] = {
- 'name': plan_name,
- 'publisher': plan_publisher,
- 'product': plan_product,
- 'promotionCode': plan_promotion_code
- }
- if assign_identity:
- vm_resource['identity'] = {"type": "systemAssigned"}
- role_assignment_guid = None
- if identity_scope:
- role_assignment_guid = str(_gen_guid())
- master_template.add_resource(build_msi_role_assignment(vm_name, vm_id, identity_role_id,
- role_assignment_guid, identity_scope))
- master_template.add_resource(build_vm_msi_extension(vm_name, location, role_assignment_guid, _MSI_PORT,
- os_type.lower() != 'windows', _MSI_EXTENSION_VERSION))
+def reset_linux_ssh(cmd, resource_group_name, vm_name, no_wait=False):
+ vm = get_vm(cmd, resource_group_name, vm_name, 'instanceView')
+ if not _is_linux_vm(vm):
+ raise CLIError('Resetting SSH is not supported in Windows VM')
+ if no_wait:
+ return _update_linux_access_extension(cmd, vm, resource_group_name,
+ {'reset_ssh': True}, no_wait)
+ poller = _update_linux_access_extension(cmd, vm, resource_group_name,
+ {'reset_ssh': True})
+ return ExtensionUpdateLongRunningOperation(cmd.cli_ctx, 'resetting SSH', 'done')(poller)
+# endregion
- master_template.add_resource(vm_resource)
- template = master_template.build()
+# region VirtualMachineScaleSets
+def assign_vmss_identity(cmd, resource_group_name, vmss_name, identity_role=DefaultStr('Contributor'),
+ identity_role_id=None, identity_scope=None, port=None):
+ VirtualMachineScaleSetIdentity, UpgradeMode = cmd.get_models('VirtualMachineScaleSetIdentity', 'UpgradeMode')
+ from azure.cli.core.commands.arm import assign_implict_identity
+ client = _compute_client_factory(cmd.cli_ctx)
- # deploy ARM template
- deployment_name = 'vm_deploy_' + random_string(32)
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).deployments
- DeploymentProperties = get_sdk(ResourceType.MGMT_RESOURCE_RESOURCES,
- 'DeploymentProperties',
- mod='models')
- properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
- if validate:
- from azure.cli.command_modules.vm._vm_utils import log_pprint_template
- log_pprint_template(template)
- return client.validate(resource_group_name, deployment_name, properties)
+ def getter():
+ return client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
- # creates the VM deployment
- if no_wait:
- return client.create_or_update(
- resource_group_name, deployment_name, properties, raw=no_wait)
- else:
- LongRunningOperation()(client.create_or_update(
- resource_group_name, deployment_name, properties, raw=no_wait))
- vm = get_vm_details(resource_group_name, vm_name)
- if assign_identity:
- if not identity_scope:
- _show_missing_access_warning(resource_group_name, vm_name, 'vm')
- setattr(vm, 'identity', _construct_identity_info(identity_scope, identity_role, _MSI_PORT))
- return vm
+ def setter(vmss):
+ vmss.identity = VirtualMachineScaleSetIdentity(type='SystemAssigned')
+ poller = client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss)
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+ vmss = assign_implict_identity(getter, setter, identity_role=identity_role_id, identity_scope=identity_scope)
-def _show_missing_access_warning(resource_group, name, command):
- warn = ("No access was given yet to the '{1}', because '--scope' was not provided. "
- "You should setup by creating a role assignment, e.g. "
- "'az role assignment create --assignee --role contributor -g {0}' "
- "would let it access the current resource group. To get the pricipal id, run "
- "'az {2} show -g {0} -n {1} --query \"identity.principalId\" -otsv'".format(resource_group, name, command))
- logger.warning(warn)
+ port = port or _MSI_PORT
+ ext_name = 'ManagedIdentityExtensionFor' + ('Linux' if vmss.virtual_machine_profile.os_profile.linux_configuration
+ else 'Windows')
+ logger.info("Provisioning extension: '%s'", ext_name)
+ poller = set_vmss_extension(cmd, resource_group_name, vmss_name,
+ publisher='Microsoft.ManagedIdentity',
+ extension_name=ext_name,
+ version=_MSI_EXTENSION_VERSION,
+ settings={'port': port})
+ LongRunningOperation(cmd.cli_ctx)(poller)
+ if vmss.upgrade_policy.mode == UpgradeMode.manual:
+ logger.warning("With manual upgrade mode, you will need to run 'az vmss update-instances -g %s -n %s "
+ "--instance-ids *' to propagate the change", resource_group_name, vmss_name)
+ return _construct_identity_info(identity_scope, identity_role, port)
# pylint: disable=too-many-locals, too-many-statements
-def create_vmss(vmss_name, resource_group_name, image,
+def create_vmss(cmd, vmss_name, resource_group_name, image,
disable_overprovision=False, instance_count=2,
location=None, tags=None, upgrade_policy_mode='manual', validate=False,
admin_username=DefaultStr(getpass.getuser()), admin_password=None, authentication_type=None,
@@ -1765,7 +1570,7 @@ def create_vmss(vmss_name, resource_group_name, image,
public_ip_address=None, public_ip_address_allocation=None,
public_ip_address_dns_name=None, accelerated_networking=False,
public_ip_per_vm=False, vm_domain_name=None, dns_servers=None, nsg=None,
- os_caching=DefaultStr(CachingTypes.read_write.value), data_caching=None,
+ os_caching=None, data_caching=None,
storage_container_name=DefaultStr('vhds'), storage_sku=None,
os_type=None, os_disk_name=None,
use_unmanaged_disk=False, data_disk_sizes_gb=None, image_data_disks=None,
@@ -1786,9 +1591,7 @@ def create_vmss(vmss_name, resource_group_name, image,
build_vmss_storage_account_pool_resource,
build_application_gateway_resource,
build_msi_role_assignment)
-
- from azure.cli.core._profile import CLOUD
- subscription_id = get_subscription_id()
+ subscription_id = get_subscription_id(cmd.cli_ctx)
network_id_template = resource_id(
subscription=subscription_id, resource_group=resource_group_name,
namespace='Microsoft.Network')
@@ -1844,7 +1647,7 @@ def create_vmss(vmss_name, resource_group_name, image,
public_ip_address))
def _get_public_ip_address_allocation(value, sku):
- IPAllocationMethod = get_sdk(ResourceType.MGMT_NETWORK, 'IPAllocationMethod', mod='models')
+ IPAllocationMethod = cmd.get_models('IPAllocationMethod', resource_type=ResourceType.MGMT_NETWORK)
if not value:
value = IPAllocationMethod.static.value if (sku and sku.lower() == 'standard') \
else IPAllocationMethod.dynamic.value
@@ -1862,7 +1665,7 @@ def _get_public_ip_address_allocation(value, sku):
lb_dependencies.append(
'Microsoft.Network/publicIpAddresses/{}'.format(public_ip_address))
master_template.add_resource(build_public_ip_resource(
- public_ip_address, location, tags,
+ cmd, public_ip_address, location, tags,
_get_public_ip_address_allocation(public_ip_address_allocation, load_balancer_sku),
public_ip_address_dns_name, load_balancer_sku, zones))
public_ip_address_id = '{}/publicIPAddresses/{}'.format(network_id_template,
@@ -1874,7 +1677,7 @@ def _get_public_ip_address_allocation(value, sku):
backend_port = 3389 if os_type == 'windows' else 22
lb_resource = build_load_balancer_resource(
- load_balancer, location, tags, backend_pool_name, nat_pool_name, backend_port,
+ cmd, load_balancer, location, tags, backend_pool_name, nat_pool_name, backend_port,
'loadBalancerFrontEnd', public_ip_address_id, subnet_id,
private_ip_address='', private_ip_allocation='Dynamic', sku=load_balancer_sku)
lb_resource['dependsOn'] = lb_dependencies
@@ -1903,7 +1706,7 @@ def _get_public_ip_address_allocation(value, sku):
backend_port = backend_port or 80
ag_resource = build_application_gateway_resource(
- app_gateway, location, tags, backend_pool_name, backend_port, 'appGwFrontendIP',
+ cmd, app_gateway, location, tags, backend_pool_name, backend_port, 'appGwFrontendIP',
public_ip_address_id, subnet_id, gateway_subnet_id, private_ip_address='',
private_ip_allocation='Dynamic', sku=app_gateway_sku, capacity=app_gateway_capacity)
ag_resource['dependsOn'] = ag_dependencies
@@ -1915,13 +1718,13 @@ def _get_public_ip_address_allocation(value, sku):
# create storage accounts if needed for unmanaged disk storage
if storage_profile in [StorageProfile.SACustomImage, StorageProfile.SAPirImage]:
master_template.add_resource(build_vmss_storage_account_pool_resource(
- 'storageLoop', location, tags, storage_sku))
+ cmd, 'storageLoop', location, tags, storage_sku))
master_template.add_variable('storageAccountNames', [
'{}{}'.format(naming_prefix, x) for x in range(5)
])
master_template.add_variable('vhdContainers', [
"[concat('https://', variables('storageAccountNames')[{}], '.blob.{}/{}')]".format(
- x, CLOUD.suffixes.storage_endpoint, storage_container_name) for x in range(5)
+ x, cmd.cli_ctx.cloud.suffixes.storage_endpoint, storage_container_name) for x in range(5)
])
vmss_dependencies.append('storageLoop')
@@ -2010,10 +1813,9 @@ def _get_public_ip_address_allocation(value, sku):
# deploy ARM template
deployment_name = 'vmss_deploy_' + random_string(32)
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).deployments
- DeploymentProperties = get_sdk(ResourceType.MGMT_RESOURCE_RESOURCES,
- 'DeploymentProperties',
- mod='models')
+ client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES).deployments
+ DeploymentProperties = cmd.get_models('DeploymentProperties', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES)
+
properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
if validate:
from azure.cli.command_modules.vm._vm_utils import log_pprint_template
@@ -2021,7 +1823,7 @@ def _get_public_ip_address_allocation(value, sku):
return client.validate(resource_group_name, deployment_name, properties, raw=no_wait)
# creates the VMSS deployment
- deployment_result = DeploymentOutputLongRunningOperation()(
+ deployment_result = DeploymentOutputLongRunningOperation(cmd.cli_ctx)(
client.create_or_update(resource_group_name, deployment_name, properties, raw=no_wait))
if assign_identity:
if not identity_scope:
@@ -2031,261 +1833,307 @@ def _get_public_ip_address_allocation(value, sku):
return deployment_result
-def create_av_set(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):
- from azure.cli.core.util import random_string
- from azure.cli.command_modules.vm._template_builder import (ArmTemplateBuilder,
- build_av_set_resource)
+def deallocate_vmss(cmd, resource_group_name, vm_scale_set_name, instance_ids=None, no_wait=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if instance_ids and len(instance_ids) == 1:
+ return client.virtual_machine_scale_set_vms.deallocate(resource_group_name, vm_scale_set_name, instance_ids[0],
+ raw=no_wait)
- tags = tags or {}
+ return client.virtual_machine_scale_sets.deallocate(resource_group_name, vm_scale_set_name,
+ instance_ids=instance_ids, raw=no_wait)
- # Build up the ARM template
- master_template = ArmTemplateBuilder()
- av_set_resource = build_av_set_resource(availability_set_name, location, tags,
- platform_update_domain_count,
- platform_fault_domain_count, unmanaged)
- master_template.add_resource(av_set_resource)
+def delete_vmss_instances(cmd, resource_group_name, vm_scale_set_name, instance_ids, no_wait=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if len(instance_ids) == 1:
+ return client.virtual_machine_scale_set_vms.delete(resource_group_name, vm_scale_set_name, instance_ids[0],
+ raw=no_wait)
- template = master_template.build()
+ return client.virtual_machine_scale_sets.delete_instances(resource_group_name, vm_scale_set_name, instance_ids,
+ raw=no_wait)
- # deploy ARM template
- deployment_name = 'av_set_deploy_' + random_string(32)
- client = get_mgmt_service_client(ResourceType.MGMT_RESOURCE_RESOURCES).deployments
- DeploymentProperties = get_sdk(ResourceType.MGMT_RESOURCE_RESOURCES,
- 'DeploymentProperties',
- mod='models')
- properties = DeploymentProperties(template=template, parameters={}, mode='incremental')
- if validate:
- return client.validate(resource_group_name, deployment_name, properties)
- if no_wait:
- return client.create_or_update(
- resource_group_name, deployment_name, properties, raw=no_wait)
+def get_vmss(cmd, resource_group_name, name):
+ return _compute_client_factory(cmd.cli_ctx).virtual_machine_scale_sets.get(resource_group_name, name)
- LongRunningOperation()(client.create_or_update(
- resource_group_name, deployment_name, properties, raw=no_wait))
- compute_client = _compute_client_factory()
- return compute_client.availability_sets.get(resource_group_name, availability_set_name)
+def get_vmss_instance_view(cmd, resource_group_name, vm_scale_set_name, instance_id=None):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if instance_id:
+ if instance_id == '*':
-def _get_vault_id_from_name(client, vault_name):
- group_name = _get_resource_group_from_vault_name(vault_name)
- vault = client.get(group_name, vault_name)
- return vault.id
+ return [x.instance_view for x in (client.virtual_machine_scale_set_vms.list(
+ resource_group_name, vm_scale_set_name, select='instanceView', expand='instanceView'))]
+
+ return client.virtual_machine_scale_set_vms.get_instance_view(resource_group_name, vm_scale_set_name,
+ instance_id)
+ return client.virtual_machine_scale_sets.get_instance_view(resource_group_name, vm_scale_set_name)
-def get_vm_format_secret(secrets, certificate_store=None):
- """
- Format secrets to be used in `az vm create --secrets`
- :param dict secrets: array of secrets to be formatted
- :param str certificate_store: certificate store the secret will be applied (Windows only)
- :return: formatted secrets as an array
- :rtype: list
- """
- from azure.mgmt.keyvault import KeyVaultManagementClient
- client = get_mgmt_service_client(KeyVaultManagementClient).vaults
- grouped_secrets = {}
- merged_secrets = []
- for s in secrets:
- merged_secrets += s.splitlines()
+def list_vmss(cmd, resource_group_name=None):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if resource_group_name:
+ return client.virtual_machine_scale_sets.list(resource_group_name)
+ return client.virtual_machine_scale_sets.list_all()
+
+
+def list_vmss_instance_connection_info(cmd, resource_group_name, vm_scale_set_name):
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vm_scale_set_name)
+ # find the load balancer
+ nic_configs = vmss.virtual_machine_profile.network_profile.network_interface_configurations
+ primary_nic_config = next((n for n in nic_configs if n.primary), None)
+ if primary_nic_config is None:
+ raise CLIError('could not find a primary NIC which is needed to search to load balancer')
+ ip_configs = primary_nic_config.ip_configurations
+ ip_config = next((ip for ip in ip_configs if ip.load_balancer_inbound_nat_pools), None)
+ if not ip_config:
+ raise CLIError('No load balancer exists to retrieve public IP address')
+ res_id = ip_config.load_balancer_inbound_nat_pools[0].id
+ lb_info = parse_resource_id(res_id)
+ lb_name = lb_info['name']
+ lb_rg = lb_info['resource_group']
+
+ # get public ip
+ network_client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_NETWORK)
+ lb = network_client.load_balancers.get(lb_rg, lb_name)
+ if getattr(lb.frontend_ip_configurations[0], 'public_ip_address', None):
+ res_id = lb.frontend_ip_configurations[0].public_ip_address.id
+ public_ip_info = parse_resource_id(res_id)
+ public_ip_name = public_ip_info['name']
+ public_ip_rg = public_ip_info['resource_group']
+ public_ip = network_client.public_ip_addresses.get(public_ip_rg, public_ip_name)
+ public_ip_address = public_ip.ip_address
+
+ # loop around inboundnatrule
+ instance_addresses = {}
+ for rule in lb.inbound_nat_rules:
+ instance_id = parse_resource_id(rule.backend_ip_configuration.id)['child_name']
+ instance_addresses['instance ' + instance_id] = '{}:{}'.format(public_ip_address,
+ rule.frontend_port)
+
+ return instance_addresses
+ else:
+ raise CLIError('The VM scale-set uses an internal load balancer, hence no connection information')
+
+
+def list_vmss_instance_public_ips(cmd, resource_group_name, vm_scale_set_name):
+ result = cf_public_ip_addresses(cmd.cli_ctx).list_virtual_machine_scale_set_public_ip_addresses(
+ resource_group_name, vm_scale_set_name)
+ # filter away over-provisioned instances which are deleted after 'create/update' returns
+ return [r for r in result if r.ip_address]
+
- # group secrets by source vault
- for secret in merged_secrets:
- parsed = KeyVaultId.parse_secret_id(secret)
- match = re.search('://(.+?)\\.', parsed.vault)
- vault_name = match.group(1)
- if vault_name not in grouped_secrets:
- grouped_secrets[vault_name] = {
- 'vaultCertificates': [],
- 'id': _get_vault_id_from_name(client, vault_name)
- }
+def reimage_vmss(cmd, resource_group_name, vm_scale_set_name, instance_id=None, no_wait=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if instance_id:
+ return client.virtual_machine_scale_set_vms.reimage(resource_group_name, vm_scale_set_name, instance_id,
+ raw=no_wait)
+ return client.virtual_machine_scale_sets.reimage(resource_group_name, vm_scale_set_name, raw=no_wait)
- vault_cert = {'certificateUrl': secret}
- if certificate_store:
- vault_cert['certificateStore'] = certificate_store
- grouped_secrets[vault_name]['vaultCertificates'].append(vault_cert)
+def restart_vmss(cmd, resource_group_name, vm_scale_set_name, instance_ids=None, no_wait=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if instance_ids and len(instance_ids) == 1:
+ return client.virtual_machine_scale_set_vms.restart(resource_group_name, vm_scale_set_name, instance_ids[0],
+ raw=no_wait)
+ return client.virtual_machine_scale_sets.restart(resource_group_name, vm_scale_set_name, instance_ids=instance_ids,
+ raw=no_wait)
- # transform the reduced map to vm format
- formatted = [{'sourceVault': {'id': value['id']},
- 'vaultCertificates': value['vaultCertificates']}
- for _, value in list(grouped_secrets.items())]
- return formatted
+def scale_vmss(cmd, resource_group_name, vm_scale_set_name, new_capacity, no_wait=False):
+ VirtualMachineScaleSet = cmd.get_models('VirtualMachineScaleSet')
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vm_scale_set_name)
+ # pylint: disable=no-member
+ if vmss.sku.capacity == new_capacity:
+ return
+ else:
+ vmss.sku.capacity = new_capacity
+ vmss_new = VirtualMachineScaleSet(vmss.location, sku=vmss.sku)
+ return client.virtual_machine_scale_sets.create_or_update(resource_group_name,
+ vm_scale_set_name,
+ vmss_new,
+ raw=no_wait)
-def add_vm_secret(resource_group_name, vm_name, keyvault, certificate, certificate_store=None):
- from ._vm_utils import create_keyvault_data_plane_client, get_key_vault_base_url
- VaultSecretGroup, SourceVault, VaultCertificate = get_sdk(ResourceType.MGMT_COMPUTE, 'VaultSecretGroup',
- 'SourceVault', 'VaultCertificate', mod='models')
- vm = get_vm(resource_group_name, vm_name)
+def set_vmss(cmd, resource_group_name, name, no_wait=False, **kwargs):
+ return _compute_client_factory(cmd.cli_ctx).virtual_machine_scale_sets.create_or_update(
+ resource_group_name, name, raw=no_wait, **kwargs)
- if '://' not in certificate: # has a cert name rather a full url?
- keyvault_client = create_keyvault_data_plane_client()
- cert_info = keyvault_client.get_certificate(get_key_vault_base_url(parse_resource_id(keyvault)['name']),
- certificate, '')
- certificate = cert_info.sid
- if not _is_linux_vm(vm):
- certificate_store = certificate_store or 'My'
- elif certificate_store:
- raise CLIError('Usage error: --certificate-store is only applicable on Windows VM')
- vault_cert = VaultCertificate(certificate_url=certificate, certificate_store=certificate_store)
- vault_secret_group = next((x for x in vm.os_profile.secrets
- if x.source_vault and x.source_vault.id.lower() == keyvault.lower()), None)
- if vault_secret_group:
- vault_secret_group.vault_certificates.append(vault_cert)
- else:
- vault_secret_group = VaultSecretGroup(source_vault=SourceVault(keyvault), vault_certificates=[vault_cert])
- vm.os_profile.secrets.append(vault_secret_group)
- vm = set_vm(vm)
- return vm.os_profile.secrets
+def show_vmss(cmd, resource_group_name, vm_scale_set_name, instance_id=None):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if instance_id:
+ return client.virtual_machine_scale_set_vms.get(resource_group_name, vm_scale_set_name, instance_id)
+ return client.virtual_machine_scale_sets.get(resource_group_name, vm_scale_set_name)
-def list_vm_secrets(resource_group_name, vm_name):
- vm = get_vm(resource_group_name, vm_name)
- return vm.os_profile.secrets
+def start_vmss(cmd, resource_group_name, vm_scale_set_name, instance_ids=None, no_wait=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if instance_ids and len(instance_ids) == 1:
+ return client.virtual_machine_scale_set_vms.start(resource_group_name, vm_scale_set_name, instance_ids[0],
+ raw=no_wait)
+ return client.virtual_machine_scale_sets.start(resource_group_name, vm_scale_set_name, instance_ids=instance_ids,
+ raw=no_wait)
-def remove_vm_secret(resource_group_name, vm_name, keyvault, certificate=None):
- vm = get_vm(resource_group_name, vm_name)
- # support 2 kinds of filter:
- # a. if only keyvault is supplied, we delete its whole vault group.
- # b. if both keyvault and certificate are supplied, we only delete the specific cert entry.
+def stop_vmss(cmd, resource_group_name, vm_scale_set_name, instance_ids=None, no_wait=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ if instance_ids and len(instance_ids) == 1:
+ return client.virtual_machine_scale_set_vms.power_off(resource_group_name, vm_scale_set_name,
+ instance_ids[0], raw=no_wait)
- to_keep = vm.os_profile.secrets
- keyvault_matched = []
- if keyvault:
- keyvault = keyvault.lower()
- keyvault_matched = [x for x in to_keep if x.source_vault and x.source_vault.id.lower() == keyvault]
+ return client.virtual_machine_scale_sets.power_off(resource_group_name, vm_scale_set_name,
+ instance_ids=instance_ids, raw=no_wait)
- if keyvault and not certificate:
- to_keep = [x for x in to_keep if x not in keyvault_matched]
- elif certificate:
- temp = keyvault_matched if keyvault else to_keep
- cert_url_pattern = certificate.lower()
- if '://' not in cert_url_pattern: # just a cert name?
- cert_url_pattern = '/' + cert_url_pattern + '/'
- for x in temp:
- x.vault_certificates = ([v for v in x.vault_certificates
- if not(v.certificate_url and cert_url_pattern in v.certificate_url.lower())])
- to_keep = [x for x in to_keep if x.vault_certificates] # purge all groups w/o any cert entries
- vm.os_profile.secrets = to_keep
- vm = set_vm(vm)
- return vm.os_profile.secrets
+def update_vmss_instances(cmd, resource_group_name, vm_scale_set_name, instance_ids, no_wait=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ return client.virtual_machine_scale_sets.update_instances(resource_group_name,
+ vm_scale_set_name,
+ instance_ids,
+ raw=no_wait)
+# endregion
-def assign_vm_identity(resource_group_name, vm_name, identity_role=DefaultStr('Contributor'),
- identity_role_id=None, identity_scope=None, port=None):
- VirtualMachineIdentity = get_sdk(ResourceType.MGMT_COMPUTE, 'VirtualMachineIdentity', mod='models')
- from azure.cli.core.commands.arm import assign_implict_identity
- client = _compute_client_factory()
+# region VirtualMachineScaleSets Diagnostics
+def set_vmss_diagnostics_extension(
+ cmd, resource_group_name, vmss_name, settings, protected_settings=None, version=None,
+ no_auto_upgrade=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
+ # pylint: disable=no-member
+ is_linux_os = _detect_os_type_for_diagnostics_ext(vmss.virtual_machine_profile.os_profile)
+ vm_extension_name = _LINUX_DIAG_EXT if is_linux_os else _WINDOWS_DIAG_EXT
+ if is_linux_os and vmss.virtual_machine_profile.extension_profile: # check incompatibles
+ exts = vmss.virtual_machine_profile.extension_profile.extensions or []
+ major_ver = extension_mappings[_LINUX_DIAG_EXT]['version'].split('.')[0]
+ # For VMSS, we don't do auto-removal like VM because there is no reliable API to wait for
+ # the removal done before we can install the newer one
+ if next((e for e in exts if e.name == _LINUX_DIAG_EXT and
+ not e.type_handler_version.startswith(major_ver + '.')), None):
+ delete_cmd = 'az vmss extension delete -g {} --vmss-name {} -n {}'.format(
+ resource_group_name, vmss_name, vm_extension_name)
+ raise CLIError("There is an incompatible version of diagnostics extension installed. "
+ "Please remove it by running '{}', and retry. 'az vmss update-instances'"
+ " might be needed if with manual upgrade policy".format(delete_cmd))
- def getter():
- return client.virtual_machines.get(resource_group_name, vm_name)
+ poller = set_vmss_extension(cmd, resource_group_name, vmss_name, vm_extension_name,
+ extension_mappings[vm_extension_name]['publisher'],
+ version or extension_mappings[vm_extension_name]['version'],
+ settings,
+ protected_settings,
+ no_auto_upgrade)
- def setter(vm):
- vm.identity = VirtualMachineIdentity(type='SystemAssigned')
- return set_vm(vm)
+ result = LongRunningOperation(cmd.cli_ctx)(poller)
+ UpgradeMode = cmd.get_models('UpgradeMode')
+ if vmss.upgrade_policy.mode == UpgradeMode.manual:
+ poller2 = update_vmss_instances(cmd, resource_group_name, vmss_name, ['*'])
+ LongRunningOperation(cmd.cli_ctx)(poller2)
+ return result
+# endregion
- vm = assign_implict_identity(getter, setter, identity_role=identity_role_id, identity_scope=identity_scope)
- port = port or _MSI_PORT
- ext_name = 'ManagedIdentityExtensionFor' + ('Linux' if _is_linux_vm(vm) else 'Windows')
- logger.info("Provisioning extension: '%s'", ext_name)
- poller = set_extension(resource_group_name, vm_name,
- publisher='Microsoft.ManagedIdentity',
- vm_extension_name=ext_name,
- version=_MSI_EXTENSION_VERSION,
- settings={'port': port})
- LongRunningOperation()(poller)
- return _construct_identity_info(identity_scope, identity_role, port)
+# region VirtualMachineScaleSets Disks (Managed)
+def attach_managed_data_disk_to_vmss(cmd, resource_group_name, vmss_name, size_gb, lun=None,
+ caching=None):
+ DiskCreateOptionTypes, VirtualMachineScaleSetDataDisk = cmd.get_models(
+ 'DiskCreateOptionTypes', 'VirtualMachineScaleSetDataDisk')
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
+ # pylint: disable=no-member
+ data_disks = vmss.virtual_machine_profile.storage_profile.data_disks or []
+ if lun is None:
+ luns = [d.lun for d in data_disks]
+ lun = max(luns) + 1 if luns else 0
+ data_disk = VirtualMachineScaleSetDataDisk(lun, DiskCreateOptionTypes.empty,
+ disk_size_gb=size_gb, caching=caching)
+ data_disks.append(data_disk)
+ vmss.virtual_machine_profile.storage_profile.data_disks = data_disks
+ return client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss)
-def assign_vmss_identity(resource_group_name, vmss_name, identity_role=DefaultStr('Contributor'),
- identity_role_id=None, identity_scope=None, port=None):
- VirtualMachineScaleSetIdentity, UpgradeMode = get_sdk(ResourceType.MGMT_COMPUTE, 'VirtualMachineScaleSetIdentity',
- 'UpgradeMode', mod='models')
- from azure.cli.core.commands.arm import assign_implict_identity
- client = _compute_client_factory()
+def detach_disk_from_vmss(cmd, resource_group_name, vmss_name, lun):
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
+ # pylint: disable=no-member
+ data_disks = vmss.virtual_machine_profile.storage_profile.data_disks
+ leftovers = [d for d in data_disks if d.lun != lun]
+ if len(data_disks) == len(leftovers):
+ raise CLIError("Could not find the data disk with lun '{}'".format(lun))
+ vmss.virtual_machine_profile.storage_profile.data_disks = leftovers
+ return client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss)
+# endregion
- def getter():
- return client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
- def setter(vmss):
- vmss.identity = VirtualMachineScaleSetIdentity(type='SystemAssigned')
- poller = client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss)
- return LongRunningOperation()(poller)
+# region VirtualMachineScaleSets Extensions
+def delete_vmss_extension(cmd, resource_group_name, vmss_name, extension_name):
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
+ # pylint: disable=no-member
+ if not vmss.virtual_machine_profile.extension_profile:
+ raise CLIError('Scale set has no extensions to delete')
- vmss = assign_implict_identity(getter, setter, identity_role=identity_role_id, identity_scope=identity_scope)
+ keep_list = [e for e in vmss.virtual_machine_profile.extension_profile.extensions
+ if e.name != extension_name]
+ if len(keep_list) == len(vmss.virtual_machine_profile.extension_profile.extensions):
+ raise CLIError('Extension {} not found'.format(extension_name))
- port = port or _MSI_PORT
- ext_name = 'ManagedIdentityExtensionFor' + ('Linux' if vmss.virtual_machine_profile.os_profile.linux_configuration
- else 'Windows')
- logger.info("Provisioning extension: '%s'", ext_name)
- poller = set_vmss_extension(resource_group_name, vmss_name,
- publisher='Microsoft.ManagedIdentity',
- extension_name=ext_name,
- version=_MSI_EXTENSION_VERSION,
- settings={'port': port})
- LongRunningOperation()(poller)
- if vmss.upgrade_policy.mode == UpgradeMode.manual:
- logger.warning("With manual upgrade mode, you will need to run 'az vmss update-instances -g %s -n %s "
- "--instance-ids *' to propagate the change", resource_group_name, vmss_name)
- return _construct_identity_info(identity_scope, identity_role, port)
+ vmss.virtual_machine_profile.extension_profile.extensions = keep_list
+ return client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss)
-def _construct_identity_info(identity_scope, identity_role, port):
- return {
- 'scope': identity_scope or '',
- 'role': str(identity_role), # could be DefaultStr, so convert to string
- 'port': port
- }
+def get_vmss_extension(cmd, resource_group_name, vmss_name, extension_name):
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
+ # pylint: disable=no-member
+ if not vmss.virtual_machine_profile.extension_profile:
+ return
+ return next((e for e in vmss.virtual_machine_profile.extension_profile.extensions
+ if e.name == extension_name), None)
-# for injecting test seams to produce predicatable role assignment id for playback
-def _gen_guid():
- import uuid
- return uuid.uuid4()
+def list_vmss_extensions(cmd, resource_group_name, vmss_name):
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
+ # pylint: disable=no-member
+ return None if not vmss.virtual_machine_profile.extension_profile \
+ else vmss.virtual_machine_profile.extension_profile.extensions
-def list_skus(location=None):
- def _match_location(l, locations):
- return next((x for x in locations if x.lower() == l.lower()), None)
- client = _compute_client_factory()
- result = client.resource_skus.list()
- if location:
- result = [r for r in result if _match_location(location, r.locations)]
- return result
+def set_vmss_extension(
+ cmd, resource_group_name, vmss_name, extension_name, publisher,
+ version=None, settings=None,
+ protected_settings=None, no_auto_upgrade=False):
+ client = _compute_client_factory(cmd.cli_ctx)
+ vmss = client.virtual_machine_scale_sets.get(resource_group_name, vmss_name)
+ VirtualMachineScaleSetExtension, VirtualMachineScaleSetExtensionProfile = cmd.get_models(
+ 'VirtualMachineScaleSetExtension', 'VirtualMachineScaleSetExtensionProfile')
+ # pylint: disable=no-member
+ version = _normalize_extension_version(cmd.cli_ctx, publisher, extension_name, version, vmss.location)
+ extension_profile = vmss.virtual_machine_profile.extension_profile
+ if extension_profile:
+ extensions = extension_profile.extensions
+ if extensions:
+ extension_profile.extensions = [x for x in extensions if
+ x.type.lower() != extension_name.lower() or x.publisher.lower() != publisher.lower()] # pylint: disable=line-too-long
-def run_command_invoke(resource_group_name, vm_name, command_id, scripts=None, parameters=None):
- RunCommandInput, RunCommandInputParameter = get_sdk(ResourceType.MGMT_COMPUTE, 'RunCommandInput',
- 'RunCommandInputParameter', mod='models')
+ ext = VirtualMachineScaleSetExtension(name=extension_name,
+ publisher=publisher,
+ type=extension_name,
+ protected_settings=protected_settings,
+ type_handler_version=version,
+ settings=settings,
+ auto_upgrade_minor_version=(not no_auto_upgrade))
- parameters = parameters or []
- run_command_input_parameters = []
- auto_arg_name_num = 0
- for p in parameters:
- if '=' in p:
- n, v = p.split('=', 1)
- else:
- # RunCommand API requires named arguments, which doesn't make lots of sense for bash scripts
- # using positional arguments, so here we provide names just to get API happy
- # note, we don't handle mixing styles, but will consolidate by GA when API is settled
- auto_arg_name_num += 1
- n = 'arg{}'.format(auto_arg_name_num)
- v = p
- run_command_input_parameters.append(RunCommandInputParameter(n, v))
+ if not vmss.virtual_machine_profile.extension_profile:
+ vmss.virtual_machine_profile.extension_profile = VirtualMachineScaleSetExtensionProfile([])
+ vmss.virtual_machine_profile.extension_profile.extensions.append(ext)
- client = _compute_client_factory()
- return client.virtual_machines.run_command(resource_group_name, vm_name,
- RunCommandInput(command_id=command_id, script=scripts,
- parameters=run_command_input_parameters))
+ return client.virtual_machine_scale_sets.create_or_update(resource_group_name, vmss_name, vmss)
+# endregion
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/disk_encryption.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/disk_encryption.py
index 2802049c771..c0755e46e4d 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/disk_encryption.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/disk_encryption.py
@@ -5,12 +5,8 @@
import uuid
import os
from msrestazure.tools import parse_resource_id
-from azure.cli.core.commands import LongRunningOperation
-import azure.cli.core.azlogging as azlogging
-from azure.cli.core.util import CLIError
-from .custom import set_vm, _compute_client_factory, get_vmss_instance_view
-from ._vm_utils import create_keyvault_data_plane_client, get_key_vault_base_url
-logger = azlogging.get_az_logger(__name__)
+from knack.util import CLIError
+from .custom import set_vm, _compute_client_factory
_DATA_VOLUME_TYPE = 'DATA'
_STATUS_ENCRYPTED = 'Encrypted'
@@ -540,7 +536,7 @@ def show_vmss_encryption_status(resource_group_name, vmss_name):
return result
-def _verify_keyvault_good_for_encryption(disk_vault_id, kek_vault_id, vmss, force):
+def _verify_keyvault_good_for_encryption(cli_ctx, disk_vault_id, kek_vault_id, vmss, force):
def _report_client_side_validation_error(msg):
if force:
logger.warning(msg)
@@ -549,7 +545,7 @@ def _report_client_side_validation_error(msg):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.mgmt.keyvault import KeyVaultManagementClient
- client = get_mgmt_service_client(KeyVaultManagementClient).vaults
+ client = get_mgmt_service_client(cli_ctx, KeyVaultManagementClient).vaults
disk_vault_resource_info = parse_resource_id(disk_vault_id)
key_vault = client.get(disk_vault_resource_info['resource_group'], disk_vault_resource_info['name'])
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_custom_vm_commands.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_custom_vm_commands.py
index 33120ac156b..53d0a81866f 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_custom_vm_commands.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_custom_vm_commands.py
@@ -6,7 +6,7 @@
import unittest
import mock
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.command_modules.vm.custom import enable_boot_diagnostics, disable_boot_diagnostics, \
_merge_secrets
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_actions.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_actions.py
index 1a4075e4236..2f5d1fc95ae 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_actions.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_actions.py
@@ -8,8 +8,6 @@
import unittest
import mock
-from msrestazure.azure_exceptions import CloudError
-from azure.cli.core.util import CLIError
from azure.cli.core.commands.validators import DefaultStr
from azure.cli.core.keys import is_valid_ssh_rsa_public_key
from azure.cli.command_modules.vm._validators import (validate_ssh_key,
@@ -22,6 +20,8 @@
_get_next_subnet_addr_suffix,
_validate_vm_vmss_msi)
+from knack.util import CLIError
+
class TestActions(unittest.TestCase):
def test_generate_specfied_ssh_key_files(self):
@@ -92,30 +92,30 @@ def test_validate_admin_username_linux(self):
err_invalid_char = r'admin user name cannot contain upper case character A-Z, special characters \/"[]:|<>+=;,?*@#()! or start with $ or -'
self._verify_username_with_ex('!@#', 'linux', err_invalid_char)
- self._verify_username_with_ex('gue[', 'linux', err_invalid_char)
- self._verify_username_with_ex('Aguest', 'linux', err_invalid_char)
- self._verify_username_with_ex('-gguest', 'linux', err_invalid_char)
+ self._verify_username_with_ex('dav[', 'linux', err_invalid_char)
+ self._verify_username_with_ex('Adavid', 'linux', err_invalid_char)
+ self._verify_username_with_ex('-ddavid', 'linux', err_invalid_char)
self._verify_username_with_ex('', 'linux', 'admin user name can not be empty')
- self._verify_username_with_ex('guest', 'linux',
- "This user name 'guest' meets the general requirements, but is specifically disallowed for this image. Please try a different value.")
+ self._verify_username_with_ex('david', 'linux',
+ "This user name 'david' meets the general requirements, but is specifically disallowed for this image. Please try a different value.")
- _validate_admin_username('g-uest1', 'linux')
- _validate_admin_username('guest1', 'linux')
- _validate_admin_username('guest1.', 'linux')
+ _validate_admin_username('d-avid1', 'linux')
+ _validate_admin_username('david1', 'linux')
+ _validate_admin_username('david1.', 'linux')
def test_validate_admin_username_windows(self):
# pylint: disable=line-too-long
err_invalid_char = r'admin user name cannot contain special characters \/"[]:|<>+=;,?*@# or ends with .'
self._verify_username_with_ex('!@#', 'windows', err_invalid_char)
- self._verify_username_with_ex('gue[', 'windows', err_invalid_char)
+ self._verify_username_with_ex('dav[', 'windows', err_invalid_char)
self._verify_username_with_ex('dddivid.', 'windows', err_invalid_char)
- self._verify_username_with_ex('backup', 'windows',
- "This user name 'backup' meets the general requirements, but is specifically disallowed for this image. Please try a different value.")
+ self._verify_username_with_ex('john', 'windows',
+ "This user name 'john' meets the general requirements, but is specifically disallowed for this image. Please try a different value.")
- _validate_admin_username('AGUEST', 'windows')
- _validate_admin_username('g-uest1', 'windows')
- _validate_admin_username('guest1', 'windows')
+ _validate_admin_username('ADAVID', 'windows')
+ _validate_admin_username('d-avid1', 'windows')
+ _validate_admin_username('david1', 'windows')
def test_validate_admin_password_linux(self):
# pylint: disable=line-too-long
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_commands.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_commands.py
index b67e2ab7797..4b5288759e9 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_commands.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_commands.py
@@ -14,8 +14,9 @@
import uuid
import six
-from azure.cli.core.profiles import ResourceType
-from azure.cli.core.util import CLIError
+
+from knack.util import CLIError
+
from azure.cli.core.profiles import ResourceType
from azure.cli.testsdk.vcr_test_base import (VCRTestBase,
ResourceGroupVCRTestBase,
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_image.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_image.py
index 9c2eb1f0d17..8be9b17d31a 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_image.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_image.py
@@ -7,8 +7,7 @@
import unittest
import mock
-import azure.cli.core.application as application
-from azure.cli.core.util import CLIError
+from knack.util import CLIError
from azure.cli.core.cloud import CloudEndpointNotSetException
@@ -16,7 +15,7 @@ class TestVMImage(unittest.TestCase):
@mock.patch('azure.cli.command_modules.vm.custom.urlopen', autospec=True)
def test_read_images_from_alias_doc(self, mock_urlopen):
config = application.Configuration()
- application.APPLICATION = application.Application(config)
+ application.AZ_CLI = application.Application(config)
from azure.cli.command_modules.vm.custom import list_vm_images
file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)),
diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_parameters.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_parameters.py
index af26cd84a1a..8914b8c6b5b 100644
--- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_parameters.py
+++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/test_vm_parameters.py
@@ -9,17 +9,15 @@
except ImportError:
import mock
-from azure.cli.core.application import APPLICATION, Configuration
-
def mock_echo_args(command_name, parameters):
try:
argv = ' '.join((command_name, parameters)).split()
- APPLICATION.initialize(Configuration())
- command_table = APPLICATION.configuration.get_command_table(argv)
+ AZ_CLI.initialize(Configuration())
+ command_table = AZ_CLI.configuration.get_command_table(argv)
prefunc = command_table[command_name].handler
command_table[command_name].handler = lambda args: args
- parsed_namespace = APPLICATION.execute(argv)
+ parsed_namespace = AZ_CLI.execute(argv)
return parsed_namespace
finally:
command_table[command_name].handler = prefunc
@@ -110,8 +108,8 @@ def test_parse_vm_list(self):
def test_command_consistency(self):
argv = ['vm']
- APPLICATION.initialize(Configuration())
- command_table = APPLICATION.configuration.get_command_table(argv)
+ AZ_CLI.initialize(Configuration())
+ command_table = AZ_CLI.configuration.get_command_table(argv)
vm_commands = ((vm_command, metadata) for vm_command, metadata
in command_table.items() if vm_command.startswith('vm'))